mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
parent
1f86a9b8bb
commit
3ed2355a45
5 changed files with 48 additions and 12 deletions
28
components/lib/panelmenu/PanelMenu.d.ts
vendored
28
components/lib/panelmenu/PanelMenu.d.ts
vendored
|
@ -89,6 +89,34 @@ export interface PanelMenuSlots {
|
|||
*/
|
||||
active: boolean;
|
||||
}): VNode[];
|
||||
/**
|
||||
* Custom header icon template.
|
||||
* @param {Object} scope - header icon slot's params.
|
||||
*/
|
||||
headericon(scope: {
|
||||
/**
|
||||
* Menuitem instance
|
||||
*/
|
||||
item: MenuItem;
|
||||
/**
|
||||
* Style class of the item icon element.
|
||||
*/
|
||||
class: any;
|
||||
}): VNode[];
|
||||
/**
|
||||
* Custom item icon template.
|
||||
* @param {Object} scope - item icon slot's params.
|
||||
*/
|
||||
itemicon(scope: {
|
||||
/**
|
||||
* Menuitem instance
|
||||
*/
|
||||
item: MenuItem;
|
||||
/**
|
||||
* Style class of the item icon element.
|
||||
*/
|
||||
class: any;
|
||||
}): VNode[];
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue