Update API doc
parent
68438dff2d
commit
b175cfdc20
|
@ -98643,6 +98643,14 @@
|
||||||
"default": "",
|
"default": "",
|
||||||
"description": "Used to pass tokens of the tree section"
|
"description": "Used to pass tokens of the tree section"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "clearIcon",
|
||||||
|
"optional": true,
|
||||||
|
"readonly": false,
|
||||||
|
"type": "Object",
|
||||||
|
"default": "",
|
||||||
|
"description": "Used to pass tokens of the clear icon section"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "emptyMessage",
|
"name": "emptyMessage",
|
||||||
"optional": true,
|
"optional": true,
|
||||||
|
@ -98994,6 +99002,15 @@
|
||||||
"default": "",
|
"default": "",
|
||||||
"description": "Padding of tree"
|
"description": "Padding of tree"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "clearIcon.color",
|
||||||
|
"token": "treeselect.clear.icon.color",
|
||||||
|
"optional": true,
|
||||||
|
"readonly": false,
|
||||||
|
"type": "string",
|
||||||
|
"default": "",
|
||||||
|
"description": "Color of clear icon"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "emptyMessage.padding",
|
"name": "emptyMessage.padding",
|
||||||
"token": "treeselect.empty.message.padding",
|
"token": "treeselect.empty.message.padding",
|
||||||
|
|
|
@ -262,6 +262,17 @@ export interface TreeSelectDesignTokens extends ColorSchemeDesignToken<TreeSelec
|
||||||
*/
|
*/
|
||||||
padding?: string;
|
padding?: string;
|
||||||
};
|
};
|
||||||
|
/**
|
||||||
|
* Used to pass tokens of the clear icon section
|
||||||
|
*/
|
||||||
|
clearIcon?: {
|
||||||
|
/**
|
||||||
|
* Color of clear icon
|
||||||
|
*
|
||||||
|
* @designToken treeselect.clear.icon.color
|
||||||
|
*/
|
||||||
|
color?: string;
|
||||||
|
};
|
||||||
/**
|
/**
|
||||||
* Used to pass tokens of the empty message section
|
* Used to pass tokens of the empty message section
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue