Update API doc

pull/6493/head
GitHub Actions Bot 2024-09-27 13:32:04 +00:00
parent aa73025403
commit d78dedcd72
1 changed files with 69 additions and 0 deletions

View File

@ -67833,6 +67833,29 @@
"methods": [], "methods": [],
"extendedTypes": "TreeTableSortEvent" "extendedTypes": "TreeTableSortEvent"
}, },
"TreeTableRowContextMenuEvent": {
"description": "Custom row context menu event.",
"relatedProp": "TreeTableEmitsOptions['row-contextmenu']",
"props": [
{
"name": "originalEvent",
"optional": false,
"readonly": false,
"type": "Event",
"default": "",
"description": "Browser event."
},
{
"name": "node",
"optional": false,
"readonly": false,
"type": "TreeNode",
"default": "",
"description": "Selected row data."
}
],
"methods": []
},
"TreeTableSortMeta": { "TreeTableSortMeta": {
"description": "Custom sort metadata.", "description": "Custom sort metadata.",
"relatedProp": "", "relatedProp": "",
@ -68264,6 +68287,22 @@
"default": "false", "default": "false",
"description": "Defines how multiple items can be selected, when true metaKey needs to be pressed to select or unselect an item and when set to false selection of each item can be toggled individually.\nOn touch enabled devices, metaKeySelection is turned off automatically." "description": "Defines how multiple items can be selected, when true metaKey needs to be pressed to select or unselect an item and when set to false selection of each item can be toggled individually.\nOn touch enabled devices, metaKeySelection is turned off automatically."
}, },
{
"name": "contextMenu",
"optional": true,
"readonly": false,
"type": "boolean",
"default": "false",
"description": "Enables context menu integration."
},
{
"name": "contextMenuSelection",
"optional": true,
"readonly": false,
"type": "any",
"default": "",
"description": "Selected row instance with the ContextMenu."
},
{ {
"name": "rows", "name": "rows",
"optional": true, "optional": true,
@ -68732,6 +68771,19 @@
"returnType": "void", "returnType": "void",
"description": "Emitted when the selection keys change." "description": "Emitted when the selection keys change."
}, },
{
"name": "update:contextMenuSelection",
"parameters": [
{
"name": "value",
"optional": false,
"type": "any",
"description": "New value."
}
],
"returnType": "void",
"description": "Emitted when the contextMenuSelection changes."
},
{ {
"name": "update:first", "name": "update:first",
"parameters": [ "parameters": [
@ -68900,6 +68952,19 @@
], ],
"returnType": "void", "returnType": "void",
"description": "Callback to invoke when a column is resized." "description": "Callback to invoke when a column is resized."
},
{
"name": "row-contextmenu",
"parameters": [
{
"name": "event",
"optional": false,
"type": "TreeTableRowContextMenuEvent",
"description": "Custom row context menu event."
}
],
"returnType": "void",
"description": "Callback to invoke when a row is selected with a ContextMenu."
} }
] ]
} }
@ -68940,6 +69005,10 @@
"description": "Custom filter event.", "description": "Custom filter event.",
"props": [] "props": []
}, },
"TreeTableRowContextMenuEvent": {
"description": "Custom row context menu event.",
"props": []
},
"TreeTableSortMeta": { "TreeTableSortMeta": {
"description": "Custom sort metadata.", "description": "Custom sort metadata.",
"props": [] "props": []