Fixed #4728 - Change slot parameter function name on* to *CallBack

This commit is contained in:
tugcekucukoglu 2023-10-31 15:52:10 +03:00
parent 6f342ad243
commit 2cc5e637ae
14 changed files with 69 additions and 7 deletions

View file

@ -222,16 +222,31 @@ export interface ConfirmDialogSlots {
message: any;
/**
* Close dialog function.
* @deprecated since v3.39.0. Use 'closeCallback' property instead.
*/
onClose: () => void;
/**
* Accept function of the component
* @deprecated since v3.39.0. Use 'acceptCallback' property instead.
*/
onAccept: () => void;
/**
* Reject function of the component
* @deprecated since v3.39.0. Use 'rejectCallback' property instead.
*/
onReject: () => void;
/**
* Close dialog function.
*/
closeCallback: () => void;
/**
* Accept function of the component
*/
acceptCallback: () => void;
/**
* Reject function of the component
*/
rejectCallback: () => void;
}): VNode[];
}