Refactor #3965 - For TieredMenu

This commit is contained in:
Tuğçe Küçükoğlu 2023-05-29 15:31:43 +03:00
parent 8494b53f48
commit 24dfbf5116
4 changed files with 192 additions and 153 deletions

View file

@ -59,10 +59,19 @@ export interface TieredMenuPassThroughOptions {
* Uses to pass attributes to the submenu icon's DOM element.
*/
submenuIcon?: TieredMenuPassThroughOptionType;
/**
* Uses to pass attributes to the submenu's DOM element.
*/
submenu?: TieredMenuPassThroughOptionType;
/**
* Uses to pass attributes to the separator's DOM element.
*/
separator?: TieredMenuPassThroughOptionType;
/**
* When enabled, it removes component related styles in the core.
* @defaultValue false
*/
unstyled?: boolean;
}
/**