mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 17:32:36 +00:00
Fixed #4728 - Change slot parameter function name on* to *CallBack
This commit is contained in:
parent
6f342ad243
commit
2cc5e637ae
14 changed files with 69 additions and 7 deletions
10
components/lib/confirmpopup/ConfirmPopup.d.ts
vendored
10
components/lib/confirmpopup/ConfirmPopup.d.ts
vendored
|
@ -176,12 +176,22 @@ export interface ConfirmPopupSlots {
|
|||
message: any;
|
||||
/**
|
||||
* 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;
|
||||
/**
|
||||
* Accept function of the component
|
||||
*/
|
||||
acceptCallback: () => void;
|
||||
/**
|
||||
* Reject function of the component
|
||||
*/
|
||||
rejectCallback: () => void;
|
||||
}): VNode[];
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue