Update API doc

pull/3938/head
GitHub Actions Bot 2023-05-05 12:54:14 +00:00
parent 24538f0fd0
commit 409005b671
1 changed files with 44 additions and 0 deletions

View File

@ -19954,6 +19954,34 @@
"methodDescription": "Defines methods that can be accessed by the component's reference.", "methodDescription": "Defines methods that can be accessed by the component's reference.",
"typeDescription": "Defines the custom types used by the module.", "typeDescription": "Defines the custom types used by the module.",
"values": { "values": {
"InputTextPassThroughOptions": {
"description": "Custom passthrough(pt) options.",
"relatedProp": "InputTextProps.pt",
"props": [
{
"name": "root",
"optional": true,
"readonly": false,
"type": "InputTextPassThroughOptionType",
"default": "",
"description": "Uses to pass attributes to the root's DOM element."
}
],
"methods": []
},
"InputTextPassThroughAttributes": {
"description": "Custom passthrough attributes for each DOM elements",
"relatedProp": "",
"props": [
{
"name": "[key: string]",
"optional": false,
"readonly": false,
"type": "any"
}
],
"methods": []
},
"InputTextProps": { "InputTextProps": {
"description": "Defines valid properties in InputText component.", "description": "Defines valid properties in InputText component.",
"relatedProp": "", "relatedProp": "",
@ -19965,6 +19993,14 @@
"type": "Nullable<string>", "type": "Nullable<string>",
"default": "", "default": "",
"description": "Value of the component." "description": "Value of the component."
},
{
"name": "pt",
"optional": true,
"readonly": false,
"type": "InputTextPassThroughOptions",
"default": "",
"description": "Uses to pass attributes to DOM elements inside the component."
} }
], ],
"methods": [], "methods": [],
@ -19997,6 +20033,14 @@
] ]
} }
} }
},
"types": {
"description": "Defines the custom types used by the module.",
"values": {
"InputTextPassThroughOptionType": {
"values": "InputTextPassThroughAttributes | null | undefined"
}
}
} }
}, },
"knob": { "knob": {