pull/4030/head
Tuğçe Küçükoğlu 2023-06-05 10:34:26 +03:00
commit 7291d3a758
2 changed files with 120 additions and 0 deletions

View File

@ -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;
} }
/** /**

View File

@ -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": []