Update API doc

pull/3938/head
GitHub Actions Bot 2023-05-06 19:58:11 +00:00
parent 73327316aa
commit 9d9f568ce9
1 changed files with 96 additions and 0 deletions

View File

@ -27886,6 +27886,71 @@
"methodDescription": "Defines methods that can be accessed by the component's reference.",
"typeDescription": "Defines the custom types used by the module.",
"values": {
"SelectButtonPassThroughMethodOptions": {
"description": "Custom passthrough(pt) option method.",
"relatedProp": "",
"props": [
{
"name": "props",
"optional": false,
"readonly": false,
"type": "SelectButtonProps",
"default": ""
},
{
"name": "state",
"optional": false,
"readonly": false,
"type": "SelectButtonState",
"default": ""
}
],
"methods": []
},
"SelectButtonPassThroughOptions": {
"description": "Custom passthrough(pt) options.",
"relatedProp": "SelectButtonProps.pt",
"props": [
{
"name": "root",
"optional": true,
"readonly": false,
"type": "SelectButtonPassThroughOptionType",
"default": "",
"description": "Uses to pass attributes to the root's DOM element."
},
{
"name": "button",
"optional": true,
"readonly": false,
"type": "SelectButtonPassThroughOptionType",
"default": "",
"description": "Uses to pass attributes to the button's DOM element."
},
{
"name": "label",
"optional": true,
"readonly": false,
"type": "SelectButtonPassThroughOptionType",
"default": "",
"description": "Uses to pass attributes to the label's DOM element."
}
],
"methods": []
},
"SelectButtonPassThroughAttributes": {
"description": "Custom passthrough attributes for each DOM elements",
"relatedProp": "",
"props": [
{
"name": "[key: string]",
"optional": false,
"readonly": false,
"type": "any"
}
],
"methods": []
},
"SelectButtonChangeEvent": {
"description": "Custom change event.",
"relatedProp": "SelectButtonEmits.change",
@ -27909,6 +27974,21 @@
],
"methods": []
},
"SelectButtonState": {
"description": "Defines current inline state in SelectButton component.",
"relatedProp": "",
"props": [
{
"name": "focusedIndex",
"optional": false,
"readonly": false,
"type": "number",
"default": "",
"description": "FocusedIndex state as a number."
}
],
"methods": []
},
"SelectButtonProps": {
"description": "Defines valid properties in SelectButton component.",
"relatedProp": "",
@ -27992,6 +28072,14 @@
"type": "string",
"default": "",
"description": "Identifier of the underlying element."
},
{
"name": "pt",
"optional": true,
"readonly": false,
"type": "SelectButtonPassThroughOptions",
"default": "",
"description": "Uses to pass attributes to DOM elements inside the component."
}
],
"methods": []
@ -28075,6 +28163,14 @@
]
}
}
},
"types": {
"description": "Defines the custom types used by the module.",
"values": {
"SelectButtonPassThroughOptionType": {
"values": "SelectButtonPassThroughAttributes | (options: SelectButtonPassThroughMethodOptions) => SelectButtonPassThroughAttributes | null | undefined"
}
}
}
},
"sidebar": {