Update API doc

pull/5072/head
GitHub Actions Bot 2024-01-12 07:08:59 +00:00
parent 99b1edd5ce
commit 0e945d43d0
1 changed files with 20 additions and 38 deletions

View File

@ -10952,12 +10952,10 @@
"relatedProp": "", "relatedProp": "",
"props": [ "props": [
{ {
"name": "focused", "name": "[key: string]",
"optional": false, "optional": false,
"readonly": false, "readonly": false,
"type": "boolean", "type": "any"
"default": "false",
"description": "Current focus state as a boolean."
} }
], ],
"methods": [] "methods": []
@ -11070,14 +11068,6 @@
"default": "", "default": "",
"description": "Inline style of the input field." "description": "Inline style of the input field."
}, },
{
"name": "inputProps",
"optional": true,
"readonly": false,
"type": "InputHTMLAttributes",
"default": "",
"description": "Used to pass all properties of the HTMLInputElement to the focusable input element inside the component."
},
{ {
"name": "ariaLabelledby", "name": "ariaLabelledby",
"optional": true, "optional": true,
@ -11133,14 +11123,6 @@
"default": "false", "default": "false",
"description": "Current checked state of the item as a boolean." "description": "Current checked state of the item as a boolean."
}, },
{
"name": "focused",
"optional": false,
"readonly": false,
"type": "boolean",
"default": "false",
"description": "Current focus state of the item as a boolean."
},
{ {
"name": "disabled", "name": "disabled",
"optional": false, "optional": false,
@ -11190,19 +11172,6 @@
"returnType": "void", "returnType": "void",
"description": "Emitted when the page changes." "description": "Emitted when the page changes."
}, },
{
"name": "click",
"parameters": [
{
"name": "event",
"optional": false,
"type": "MouseEvent",
"description": "Browser event."
}
],
"returnType": "void",
"description": "Callback to invoke on value click."
},
{ {
"name": "change", "name": "change",
"parameters": [ "parameters": [
@ -11217,17 +11186,30 @@
"description": "Callback to invoke on value change." "description": "Callback to invoke on value change."
}, },
{ {
"name": "input", "name": "focus",
"parameters": [ "parameters": [
{ {
"name": "value", "name": "event",
"optional": false, "optional": false,
"type": "boolean", "type": "Event",
"description": "New value." "description": "Browser event."
} }
], ],
"returnType": "void", "returnType": "void",
"description": "Callback to invoke on value change." "description": "Callback to invoke when the component receives focus."
},
{
"name": "blur",
"parameters": [
{
"name": "event",
"optional": false,
"type": "Event",
"description": "Browser event."
}
],
"returnType": "void",
"description": "Callback to invoke when the component loses focus."
} }
] ]
} }