mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
parent
7b9255c5e8
commit
c0a4677f90
3 changed files with 66 additions and 1 deletions
36
components/lib/treeselect/TreeSelect.d.ts
vendored
36
components/lib/treeselect/TreeSelect.d.ts
vendored
|
@ -150,6 +150,42 @@ export interface TreeSelectSlots {
|
|||
* Custom indicator template.
|
||||
*/
|
||||
indicator(): VNode[];
|
||||
/**
|
||||
* Custom loading icon template.
|
||||
*/
|
||||
loadingicon(): VNode[];
|
||||
/**
|
||||
* Custom search icon template.
|
||||
*/
|
||||
searchicon(): VNode[];
|
||||
/**
|
||||
* Custom item toggler icon template.
|
||||
* @param {Object} scope - item toggler icon slot's params.
|
||||
*/
|
||||
itemtogglericon(scope: {
|
||||
/**
|
||||
* Node instance
|
||||
*/
|
||||
node: TreeNode | any;
|
||||
/**
|
||||
* Expanded state of the node
|
||||
*/
|
||||
expanded: TreeNode[];
|
||||
}): VNode[];
|
||||
/**
|
||||
* Custom item checkbox icon template.
|
||||
* @param {Object} scope - item checkbox icon slot's params.
|
||||
*/
|
||||
itemcheckboxicon(scope: {
|
||||
/**
|
||||
* Check state of the node
|
||||
*/
|
||||
checked: boolean;
|
||||
/**
|
||||
* Partial check state of the node
|
||||
*/
|
||||
partialChecked: boolean;
|
||||
}): VNode[];
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue