Update API doc

pull/3938/head
GitHub Actions Bot 2023-05-09 09:17:59 +00:00
parent 77888cca6f
commit a40dba06d4
1 changed files with 63 additions and 25 deletions

View File

@ -38116,6 +38116,13 @@
"readonly": false, "readonly": false,
"type": "TriStateCheckboxState", "type": "TriStateCheckboxState",
"default": "" "default": ""
},
{
"name": "context",
"optional": false,
"readonly": false,
"type": "TriStateCheckboxContext",
"default": ""
} }
], ],
"methods": [] "methods": []
@ -38133,31 +38140,7 @@
"description": "Uses to pass attributes to the root's DOM element." "description": "Uses to pass attributes to the root's DOM element."
}, },
{ {
"name": "inputAria", "name": "checbox",
"optional": true,
"readonly": false,
"type": "TriStateCheckboxPassThroughOptionType",
"default": "",
"description": "Uses to pass attributes to the input aria's DOM element."
},
{
"name": "input",
"optional": true,
"readonly": false,
"type": "TriStateCheckboxPassThroughOptionType",
"default": "",
"description": "Uses to pass attributes to the input's DOM element."
},
{
"name": "srOnlyAria",
"optional": true,
"readonly": false,
"type": "TriStateCheckboxPassThroughOptionType",
"default": "",
"description": "Uses to pass attributes to the sr only aria's DOM element."
},
{
"name": "checboxBox",
"optional": true, "optional": true,
"readonly": false, "readonly": false,
"type": "TriStateCheckboxPassThroughOptionType", "type": "TriStateCheckboxPassThroughOptionType",
@ -38187,6 +38170,30 @@
"type": "TriStateCheckboxPassThroughOptionType", "type": "TriStateCheckboxPassThroughOptionType",
"default": "", "default": "",
"description": "Uses to pass attributes to the nullable icon's DOM element." "description": "Uses to pass attributes to the nullable icon's DOM element."
},
{
"name": "hiddenInputWrapper",
"optional": true,
"readonly": false,
"type": "TriStateCheckboxPassThroughOptionType",
"default": "",
"description": "Uses to pass attributes to the hidden input wrapper's DOM element."
},
{
"name": "hiddenInput",
"optional": true,
"readonly": false,
"type": "TriStateCheckboxPassThroughOptionType",
"default": "",
"description": "Uses to pass attributes to the hidden input's DOM element."
},
{
"name": "srOnlyAria",
"optional": true,
"readonly": false,
"type": "TriStateCheckboxPassThroughOptionType",
"default": "",
"description": "Uses to pass attributes to the sr only aria's DOM element."
} }
], ],
"methods": [] "methods": []
@ -38219,6 +38226,37 @@
], ],
"methods": [] "methods": []
}, },
"TriStateCheckboxContext": {
"description": "Defines current options in TriStateCheckbox component.",
"relatedProp": "",
"props": [
{
"name": "active",
"optional": false,
"readonly": false,
"type": "boolean",
"default": "false",
"description": "Current active state as a boolean."
},
{
"name": "focused",
"optional": false,
"readonly": false,
"type": "boolean",
"default": "false",
"description": "Current focused state as a boolean."
},
{
"name": "disabled",
"optional": false,
"readonly": false,
"type": "boolean",
"default": "false",
"description": "Current disabled state as a boolean."
}
],
"methods": []
},
"TriStateCheckboxProps": { "TriStateCheckboxProps": {
"description": "Defines valid properties in TriStateCheckbox component.", "description": "Defines valid properties in TriStateCheckbox component.",
"relatedProp": "", "relatedProp": "",