diff --git a/src/app/components/confirmdialog/confirmdialog.interface.ts b/src/app/components/confirmdialog/confirmdialog.interface.ts index 40b7098150b..840b67eeb2e 100644 --- a/src/app/components/confirmdialog/confirmdialog.interface.ts +++ b/src/app/components/confirmdialog/confirmdialog.interface.ts @@ -12,6 +12,14 @@ export interface ConfirmDialogTemplates { * Custom template of footer. */ footer(): TemplateRef; + /** + * Custom template of message. + */ + message(): TemplateRef; + /** + * Custom template of icon. + */ + icon(): TemplateRef; /** * Custom template of rejecticon. */ diff --git a/src/app/components/confirmdialog/confirmdialog.ts b/src/app/components/confirmdialog/confirmdialog.ts index 77e7076f642..c7a22811e5a 100755 --- a/src/app/components/confirmdialog/confirmdialog.ts +++ b/src/app/components/confirmdialog/confirmdialog.ts @@ -68,8 +68,14 @@ const hideAnimation = animation([animate('{{transition}}', style({ transform: '{
- - + + + + + + + +