Update API doc

pull/3997/head
GitHub Actions Bot 2023-05-24 14:40:42 +00:00
parent f46d5e3154
commit c8a856dc9e
1 changed files with 29 additions and 3 deletions

View File

@ -40325,6 +40325,14 @@
"type": "TriStateCheckboxPassThroughOptions",
"default": "",
"description": "Uses to pass attributes to DOM elements inside the component."
},
{
"name": "unstyled",
"optional": true,
"readonly": false,
"type": "boolean",
"default": "false",
"description": "When enabled, it removes component related styles in the core."
}
],
"methods": []
@ -40336,19 +40344,37 @@
"methods": [
{
"name": "checkicon",
"parameters": [],
"parameters": [
{
"name": "scope",
"optional": false,
"type": "{\n \t <b>class</b>: string, // Style class of the icon.\n }"
}
],
"returnType": "VNode<RendererNode, RendererElement, Object>[]",
"description": "Custom check icon template."
},
{
"name": "uncheckicon",
"parameters": [],
"parameters": [
{
"name": "scope",
"optional": false,
"type": "{\n \t <b>class</b>: string, // Style class of the icon.\n }"
}
],
"returnType": "VNode<RendererNode, RendererElement, Object>[]",
"description": "Custom uncheck icon template."
},
{
"name": "nullableicon",
"parameters": [],
"parameters": [
{
"name": "scope",
"optional": false,
"type": "{\n \t <b>class</b>: string, // Style class of the icon.\n }"
}
],
"returnType": "VNode<RendererNode, RendererElement, Object>[]",
"description": "Custom nullable icon template."
}