Update API doc
parent
0c57108f89
commit
573216a1ef
|
@ -15208,6 +15208,22 @@
|
|||
"default": "",
|
||||
"description": "An array of menuitems."
|
||||
},
|
||||
{
|
||||
"name": "breakpoint",
|
||||
"optional": true,
|
||||
"readonly": false,
|
||||
"type": "string",
|
||||
"default": "960px",
|
||||
"description": "The breakpoint to define the maximum width boundary."
|
||||
},
|
||||
{
|
||||
"name": "global",
|
||||
"optional": true,
|
||||
"readonly": false,
|
||||
"type": "boolean",
|
||||
"default": "false",
|
||||
"description": "Attaches the menu to document instead of a particular item."
|
||||
},
|
||||
{
|
||||
"name": "appendTo",
|
||||
"optional": true,
|
||||
|
@ -15232,14 +15248,6 @@
|
|||
"default": "0",
|
||||
"description": "Base zIndex value to use in layering."
|
||||
},
|
||||
{
|
||||
"name": "global",
|
||||
"optional": true,
|
||||
"readonly": false,
|
||||
"type": "boolean",
|
||||
"default": "false",
|
||||
"description": "Attaches the menu to document instead of a particular item."
|
||||
},
|
||||
{
|
||||
"name": "tabindex",
|
||||
"optional": true,
|
||||
|
@ -62703,6 +62711,14 @@
|
|||
"default": "false",
|
||||
"description": "Defines if menu would displayed as a popup."
|
||||
},
|
||||
{
|
||||
"name": "breakpoint",
|
||||
"optional": true,
|
||||
"readonly": false,
|
||||
"type": "string",
|
||||
"default": "960px",
|
||||
"description": "The breakpoint to define the maximum width boundary."
|
||||
},
|
||||
{
|
||||
"name": "appendTo",
|
||||
"optional": true,
|
||||
|
@ -76236,6 +76252,14 @@
|
|||
"default": "",
|
||||
"description": "Used to pass tokens of the item section"
|
||||
},
|
||||
{
|
||||
"name": "submenu",
|
||||
"optional": true,
|
||||
"readonly": false,
|
||||
"type": "Object",
|
||||
"default": "",
|
||||
"description": "Used to pass tokens of the submenu section"
|
||||
},
|
||||
{
|
||||
"name": "submenuIcon",
|
||||
"optional": true,
|
||||
|
@ -76441,6 +76465,15 @@
|
|||
"default": "",
|
||||
"description": "Icon active color of item"
|
||||
},
|
||||
{
|
||||
"name": "submenu.mobileIndent",
|
||||
"token": "contextmenu.submenu.mobile.indent",
|
||||
"optional": true,
|
||||
"readonly": false,
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "Mobile indent of submenu"
|
||||
},
|
||||
{
|
||||
"name": "submenuIcon.size",
|
||||
"token": "contextmenu.submenu.icon.size",
|
||||
|
@ -92805,6 +92838,14 @@
|
|||
"default": "",
|
||||
"description": "Used to pass tokens of the item section"
|
||||
},
|
||||
{
|
||||
"name": "submenu",
|
||||
"optional": true,
|
||||
"readonly": false,
|
||||
"type": "Object",
|
||||
"default": "",
|
||||
"description": "Used to pass tokens of the submenu section"
|
||||
},
|
||||
{
|
||||
"name": "submenuLabel",
|
||||
"optional": true,
|
||||
|
@ -93011,6 +93052,15 @@
|
|||
"default": "",
|
||||
"description": "Icon active color of item"
|
||||
},
|
||||
{
|
||||
"name": "submenu.mobileIndent",
|
||||
"token": "tieredmenu.submenu.mobile.indent",
|
||||
"optional": true,
|
||||
"readonly": false,
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "Mobile indent of submenu"
|
||||
},
|
||||
{
|
||||
"name": "submenuLabel.padding",
|
||||
"token": "tieredmenu.submenu.label.padding",
|
||||
|
|
|
@ -145,6 +145,17 @@ export interface ContextMenuDesignTokens extends ColorSchemeDesignToken<ContextM
|
|||
activeColor?: string;
|
||||
};
|
||||
};
|
||||
/**
|
||||
* Used to pass tokens of the submenu section
|
||||
*/
|
||||
submenu?: {
|
||||
/**
|
||||
* Mobile indent of submenu
|
||||
*
|
||||
* @designToken contextmenu.submenu.mobile.indent
|
||||
*/
|
||||
mobileIndent?: string;
|
||||
};
|
||||
/**
|
||||
* Used to pass tokens of the submenu icon section
|
||||
*/
|
||||
|
|
|
@ -145,6 +145,17 @@ export interface TieredMenuDesignTokens extends ColorSchemeDesignToken<TieredMen
|
|||
activeColor?: string;
|
||||
};
|
||||
};
|
||||
/**
|
||||
* Used to pass tokens of the submenu section
|
||||
*/
|
||||
submenu?: {
|
||||
/**
|
||||
* Mobile indent of submenu
|
||||
*
|
||||
* @designToken tieredmenu.submenu.mobile.indent
|
||||
*/
|
||||
mobileIndent?: string;
|
||||
};
|
||||
/**
|
||||
* Used to pass tokens of the submenu label section
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue