diff --git a/COMPONENT_INDEX.md b/COMPONENT_INDEX.md
index 85afc1f5..20ce7bca 100644
--- a/COMPONENT_INDEX.md
+++ b/COMPONENT_INDEX.md
@@ -462,8 +462,9 @@ None.
| Prop name | Kind | Reactive | Type | Default value | Description |
| :------------ | :--------------- | :------- | :---------------------------------------- | ------------------------------------------------ | ------------------------------------------------- |
| ref | let
| Yes | null | HTMLInputElement
| null
| Obtain a reference to the input HTML element |
+| group | let
| Yes | any[]
| []
| Specify the bound group |
| checked | let
| Yes | boolean
| false
| Specify whether the checkbox is checked |
-| value | let
| No | string
| ""
| Specify the value of the checkbox |
+| value | let
| No | any
| ""
| Specify the value of the checkbox |
| indeterminate | let
| No | boolean
| false
| Specify whether the checkbox is indeterminate |
| skeleton | let
| No | boolean
| false
| Set to `true` to display the skeleton state |
| readonly | let
| No | boolean
| false
| Set to `true` for the checkbox to be read-only |
diff --git a/docs/src/COMPONENT_API.json b/docs/src/COMPONENT_API.json
index f24a8600..69c3bfac 100644
--- a/docs/src/COMPONENT_API.json
+++ b/docs/src/COMPONENT_API.json
@@ -712,7 +712,7 @@
"name": "value",
"kind": "let",
"description": "Specify the value of the checkbox",
- "type": "string",
+ "type": "any",
"value": "\"\"",
"isFunction": false,
"isFunctionDeclaration": false,
@@ -730,6 +730,17 @@
"constant": false,
"reactive": true
},
+ {
+ "name": "group",
+ "kind": "let",
+ "description": "Specify the bound group",
+ "type": "any[]",
+ "value": "[]",
+ "isFunction": false,
+ "isFunctionDeclaration": false,
+ "constant": false,
+ "reactive": true
+ },
{
"name": "indeterminate",
"kind": "let",
diff --git a/docs/src/pages/components/Checkbox.svx b/docs/src/pages/components/Checkbox.svx
index 8bbd26c4..70b163a9 100644
--- a/docs/src/pages/components/Checkbox.svx
+++ b/docs/src/pages/components/Checkbox.svx
@@ -23,6 +23,12 @@