Refactor #3832 Refactor #3833 - ConfirmDialog & ConfirmPopup updates

This commit is contained in:
Tuğçe Küçükoğlu 2023-04-18 14:50:19 +03:00
parent 361a0f0bbc
commit 95ca69d453
4 changed files with 60 additions and 6 deletions

View file

@ -62,6 +62,18 @@ export interface ConfirmDialogSlots {
* @param {Object} scope - message slot's params.
*/
message(scope: { message: ConfirmationOptions }): VNode[];
/**
* Custom icon template.
*/
icon(): VNode[];
/**
* Custom icon template.
*/
accepticon(): VNode[];
/**
* Custom icon template.
*/
rejecticon(): VNode[];
}
/**