Update API doc
parent
0a3430cbc4
commit
d498096fbc
|
@ -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",
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue