Refactor #3965 - For Menubar

This commit is contained in:
Tuğçe Küçükoğlu 2023-05-29 17:06:26 +03:00
parent b85d2b5536
commit df4994ea68
4 changed files with 206 additions and 164 deletions

View file

@ -59,6 +59,10 @@ export interface MenubarPassThroughOptions {
* Uses to pass attributes to the submenu icon's DOM element.
*/
submenuIcon?: MenubarPassThroughOptionType;
/**
* Uses to pass attributes to the submenu's DOM element.
*/
submenu?: MenubarPassThroughOptionType;
/**
* Uses to pass attributes to the separator's DOM element.
*/
@ -182,6 +186,11 @@ export interface MenubarProps {
* @type {MenubarPassThroughOptions}
*/
pt?: MenubarPassThroughOptions;
/**
* When enabled, it removes component related styles in the core.
* @defaultValue false
*/
unstyled?: boolean;
}
/**