pull/6596/head
Cagatay Civici 2024-10-16 11:59:53 +03:00
commit eabfa19d32
3 changed files with 30 additions and 0 deletions

View File

@ -77282,6 +77282,15 @@
"default": "",
"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",
"token": "datatable.loading.icon.size",
@ -96480,6 +96489,15 @@
"default": "",
"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",
"token": "treetable.loading.icon.size",

View File

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