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": "",
"props": [
{
"name": "focused",
"name": "[key: string]",
"optional": false,
"readonly": false,
"type": "boolean",
"default": "false",
"description": "Current focus state as a boolean."
"type": "any"
}
],
"methods": []
@ -11070,14 +11068,6 @@
"default": "",
"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",
"optional": true,
@ -11133,14 +11123,6 @@
"default": "false",
"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",
"optional": false,
@ -11190,19 +11172,6 @@
"returnType": "void",
"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",
"parameters": [
@ -11217,17 +11186,30 @@
"description": "Callback to invoke on value change."
},
{
"name": "input",
"name": "focus",
"parameters": [
{
"name": "value",
"name": "event",
"optional": false,
"type": "boolean",
"description": "New value."
"type": "Event",
"description": "Browser event."
}
],
"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."
}
]
}