Update API doc

pull/4153/head
GitHub Actions Bot 2023-07-17 09:23:59 +00:00
parent ee637daf39
commit 9a0523e3f0
1 changed files with 70 additions and 16 deletions

View File

@ -11129,6 +11129,30 @@
"type": "boolean", "type": "boolean",
"default": "false", "default": "false",
"description": "Current disabled state of row as a boolean." "description": "Current disabled state of row as a boolean."
},
{
"name": "sorted",
"optional": false,
"readonly": false,
"type": "boolean",
"default": "false",
"description": "Current sort state of the column as a boolean."
},
{
"name": "frozen",
"optional": false,
"readonly": false,
"type": "boolean",
"default": "false",
"description": "Current frozen state of the column as a boolean."
},
{
"name": "resizable",
"optional": false,
"readonly": false,
"type": "boolean",
"default": "false",
"description": "Current resizable state of the column as a boolean."
} }
], ],
"methods": [] "methods": []
@ -43164,6 +43188,13 @@
"readonly": false, "readonly": false,
"type": "TreeTableState", "type": "TreeTableState",
"default": "" "default": ""
},
{
"name": "context",
"optional": false,
"readonly": false,
"type": "TreeTableContext",
"default": ""
} }
], ],
"methods": [] "methods": []
@ -43600,22 +43631,6 @@
"default": "", "default": "",
"description": "Uses to pass attributes to the header row's DOM element." "description": "Uses to pass attributes to the header row's DOM element."
}, },
{
"name": "headerFilterRow",
"optional": true,
"readonly": false,
"type": "TreeTablePassThroughOptionType",
"default": "",
"description": "Uses to pass attributes to the header filter row's DOM element."
},
{
"name": "headerFilterCell",
"optional": true,
"readonly": false,
"type": "TreeTablePassThroughOptionType",
"default": "",
"description": "Uses to pass attributes to the header filter cell's DOM element."
},
{ {
"name": "tbody", "name": "tbody",
"optional": true, "optional": true,
@ -43823,6 +43838,45 @@
], ],
"methods": [] "methods": []
}, },
"TreeTableContext": {
"description": "Defines current options in TreeTable component.",
"relatedProp": "",
"props": [
{
"name": "index",
"optional": false,
"readonly": false,
"type": "number",
"default": "",
"description": "Current index state of the item."
},
{
"name": "frozen",
"optional": false,
"readonly": false,
"type": "boolean",
"default": "false",
"description": "Current frozen state of the row as a boolean."
},
{
"name": "selectable",
"optional": false,
"readonly": false,
"type": "boolean",
"default": "false",
"description": "Current selectable state of the row as a boolean."
},
{
"name": "selected",
"optional": false,
"readonly": false,
"type": "boolean",
"default": "false",
"description": "Current selected state of the row as a boolean."
}
],
"methods": []
},
"TreeTableProps": { "TreeTableProps": {
"description": "Defines valid properties in TreeTable component.", "description": "Defines valid properties in TreeTable component.",
"relatedProp": "", "relatedProp": "",