Skip to content

Commit

Permalink
Refactor primefaces#3924 - For TreeTable.d.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
ulasturann authored and thielpa committed Jun 7, 2023
1 parent 0ae27e1 commit 2528486
Show file tree
Hide file tree
Showing 2 changed files with 120 additions and 0 deletions.
40 changes: 40 additions & 0 deletions components/lib/treetable/TreeTable.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,46 @@ export interface TreeTablePassThroughOptions {
* Uses to pass attributes to the resize helper's DOM element.
*/
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;
}

/**
Expand Down
80 changes: 80 additions & 0 deletions doc/common/apidoc/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -39996,6 +39996,86 @@
"type": "TreeTablePassThroughOptionType",
"default": "",
"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": []
Expand Down

0 comments on commit 2528486

Please sign in to comment.