🌐 AI搜索 & 代理 主页
Skip to content

Commit faa11ee

Browse files
authored
Update package.json
1 parent b54e176 commit faa11ee

File tree

1 file changed

+64
-0
lines changed

1 file changed

+64
-0
lines changed

src/components/form-checkbox/package.json

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,36 @@
1111
"BCheckboxGroup",
1212
"BCheckGroup"
1313
],
14+
"props": [
15+
{
16+
"prop": "stacked",
17+
"description": "When set, renders teh checkbox group in stacked mode"
18+
},
19+
{
20+
"prop": "switches",
21+
"description": "When set, renders teh checkboxes in the group with switche stying"
22+
},
23+
{
24+
"prop": "buttons",
25+
"description": "When set, renderes teh checkboxes in this group with button styling"
26+
},
27+
{
28+
"prop": "buttonVariant",
29+
"description": "Specifies the Bootstrap contextual color theme variant the apply to the button style checkboxes"
30+
},
31+
{
32+
"prop": "checked",
33+
"description": "The current value of the checked checkboxes in the group. Must be an array when there are multiple checkboxes"
34+
},
35+
{
36+
"prop": "validated",
37+
"description": "When set, adds the Bootstrap class 'was-validated' to the group wrapper"
38+
},
39+
{
40+
"prop": "ariaInvalid",
41+
"description": "Sets the 'aria-invalid' attribute value on the wrapper element. When not provided, the 'state' prop will control the attribute"
42+
}
43+
],
1444
"slots": [
1545
{
1646
"name": "first",
@@ -48,6 +78,40 @@
4878
"BCheckbox",
4979
"BCheck"
5080
],
81+
"props": [
82+
{
83+
"prop": "value",
84+
"description": "Value returned when this checkbox is checked"
85+
},
86+
{
87+
"prop": "uncheckedValue",
88+
"description": "Value returned when this checkbox is unchecked. Note not applicable when multiple checkboxes bound to the same v-model array"
89+
},
90+
{
91+
"prop": "chacked",
92+
"description": "Current value of this checkbox. Must be an array when multile checkboxes bound to the same v-model"
93+
},
94+
{
95+
"prop": "inline",
96+
"description": "When set, renders the checkbox as an inline element rather than as a 100% width block"
97+
},
98+
{
99+
"prop": "switch",
100+
"description": "When set, renders teh checkbox with the appearence of a switch"
101+
},
102+
{
103+
"prop": "button",
104+
"description": "When set, renders teh checkbox with the appearence of a button"
105+
},
106+
{
107+
"prop": "buttonVariant",
108+
"description": "Applies on of Bootstrap's theme colors when in 'button' mode"
109+
},
110+
{
111+
"prop": "indeterminate",
112+
"description": "Renders the checkbox in an indeterminate state. Syncable via the .sync modifier"
113+
}
114+
],
51115
"events": [
52116
{
53117
"event": "input",

0 commit comments

Comments
 (0)