mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 09:22:34 +00:00
Fixed #4301 - Dialog: Icon classes not being correctly exposed
This commit is contained in:
parent
6afad4b9ee
commit
13019b4816
2 changed files with 13 additions and 3 deletions
12
components/lib/dialog/Dialog.d.ts
vendored
12
components/lib/dialog/Dialog.d.ts
vendored
|
@ -286,8 +286,14 @@ export interface DialogSlots {
|
|||
footer(): VNode[];
|
||||
/**
|
||||
* Custom close icon template.
|
||||
* @param {Object} scope - close icon slot's params.
|
||||
*/
|
||||
closeicon(): VNode[];
|
||||
closeicon(scope: {
|
||||
/**
|
||||
* Style class of the close icon
|
||||
*/
|
||||
class: any;
|
||||
}): VNode[];
|
||||
/**
|
||||
* Custom maximize icon template of dialog.
|
||||
* @param {Object} scope - maximize icon slot's params.
|
||||
|
@ -297,6 +303,10 @@ export interface DialogSlots {
|
|||
* Maximized state as a boolean
|
||||
*/
|
||||
maximized: boolean;
|
||||
/**
|
||||
* Style class of the maximize icon
|
||||
*/
|
||||
class: any;
|
||||
}): VNode[];
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue