Update API doc

pull/4224/head
GitHub Actions Bot 2023-07-26 07:59:09 +00:00
parent ea6bd0fb3a
commit 4cd4ac5220
1 changed files with 53 additions and 1 deletions

View File

@ -24179,6 +24179,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": {
"InputMaskPassThroughMethodOptions": {
"description": "Custom passthrough(pt) option method.",
"relatedProp": "",
"props": [
{
"name": "instance",
"optional": false,
"readonly": false,
"type": "any",
"default": ""
},
{
"name": "props",
"optional": false,
"readonly": false,
"type": "InputMaskProps",
"default": ""
},
{
"name": "context",
"optional": false,
"readonly": false,
"type": "InputMaskContext",
"default": ""
}
],
"methods": []
},
"InputMaskPassThroughOptions": { "InputMaskPassThroughOptions": {
"description": "Custom passthrough(pt) options.", "description": "Custom passthrough(pt) options.",
"relatedProp": "InputMaskProps.pt", "relatedProp": "InputMaskProps.pt",
@ -24215,6 +24243,29 @@
], ],
"methods": [] "methods": []
}, },
"InputMaskContext": {
"description": "Defines current options in InputMask 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": []
},
"InputMaskProps": { "InputMaskProps": {
"description": "Defines valid properties in InputMask component.", "description": "Defines valid properties in InputMask component.",
"relatedProp": "", "relatedProp": "",
@ -24287,6 +24338,7 @@
"methods": [] "methods": []
}, },
"InputMaskSlots": { "InputMaskSlots": {
"description": "Defines valid slots in InputMask component.",
"relatedProp": "", "relatedProp": "",
"props": [], "props": [],
"methods": [] "methods": []
@ -24375,7 +24427,7 @@
"description": "Defines the custom types used by the module.", "description": "Defines the custom types used by the module.",
"values": { "values": {
"InputMaskPassThroughOptionType": { "InputMaskPassThroughOptionType": {
"values": "InputMaskPassThroughAttributes | null | undefined" "values": "InputMaskPassThroughAttributes | (options: InputMaskPassThroughMethodOptions) => undefined | string | null | undefined"
} }
} }
} }