Merge branch 'master' of https://github.com/primefaces/primevue
commit
57d0b4790d
|
@ -95064,6 +95064,14 @@
|
||||||
"type": "Object",
|
"type": "Object",
|
||||||
"default": "",
|
"default": "",
|
||||||
"description": "Used to pass tokens of the loading icon section"
|
"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": [],
|
"methods": [],
|
||||||
|
@ -95390,6 +95398,15 @@
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"default": "",
|
"default": "",
|
||||||
"description": "Size of loading icon"
|
"description": "Size of loading icon"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "filter.margin",
|
||||||
|
"token": "tree.filter.margin",
|
||||||
|
"optional": true,
|
||||||
|
"readonly": false,
|
||||||
|
"type": "string",
|
||||||
|
"default": "",
|
||||||
|
"description": "Margin of filter"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -256,4 +256,15 @@ export interface TreeDesignTokens extends ColorSchemeDesignToken<TreeDesignToken
|
||||||
*/
|
*/
|
||||||
size?: string;
|
size?: string;
|
||||||
};
|
};
|
||||||
|
/**
|
||||||
|
* Used to pass tokens of the filter section
|
||||||
|
*/
|
||||||
|
filter?: {
|
||||||
|
/**
|
||||||
|
* Margin of filter
|
||||||
|
*
|
||||||
|
* @designToken tree.filter.margin
|
||||||
|
*/
|
||||||
|
margin?: string;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue