Update API doc

pull/6674/head
GitHub Actions Bot 2024-10-28 11:34:34 +00:00
parent 68438dff2d
commit b175cfdc20
2 changed files with 28 additions and 0 deletions

View File

@ -98643,6 +98643,14 @@
"default": "",
"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",
"optional": true,
@ -98994,6 +99002,15 @@
"default": "",
"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",
"token": "treeselect.empty.message.padding",

View File

@ -262,6 +262,17 @@ export interface TreeSelectDesignTokens extends ColorSchemeDesignToken<TreeSelec
*/
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
*/