Update API doc
parent
e1c7806c2d
commit
e0b97b693d
|
@ -24984,6 +24984,34 @@
|
|||
"methodDescription": "Defines methods that can be accessed by the component's reference.",
|
||||
"typeDescription": "Defines the custom types used by the module.",
|
||||
"values": {
|
||||
"InputTextPassThroughMethodOptions": {
|
||||
"description": "Custom passthrough(pt) option method.",
|
||||
"relatedProp": "",
|
||||
"props": [
|
||||
{
|
||||
"name": "instance",
|
||||
"optional": false,
|
||||
"readonly": false,
|
||||
"type": "any",
|
||||
"default": ""
|
||||
},
|
||||
{
|
||||
"name": "props",
|
||||
"optional": false,
|
||||
"readonly": false,
|
||||
"type": "InputTextProps",
|
||||
"default": ""
|
||||
},
|
||||
{
|
||||
"name": "context",
|
||||
"optional": false,
|
||||
"readonly": false,
|
||||
"type": "InputTextContext",
|
||||
"default": ""
|
||||
}
|
||||
],
|
||||
"methods": []
|
||||
},
|
||||
"InputTextPassThroughOptions": {
|
||||
"description": "Custom passthrough(pt) options.",
|
||||
"relatedProp": "InputTextProps.pt",
|
||||
|
@ -25020,6 +25048,29 @@
|
|||
],
|
||||
"methods": []
|
||||
},
|
||||
"InputTextContext": {
|
||||
"description": "Defines current options in InputText component.",
|
||||
"relatedProp": "",
|
||||
"props": [
|
||||
{
|
||||
"name": "filled",
|
||||
"optional": false,
|
||||
"readonly": false,
|
||||
"type": "boolean",
|
||||
"default": "false",
|
||||
"description": "Current filled state of the component as a boolean."
|
||||
},
|
||||
{
|
||||
"name": "disabled",
|
||||
"optional": false,
|
||||
"readonly": false,
|
||||
"type": "boolean",
|
||||
"default": "false",
|
||||
"description": "Current disabled state of the component as a boolean."
|
||||
}
|
||||
],
|
||||
"methods": []
|
||||
},
|
||||
"InputTextProps": {
|
||||
"description": "Defines valid properties in InputText component.",
|
||||
"relatedProp": "",
|
||||
|
@ -25092,7 +25143,7 @@
|
|||
"description": "Defines the custom types used by the module.",
|
||||
"values": {
|
||||
"InputTextPassThroughOptionType": {
|
||||
"values": "InputTextPassThroughAttributes | null | undefined"
|
||||
"values": "InputTextPassThroughAttributes | (options: InputTextPassThroughMethodOptions) => undefined | string | null | undefined"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -39638,6 +39689,13 @@
|
|||
"readonly": false,
|
||||
"type": "TextareaProps",
|
||||
"default": ""
|
||||
},
|
||||
{
|
||||
"name": "context",
|
||||
"optional": false,
|
||||
"readonly": false,
|
||||
"type": "TextareaContext",
|
||||
"default": ""
|
||||
}
|
||||
],
|
||||
"methods": []
|
||||
|
@ -39678,6 +39736,29 @@
|
|||
],
|
||||
"methods": []
|
||||
},
|
||||
"TextareaContext": {
|
||||
"description": "Defines current options in Textarea component.",
|
||||
"relatedProp": "",
|
||||
"props": [
|
||||
{
|
||||
"name": "filled",
|
||||
"optional": false,
|
||||
"readonly": false,
|
||||
"type": "boolean",
|
||||
"default": "false",
|
||||
"description": "Current filled state of the component as a boolean."
|
||||
},
|
||||
{
|
||||
"name": "disabled",
|
||||
"optional": false,
|
||||
"readonly": false,
|
||||
"type": "boolean",
|
||||
"default": "false",
|
||||
"description": "Current disabled state of the component as a boolean."
|
||||
}
|
||||
],
|
||||
"methods": []
|
||||
},
|
||||
"TextareaProps": {
|
||||
"description": "Defines valid properties in Textarea component. In addition to these, all properties of TextareaHTMLAttributes can be used in this component.",
|
||||
"relatedProp": "",
|
||||
|
|
Loading…
Reference in New Issue