mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 17:02:38 +00:00
parent
3339f1f194
commit
c7f2bf5383
4 changed files with 26 additions and 6 deletions
14
components/lib/confirmdialog/ConfirmDialog.d.ts
vendored
14
components/lib/confirmdialog/ConfirmDialog.d.ts
vendored
|
@ -61,11 +61,21 @@ export interface ConfirmDialogSlots {
|
|||
* Custom message template.
|
||||
* @param {Object} scope - message slot's params.
|
||||
*/
|
||||
message(scope: { message: ConfirmationOptions }): VNode[];
|
||||
message(scope: {
|
||||
/**
|
||||
* Message of the component
|
||||
*/
|
||||
message: ConfirmationOptions;
|
||||
}): VNode[];
|
||||
/**
|
||||
* Custom icon template.
|
||||
*/
|
||||
icon(): VNode[];
|
||||
icon(scope: {
|
||||
/**
|
||||
* Style class of the icon template
|
||||
*/
|
||||
class: any;
|
||||
}): VNode[];
|
||||
/**
|
||||
* Custom icon template.
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue