Merge branch 'master' of https://github.com/primefaces/primevue
commit
7291d3a758
|
@ -242,6 +242,46 @@ export interface TreeTablePassThroughOptions {
|
||||||
* Uses to pass attributes to the resize helper's DOM element.
|
* Uses to pass attributes to the resize helper's DOM element.
|
||||||
*/
|
*/
|
||||||
resizeHelper?: TreeTablePassThroughOptionType;
|
resizeHelper?: TreeTablePassThroughOptionType;
|
||||||
|
/**
|
||||||
|
* Uses to pass attributes to the row toggler's DOM element.
|
||||||
|
*/
|
||||||
|
rowToggler?: TreeTablePassThroughOptionType;
|
||||||
|
/**
|
||||||
|
* Uses to pass attributes to the row toggler icon's DOM element.
|
||||||
|
*/
|
||||||
|
rowTogglerIcon?: TreeTablePassThroughOptionType;
|
||||||
|
/**
|
||||||
|
* Uses to pass attributes to the column resizer's DOM element.
|
||||||
|
*/
|
||||||
|
columnResizer?: TreeTablePassThroughOptionType;
|
||||||
|
/**
|
||||||
|
* Uses to pass attributes to the sort badge's DOM element.
|
||||||
|
*/
|
||||||
|
sortBadge?: TreeTablePassThroughOptionType;
|
||||||
|
/**
|
||||||
|
* Uses to pass attributes to the header title's DOM element.
|
||||||
|
*/
|
||||||
|
headerTitle?: TreeTablePassThroughOptionType;
|
||||||
|
/**
|
||||||
|
* Uses to pass attributes to the checkbox wrapper's DOM element.
|
||||||
|
*/
|
||||||
|
checkboxWrapper?: TreeTablePassThroughOptionType;
|
||||||
|
/**
|
||||||
|
* Uses to pass attributes to checkbox's DOM element.
|
||||||
|
*/
|
||||||
|
checkbox?: TreeTablePassThroughOptionType;
|
||||||
|
/**
|
||||||
|
* Uses to pass attributes to the checkbox icon's DOM element.
|
||||||
|
*/
|
||||||
|
checkboxIcon?: TreeTablePassThroughOptionType;
|
||||||
|
/**
|
||||||
|
* Uses to pass attributes to the hidden input wrapper's DOM element.
|
||||||
|
*/
|
||||||
|
hiddenInputWrapper?: TreeTablePassThroughOptionType;
|
||||||
|
/**
|
||||||
|
* Uses to pass attributes to the hidden input's DOM element.
|
||||||
|
*/
|
||||||
|
hiddenInput?: TreeTablePassThroughOptionType;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -39996,6 +39996,86 @@
|
||||||
"type": "TreeTablePassThroughOptionType",
|
"type": "TreeTablePassThroughOptionType",
|
||||||
"default": "",
|
"default": "",
|
||||||
"description": "Uses to pass attributes to the resize helper's DOM element."
|
"description": "Uses to pass attributes to the resize helper's DOM element."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "rowToggler",
|
||||||
|
"optional": true,
|
||||||
|
"readonly": false,
|
||||||
|
"type": "TreeTablePassThroughOptionType",
|
||||||
|
"default": "",
|
||||||
|
"description": "Uses to pass attributes to the row toggler's DOM element."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "rowTogglerIcon",
|
||||||
|
"optional": true,
|
||||||
|
"readonly": false,
|
||||||
|
"type": "TreeTablePassThroughOptionType",
|
||||||
|
"default": "",
|
||||||
|
"description": "Uses to pass attributes to the row toggler icon's DOM element."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "columnResizer",
|
||||||
|
"optional": true,
|
||||||
|
"readonly": false,
|
||||||
|
"type": "TreeTablePassThroughOptionType",
|
||||||
|
"default": "",
|
||||||
|
"description": "Uses to pass attributes to the column resizer's DOM element."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "sortBadge",
|
||||||
|
"optional": true,
|
||||||
|
"readonly": false,
|
||||||
|
"type": "TreeTablePassThroughOptionType",
|
||||||
|
"default": "",
|
||||||
|
"description": "Uses to pass attributes to the sort badge's DOM element."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "headerTitle",
|
||||||
|
"optional": true,
|
||||||
|
"readonly": false,
|
||||||
|
"type": "TreeTablePassThroughOptionType",
|
||||||
|
"default": "",
|
||||||
|
"description": "Uses to pass attributes to the header title's DOM element."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "checkboxWrapper",
|
||||||
|
"optional": true,
|
||||||
|
"readonly": false,
|
||||||
|
"type": "TreeTablePassThroughOptionType",
|
||||||
|
"default": "",
|
||||||
|
"description": "Uses to pass attributes to the checkbox wrapper's DOM element."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "checkbox",
|
||||||
|
"optional": true,
|
||||||
|
"readonly": false,
|
||||||
|
"type": "TreeTablePassThroughOptionType",
|
||||||
|
"default": "",
|
||||||
|
"description": "Uses to pass attributes to checkbox's DOM element."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "checkboxIcon",
|
||||||
|
"optional": true,
|
||||||
|
"readonly": false,
|
||||||
|
"type": "TreeTablePassThroughOptionType",
|
||||||
|
"default": "",
|
||||||
|
"description": "Uses to pass attributes to the checkbox icon's DOM element."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "hiddenInputWrapper",
|
||||||
|
"optional": true,
|
||||||
|
"readonly": false,
|
||||||
|
"type": "TreeTablePassThroughOptionType",
|
||||||
|
"default": "",
|
||||||
|
"description": "Uses to pass attributes to the hidden input wrapper's DOM element."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "hiddenInput",
|
||||||
|
"optional": true,
|
||||||
|
"readonly": false,
|
||||||
|
"type": "TreeTablePassThroughOptionType",
|
||||||
|
"default": "",
|
||||||
|
"description": "Uses to pass attributes to the hidden input's DOM element."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"methods": []
|
"methods": []
|
||||||
|
|
Loading…
Reference in New Issue