Refactor #3832 Refactor #3833 - For PanelMenu

This commit is contained in:
mertsincan 2023-04-17 09:30:28 +03:00
parent 1f86a9b8bb
commit 3ed2355a45
5 changed files with 48 additions and 12 deletions

View file

@ -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[];
}
/**