.d.ts fixes
parent
41d871e1ff
commit
66f3a4b59e
|
@ -59,10 +59,6 @@ export interface MenubarPassThroughOptions {
|
||||||
* Uses to pass attributes to the submenu icon's DOM element.
|
* Uses to pass attributes to the submenu icon's DOM element.
|
||||||
*/
|
*/
|
||||||
submenuIcon?: MenubarPassThroughOptionType;
|
submenuIcon?: MenubarPassThroughOptionType;
|
||||||
/**
|
|
||||||
* Uses to pass attributes to the submenu's DOM element.
|
|
||||||
*/
|
|
||||||
submenu?: MenubarPassThroughOptionType;
|
|
||||||
/**
|
/**
|
||||||
* Uses to pass attributes to the separator's DOM element.
|
* Uses to pass attributes to the separator's DOM element.
|
||||||
*/
|
*/
|
||||||
|
@ -75,6 +71,10 @@ export interface MenubarPassThroughOptions {
|
||||||
* Uses to pass attributes to the mobile popup menu button icon's DOM element.
|
* Uses to pass attributes to the mobile popup menu button icon's DOM element.
|
||||||
*/
|
*/
|
||||||
popupIcon?: MenubarPassThroughOptionType;
|
popupIcon?: MenubarPassThroughOptionType;
|
||||||
|
/**
|
||||||
|
* Uses to pass attributes to the submenu's DOM element.
|
||||||
|
*/
|
||||||
|
submenu?: MenubarPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Uses to pass attributes to the start of the component.
|
* Uses to pass attributes to the start of the component.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -59,19 +59,14 @@ export interface TieredMenuPassThroughOptions {
|
||||||
* Uses to pass attributes to the submenu icon's DOM element.
|
* Uses to pass attributes to the submenu icon's DOM element.
|
||||||
*/
|
*/
|
||||||
submenuIcon?: TieredMenuPassThroughOptionType;
|
submenuIcon?: TieredMenuPassThroughOptionType;
|
||||||
/**
|
|
||||||
* Uses to pass attributes to the submenu's DOM element.
|
|
||||||
*/
|
|
||||||
submenu?: TieredMenuPassThroughOptionType;
|
|
||||||
/**
|
/**
|
||||||
* Uses to pass attributes to the separator's DOM element.
|
* Uses to pass attributes to the separator's DOM element.
|
||||||
*/
|
*/
|
||||||
separator?: TieredMenuPassThroughOptionType;
|
separator?: TieredMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* When enabled, it removes component related styles in the core.
|
* Uses to pass attributes to the submenu's DOM element.
|
||||||
* @defaultValue false
|
|
||||||
*/
|
*/
|
||||||
unstyled?: boolean;
|
submenu?: TieredMenuPassThroughOptionType;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -200,6 +195,11 @@ export interface TieredMenuProps {
|
||||||
* @type {TieredMenuPassThroughOptions}
|
* @type {TieredMenuPassThroughOptions}
|
||||||
*/
|
*/
|
||||||
pt?: TieredMenuPassThroughOptions;
|
pt?: TieredMenuPassThroughOptions;
|
||||||
|
/**
|
||||||
|
* When enabled, it removes component related styles in the core.
|
||||||
|
* @defaultValue false
|
||||||
|
*/
|
||||||
|
unstyled?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue