Update API doc

pull/6596/head
GitHub Actions Bot 2024-10-16 06:55:55 +00:00
parent 52bb19aa80
commit cb55d9b926
2 changed files with 28 additions and 0 deletions

View File

@ -95064,6 +95064,14 @@
"type": "Object",
"default": "",
"description": "Used to pass tokens of the loading icon section"
},
{
"name": "filter",
"optional": true,
"readonly": false,
"type": "Object",
"default": "",
"description": "Used to pass tokens of the filter section"
}
],
"methods": [],
@ -95390,6 +95398,15 @@
"type": "string",
"default": "",
"description": "Size of loading icon"
},
{
"name": "filter.margin",
"token": "tree.filter.margin",
"optional": true,
"readonly": false,
"type": "string",
"default": "",
"description": "Margin of filter"
}
]
}

View File

@ -256,4 +256,15 @@ export interface TreeDesignTokens extends ColorSchemeDesignToken<TreeDesignToken
*/
size?: string;
};
/**
* Used to pass tokens of the filter section
*/
filter?: {
/**
* Margin of filter
*
* @designToken tree.filter.margin
*/
margin?: string;
};
}