Update API doc

pull/3938/head
GitHub Actions Bot 2023-05-05 11:09:21 +00:00
parent 003c8b7127
commit 9685f1b05a
1 changed files with 44 additions and 0 deletions

View File

@ -19164,6 +19164,34 @@
"methodDescription": "Defines methods that can be accessed by the component's reference.",
"typeDescription": "Defines the custom types used by the module.",
"values": {
"InputMaskPassThroughOptions": {
"description": "Custom passthrough(pt) options.",
"relatedProp": "InputMaskProps.pt",
"props": [
{
"name": "root",
"optional": true,
"readonly": false,
"type": "InputMaskPassThroughOptionType",
"default": "",
"description": "Uses to pass attributes to the root's DOM element."
}
],
"methods": []
},
"InputMaskPassThroughAttributes": {
"description": "Custom passthrough attributes for each DOM elements",
"relatedProp": "",
"props": [
{
"name": "[key: string]",
"optional": false,
"readonly": false,
"type": "any"
}
],
"methods": []
},
"InputMaskProps": {
"description": "Defines valid properties in InputMask component.",
"relatedProp": "",
@ -19215,6 +19243,14 @@
"type": "boolean",
"default": "false",
"description": "Whether the items are clickable or not."
},
{
"name": "pt",
"optional": true,
"readonly": false,
"type": "InputMaskPassThroughOptions",
"default": "",
"description": "Uses to pass attributes to DOM elements inside the component."
}
],
"methods": []
@ -19303,6 +19339,14 @@
]
}
}
},
"types": {
"description": "Defines the custom types used by the module.",
"values": {
"InputMaskPassThroughOptionType": {
"values": "InputMaskPassThroughAttributes | null | undefined"
}
}
}
},
"inputnumber": {