Update API doc

pull/6596/head
GitHub Actions Bot 2024-10-16 08:43:23 +00:00
parent 0a3430cbc4
commit d498096fbc
3 changed files with 30 additions and 0 deletions

View File

@ -77282,6 +77282,15 @@
"default": "", "default": "",
"description": "Hover color of sort icon" "description": "Hover color of sort icon"
}, },
{
"name": "sortIcon.size",
"token": "datatable.sort.icon.size",
"optional": true,
"readonly": false,
"type": "string",
"default": "",
"description": "Size of sort icon"
},
{ {
"name": "loadingIcon.size", "name": "loadingIcon.size",
"token": "datatable.loading.icon.size", "token": "datatable.loading.icon.size",
@ -96480,6 +96489,15 @@
"default": "", "default": "",
"description": "Hover color of sort icon" "description": "Hover color of sort icon"
}, },
{
"name": "sortIcon.size",
"token": "treetable.sort.icon.size",
"optional": true,
"readonly": false,
"type": "string",
"default": "",
"description": "Size of sort icon"
},
{ {
"name": "loadingIcon.size", "name": "loadingIcon.size",
"token": "treetable.loading.icon.size", "token": "treetable.loading.icon.size",

View File

@ -433,6 +433,12 @@ export interface DataTableDesignTokens extends ColorSchemeDesignToken<DataTableD
* @designToken datatable.sort.icon.hover.color * @designToken datatable.sort.icon.hover.color
*/ */
hoverColor?: string; hoverColor?: string;
/**
* Size of sort icon
*
* @designToken datatable.sort.icon.size
*/
size?: string;
}; };
/** /**
* Used to pass tokens of the loading icon section * Used to pass tokens of the loading icon section

View File

@ -422,6 +422,12 @@ export interface TreeTableDesignTokens extends ColorSchemeDesignToken<TreeTableD
* @designToken treetable.sort.icon.hover.color * @designToken treetable.sort.icon.hover.color
*/ */
hoverColor?: string; hoverColor?: string;
/**
* Size of sort icon
*
* @designToken treetable.sort.icon.size
*/
size?: string;
}; };
/** /**
* Used to pass tokens of the loading icon section * Used to pass tokens of the loading icon section