From c8a856dc9e167dc9a6507f08d1cc940ec6ff9d5b Mon Sep 17 00:00:00 2001
From: GitHub Actions Bot <>
Date: Wed, 24 May 2023 14:40:42 +0000
Subject: [PATCH] Update API doc
---
doc/common/apidoc/index.json | 32 +++++++++++++++++++++++++++++---
1 file changed, 29 insertions(+), 3 deletions(-)
diff --git a/doc/common/apidoc/index.json b/doc/common/apidoc/index.json
index 23a3bf73f..4af74b5ec 100644
--- a/doc/common/apidoc/index.json
+++ b/doc/common/apidoc/index.json
@@ -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 class: string, // Style class of the icon.\n }"
+ }
+ ],
"returnType": "VNode[]",
"description": "Custom check icon template."
},
{
"name": "uncheckicon",
- "parameters": [],
+ "parameters": [
+ {
+ "name": "scope",
+ "optional": false,
+ "type": "{\n \t class: string, // Style class of the icon.\n }"
+ }
+ ],
"returnType": "VNode[]",
"description": "Custom uncheck icon template."
},
{
"name": "nullableicon",
- "parameters": [],
+ "parameters": [
+ {
+ "name": "scope",
+ "optional": false,
+ "type": "{\n \t class: string, // Style class of the icon.\n }"
+ }
+ ],
"returnType": "VNode[]",
"description": "Custom nullable icon template."
}