Merge branch 'master' of https://github.com/primefaces/primevue
commit
eabfa19d32
|
@ -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",
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue