|
11 | 11 | "BCheckboxGroup", |
12 | 12 | "BCheckGroup" |
13 | 13 | ], |
| 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 | + ], |
14 | 44 | "slots": [ |
15 | 45 | { |
16 | 46 | "name": "first", |
|
48 | 78 | "BCheckbox", |
49 | 79 | "BCheck" |
50 | 80 | ], |
| 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 | + ], |
51 | 115 | "events": [ |
52 | 116 | { |
53 | 117 | "event": "input", |
|
0 commit comments