@viasat/beam-web-components 2.61.0 → 2.62.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/custom-elements.json +830 -830
- package/package.json +6 -6
- package/vscode.html-custom-data.json +150 -150
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@viasat/beam-web-components",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.62.0",
|
|
4
4
|
"description": "Framework-agnostic web components for the Beam Design System built with Lit, compatible with Angular, Vue, Svelte, and vanilla JavaScript",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Viasat",
|
|
@@ -64,11 +64,11 @@
|
|
|
64
64
|
"access": "public"
|
|
65
65
|
},
|
|
66
66
|
"dependencies": {
|
|
67
|
-
"@viasat/beam-fonts": "2.
|
|
68
|
-
"@viasat/beam-shared": "2.
|
|
69
|
-
"@viasat/beam-styles": "2.
|
|
70
|
-
"@viasat/beam-tokens": "2.
|
|
71
|
-
"@viasat/beam-icons": "2.
|
|
67
|
+
"@viasat/beam-fonts": "2.62.0",
|
|
68
|
+
"@viasat/beam-shared": "2.62.0",
|
|
69
|
+
"@viasat/beam-styles": "2.62.0",
|
|
70
|
+
"@viasat/beam-tokens": "2.62.0",
|
|
71
|
+
"@viasat/beam-icons": "2.62.0",
|
|
72
72
|
"clsx": "^1.2.1",
|
|
73
73
|
"lit": "^3.1.0",
|
|
74
74
|
"@lit/context": "^1.1.1",
|
|
@@ -61,6 +61,79 @@
|
|
|
61
61
|
}
|
|
62
62
|
]
|
|
63
63
|
},
|
|
64
|
+
{
|
|
65
|
+
"name": "bm-alert",
|
|
66
|
+
"description": "`bm-alert`\n\n### Attributes:\n- **heading** - Specify the heading text for Alert\n- **body** - Specify the body text for Alert\n- **size** - Specify the size of the Alert\n- **fullWidth** - Specify if the Alert has no border radius\n- **theme** - Specify the theme of the Alert. By default it inherits the theme from the parent\n- **appearance** - Specify the appearance of the Alert\n- **hidden** - Specify if the Alert is hidden\n- **hideIcon** - Specify if the icon displays on the Alert\n- **dismissible** - Specify if the Alert can be dismissed\n- **disableAutoFocus** - Prevent autofocus on show\n- **disableCloseOnEscape** - Prevent Escape from closing\n---\n\n\n### **Events:**\n - **bm-dismiss** - Dispatched when the Alert has been dismissed\n\n### **Slots:**\n - **icon** - Specify a different icon for the Alert\n- **heading** - Specify the heading text for Alert or pass the `heading` attribute to set the heading\n- **body** - Specify the body text for Alert or pass the `body` attribute to set the body\n- **actions** - Specify if actions display on the Alert",
|
|
67
|
+
"attributes": [
|
|
68
|
+
{
|
|
69
|
+
"name": "heading",
|
|
70
|
+
"description": "Specify the heading text for Alert",
|
|
71
|
+
"values": []
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"name": "body",
|
|
75
|
+
"description": "Specify the body text for Alert",
|
|
76
|
+
"values": []
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "size",
|
|
80
|
+
"description": "Specify the size of the Alert",
|
|
81
|
+
"values": [{ "name": "sm" }, { "name": "md" }]
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"name": "fullWidth",
|
|
85
|
+
"description": "Specify if the Alert has no border radius",
|
|
86
|
+
"values": []
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"name": "theme",
|
|
90
|
+
"description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
|
|
91
|
+
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"name": "appearance",
|
|
95
|
+
"description": "Specify the appearance of the Alert",
|
|
96
|
+
"values": [
|
|
97
|
+
{ "name": "infoPrimary" },
|
|
98
|
+
{ "name": "infoSecondary" },
|
|
99
|
+
{ "name": "positive" },
|
|
100
|
+
{ "name": "warning" },
|
|
101
|
+
{ "name": "negative" }
|
|
102
|
+
]
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"name": "hidden",
|
|
106
|
+
"description": "Specify if the Alert is hidden",
|
|
107
|
+
"values": []
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"name": "hideIcon",
|
|
111
|
+
"description": "Specify if the icon displays on the Alert",
|
|
112
|
+
"values": []
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"name": "dismissible",
|
|
116
|
+
"description": "Specify if the Alert can be dismissed",
|
|
117
|
+
"values": []
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"name": "disableAutoFocus",
|
|
121
|
+
"description": "Prevent autofocus on show",
|
|
122
|
+
"values": []
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"name": "disableCloseOnEscape",
|
|
126
|
+
"description": "Prevent Escape from closing",
|
|
127
|
+
"values": []
|
|
128
|
+
}
|
|
129
|
+
],
|
|
130
|
+
"references": [
|
|
131
|
+
{
|
|
132
|
+
"name": "Storybook",
|
|
133
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-alert"
|
|
134
|
+
}
|
|
135
|
+
]
|
|
136
|
+
},
|
|
64
137
|
{
|
|
65
138
|
"name": "bm-avatar",
|
|
66
139
|
"description": "`bm-avatar`\n\n### Attributes:\n- **appearance** - Specify the appearance of the Avatar\n- **name** - Specify a name to display initials in the Avatar\n- **src** - Pass an image to the Avatar\n- **alt** - Specify alt for image\n- **size** - Specify the size of the Avatar\n- **disabled** - Specify if the Avatar is disabled\n- **shape** - Specify the shape of the Avatar\n- **isInteractive** - If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer\n- **isFocusable** - If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable\n- **withBorder** \n---\n\n\n### **Slots:**\n - **icon** - Customize the default icon",
|
|
@@ -160,37 +233,17 @@
|
|
|
160
233
|
]
|
|
161
234
|
},
|
|
162
235
|
{
|
|
163
|
-
"name": "bm-
|
|
164
|
-
"description": "`bm-
|
|
236
|
+
"name": "bm-badge-dot",
|
|
237
|
+
"description": "`bm-badge-dot`\n\n### Attributes:\n- **theme** - Specify the theme of the BadgeDot. By default it inherits the theme from the parent\n- **appearance** - Specify the appearance of the BadgeDot\n- **emphasis** - Specify the emphasis of the BadgeDot\n- **overrideDotColor** - Overrides default dot color\n---\n\n\n### **Slots:**\n - **default** - Provide text for the BadgeDot",
|
|
165
238
|
"attributes": [
|
|
166
|
-
{
|
|
167
|
-
"name": "heading",
|
|
168
|
-
"description": "Specify the heading text for Alert",
|
|
169
|
-
"values": []
|
|
170
|
-
},
|
|
171
|
-
{
|
|
172
|
-
"name": "body",
|
|
173
|
-
"description": "Specify the body text for Alert",
|
|
174
|
-
"values": []
|
|
175
|
-
},
|
|
176
|
-
{
|
|
177
|
-
"name": "size",
|
|
178
|
-
"description": "Specify the size of the Alert",
|
|
179
|
-
"values": [{ "name": "sm" }, { "name": "md" }]
|
|
180
|
-
},
|
|
181
|
-
{
|
|
182
|
-
"name": "fullWidth",
|
|
183
|
-
"description": "Specify if the Alert has no border radius",
|
|
184
|
-
"values": []
|
|
185
|
-
},
|
|
186
239
|
{
|
|
187
240
|
"name": "theme",
|
|
188
|
-
"description": "Specify the theme of the
|
|
241
|
+
"description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
|
|
189
242
|
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
190
243
|
},
|
|
191
244
|
{
|
|
192
245
|
"name": "appearance",
|
|
193
|
-
"description": "Specify the appearance of the
|
|
246
|
+
"description": "Specify the appearance of the BadgeDot",
|
|
194
247
|
"values": [
|
|
195
248
|
{ "name": "infoPrimary" },
|
|
196
249
|
{ "name": "infoSecondary" },
|
|
@@ -200,35 +253,20 @@
|
|
|
200
253
|
]
|
|
201
254
|
},
|
|
202
255
|
{
|
|
203
|
-
"name": "
|
|
204
|
-
"description": "Specify
|
|
205
|
-
"values": []
|
|
206
|
-
},
|
|
207
|
-
{
|
|
208
|
-
"name": "hideIcon",
|
|
209
|
-
"description": "Specify if the icon displays on the Alert",
|
|
210
|
-
"values": []
|
|
211
|
-
},
|
|
212
|
-
{
|
|
213
|
-
"name": "dismissible",
|
|
214
|
-
"description": "Specify if the Alert can be dismissed",
|
|
215
|
-
"values": []
|
|
216
|
-
},
|
|
217
|
-
{
|
|
218
|
-
"name": "disableAutoFocus",
|
|
219
|
-
"description": "Prevent autofocus on show",
|
|
220
|
-
"values": []
|
|
256
|
+
"name": "emphasis",
|
|
257
|
+
"description": "Specify the emphasis of the BadgeDot",
|
|
258
|
+
"values": [{ "name": "strong" }, { "name": "subtle" }]
|
|
221
259
|
},
|
|
222
260
|
{
|
|
223
|
-
"name": "
|
|
224
|
-
"description": "
|
|
261
|
+
"name": "overrideDotColor",
|
|
262
|
+
"description": "Overrides default dot color",
|
|
225
263
|
"values": []
|
|
226
264
|
}
|
|
227
265
|
],
|
|
228
266
|
"references": [
|
|
229
267
|
{
|
|
230
268
|
"name": "Storybook",
|
|
231
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-
|
|
269
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-badgedot"
|
|
232
270
|
}
|
|
233
271
|
]
|
|
234
272
|
},
|
|
@@ -275,44 +313,6 @@
|
|
|
275
313
|
}
|
|
276
314
|
]
|
|
277
315
|
},
|
|
278
|
-
{
|
|
279
|
-
"name": "bm-badge-dot",
|
|
280
|
-
"description": "`bm-badge-dot`\n\n### Attributes:\n- **theme** - Specify the theme of the BadgeDot. By default it inherits the theme from the parent\n- **appearance** - Specify the appearance of the BadgeDot\n- **emphasis** - Specify the emphasis of the BadgeDot\n- **overrideDotColor** - Overrides default dot color\n---\n\n\n### **Slots:**\n - **default** - Provide text for the BadgeDot",
|
|
281
|
-
"attributes": [
|
|
282
|
-
{
|
|
283
|
-
"name": "theme",
|
|
284
|
-
"description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
|
|
285
|
-
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
286
|
-
},
|
|
287
|
-
{
|
|
288
|
-
"name": "appearance",
|
|
289
|
-
"description": "Specify the appearance of the BadgeDot",
|
|
290
|
-
"values": [
|
|
291
|
-
{ "name": "infoPrimary" },
|
|
292
|
-
{ "name": "infoSecondary" },
|
|
293
|
-
{ "name": "positive" },
|
|
294
|
-
{ "name": "warning" },
|
|
295
|
-
{ "name": "negative" }
|
|
296
|
-
]
|
|
297
|
-
},
|
|
298
|
-
{
|
|
299
|
-
"name": "emphasis",
|
|
300
|
-
"description": "Specify the emphasis of the BadgeDot",
|
|
301
|
-
"values": [{ "name": "strong" }, { "name": "subtle" }]
|
|
302
|
-
},
|
|
303
|
-
{
|
|
304
|
-
"name": "overrideDotColor",
|
|
305
|
-
"description": "Overrides default dot color",
|
|
306
|
-
"values": []
|
|
307
|
-
}
|
|
308
|
-
],
|
|
309
|
-
"references": [
|
|
310
|
-
{
|
|
311
|
-
"name": "Storybook",
|
|
312
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-badgedot"
|
|
313
|
-
}
|
|
314
|
-
]
|
|
315
|
-
},
|
|
316
316
|
{
|
|
317
317
|
"name": "bm-box",
|
|
318
318
|
"description": "`bm-box`\n\n### Attributes:\n- **backgroundColor** - Specify the background color of a Box\n- **borderColor** - Specify the border color of a Box\n- **borderWidth** - Specify the border width of a Box\n- **borderRadius** - Specify the border radius of a Box\n- **px** - Specify before and after padding of a Box\n- **py** - Specify top and bottom padding of a Box\n- **pTop** - Specify top padding of a Box\n- **pBottom** - Specify bottom padding of a Box\n- **pBefore** - Specify before padding of a Box\n- **pAfter** - Specify after padding of a Box\n- **mx** - Specify before and after margin of a Box\n- **my** - Specify top and bottom margin of a Box\n- **mTop** - Specify top margin of a Box\n- **mBottom** - Specify bottom margin of a Box\n- **mBefore** - Specify before margin of a Box\n- **mAfter** - Specify after margin of a Box\n- **m** - Specify all margin\n- **p** - Specify all padding\n- **gap** - Specify gap between child elements\n- **shadow** - Specify if a Box has a shadow\n---\n\n\n### **Slots:**\n - **default** - Provide content for the Box",
|
|
@@ -2261,6 +2261,58 @@
|
|
|
2261
2261
|
}
|
|
2262
2262
|
]
|
|
2263
2263
|
},
|
|
2264
|
+
{
|
|
2265
|
+
"name": "bm-radio-button",
|
|
2266
|
+
"description": "`bm-radio-button`\n\n### Attributes:\n- **label** - Specify the text for the label\n- **error** - Specify error text and display error state of a RadioButton\n- **readOnly** - Specify if RadioButton displays in a read-only state\n- **disabled** - Specify if RadioButton displays in a disabled state\n- **theme** - Specify the theme of the RadioButton. By default it inherits the theme from the parent\n- **value** - The value attribute for the input element\n- **checked** - The checked attribute for the input element\n- **onKeyDown** - A user-defined function to handle keydown events\n---\n",
|
|
2267
|
+
"attributes": [
|
|
2268
|
+
{
|
|
2269
|
+
"name": "label",
|
|
2270
|
+
"description": "Specify the text for the label",
|
|
2271
|
+
"values": []
|
|
2272
|
+
},
|
|
2273
|
+
{
|
|
2274
|
+
"name": "error",
|
|
2275
|
+
"description": "Specify error text and display error state of a RadioButton",
|
|
2276
|
+
"values": []
|
|
2277
|
+
},
|
|
2278
|
+
{
|
|
2279
|
+
"name": "readOnly",
|
|
2280
|
+
"description": "Specify if RadioButton displays in a read-only state",
|
|
2281
|
+
"values": []
|
|
2282
|
+
},
|
|
2283
|
+
{
|
|
2284
|
+
"name": "disabled",
|
|
2285
|
+
"description": "Specify if RadioButton displays in a disabled state",
|
|
2286
|
+
"values": []
|
|
2287
|
+
},
|
|
2288
|
+
{
|
|
2289
|
+
"name": "theme",
|
|
2290
|
+
"description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
|
|
2291
|
+
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
2292
|
+
},
|
|
2293
|
+
{
|
|
2294
|
+
"name": "value",
|
|
2295
|
+
"description": "The value attribute for the input element",
|
|
2296
|
+
"values": []
|
|
2297
|
+
},
|
|
2298
|
+
{
|
|
2299
|
+
"name": "checked",
|
|
2300
|
+
"description": "The checked attribute for the input element",
|
|
2301
|
+
"values": []
|
|
2302
|
+
},
|
|
2303
|
+
{
|
|
2304
|
+
"name": "onKeyDown",
|
|
2305
|
+
"description": "A user-defined function to handle keydown events",
|
|
2306
|
+
"values": [{ "name": "(event: KeyboardEvent) => void" }]
|
|
2307
|
+
}
|
|
2308
|
+
],
|
|
2309
|
+
"references": [
|
|
2310
|
+
{
|
|
2311
|
+
"name": "Storybook",
|
|
2312
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-radiobutton"
|
|
2313
|
+
}
|
|
2314
|
+
]
|
|
2315
|
+
},
|
|
2264
2316
|
{
|
|
2265
2317
|
"name": "bm-native-select",
|
|
2266
2318
|
"description": "`bm-native-select`\n---\n\n\n### **Slots:**\n - **slot** - Specify Options for NativeSelect\n- **label** - Specify Label for NativeSelect\n- **helper-text** - Specify HelperText for NativeSelect",
|
|
@@ -2332,54 +2384,45 @@
|
|
|
2332
2384
|
]
|
|
2333
2385
|
},
|
|
2334
2386
|
{
|
|
2335
|
-
"name": "bm-
|
|
2336
|
-
"description": "`bm-
|
|
2387
|
+
"name": "bm-switch",
|
|
2388
|
+
"description": "`bm-switch`\n\n### Attributes:\n- **onText** - Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.\n- **offText** - Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.\n- **textPosition** - Specify the position of the side label\n- **readOnly** - Specify if Switch displays in a read-only state\n- **disabled** - Specify if Switch displays in a disabled state\n- **checked** \n- **value** - The value attribute for the input element\n---\n\n\n### **Slots:**\n - **onText** - Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.\n- **offText** - Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
|
|
2337
2389
|
"attributes": [
|
|
2338
2390
|
{
|
|
2339
|
-
"name": "
|
|
2340
|
-
"description": "Specify
|
|
2391
|
+
"name": "onText",
|
|
2392
|
+
"description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
|
|
2341
2393
|
"values": []
|
|
2342
2394
|
},
|
|
2343
2395
|
{
|
|
2344
|
-
"name": "
|
|
2345
|
-
"description": "Specify
|
|
2396
|
+
"name": "offText",
|
|
2397
|
+
"description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
|
|
2346
2398
|
"values": []
|
|
2347
2399
|
},
|
|
2400
|
+
{
|
|
2401
|
+
"name": "textPosition",
|
|
2402
|
+
"description": "Specify the position of the side label",
|
|
2403
|
+
"values": [{ "name": "before" }, { "name": "after" }]
|
|
2404
|
+
},
|
|
2348
2405
|
{
|
|
2349
2406
|
"name": "readOnly",
|
|
2350
|
-
"description": "Specify if
|
|
2407
|
+
"description": "Specify if Switch displays in a read-only state",
|
|
2351
2408
|
"values": []
|
|
2352
2409
|
},
|
|
2353
2410
|
{
|
|
2354
2411
|
"name": "disabled",
|
|
2355
|
-
"description": "Specify if
|
|
2412
|
+
"description": "Specify if Switch displays in a disabled state",
|
|
2356
2413
|
"values": []
|
|
2357
2414
|
},
|
|
2358
|
-
{
|
|
2359
|
-
"name": "theme",
|
|
2360
|
-
"description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
|
|
2361
|
-
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
2362
|
-
},
|
|
2415
|
+
{ "name": "checked", "values": [] },
|
|
2363
2416
|
{
|
|
2364
2417
|
"name": "value",
|
|
2365
2418
|
"description": "The value attribute for the input element",
|
|
2366
2419
|
"values": []
|
|
2367
|
-
},
|
|
2368
|
-
{
|
|
2369
|
-
"name": "checked",
|
|
2370
|
-
"description": "The checked attribute for the input element",
|
|
2371
|
-
"values": []
|
|
2372
|
-
},
|
|
2373
|
-
{
|
|
2374
|
-
"name": "onKeyDown",
|
|
2375
|
-
"description": "A user-defined function to handle keydown events",
|
|
2376
|
-
"values": [{ "name": "(event: KeyboardEvent) => void" }]
|
|
2377
2420
|
}
|
|
2378
2421
|
],
|
|
2379
2422
|
"references": [
|
|
2380
2423
|
{
|
|
2381
2424
|
"name": "Storybook",
|
|
2382
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-
|
|
2425
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-switch"
|
|
2383
2426
|
}
|
|
2384
2427
|
]
|
|
2385
2428
|
},
|
|
@@ -2473,49 +2516,6 @@
|
|
|
2473
2516
|
}
|
|
2474
2517
|
]
|
|
2475
2518
|
},
|
|
2476
|
-
{
|
|
2477
|
-
"name": "bm-switch",
|
|
2478
|
-
"description": "`bm-switch`\n\n### Attributes:\n- **onText** - Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.\n- **offText** - Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.\n- **textPosition** - Specify the position of the side label\n- **readOnly** - Specify if Switch displays in a read-only state\n- **disabled** - Specify if Switch displays in a disabled state\n- **checked** \n- **value** - The value attribute for the input element\n---\n\n\n### **Slots:**\n - **onText** - Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.\n- **offText** - Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
|
|
2479
|
-
"attributes": [
|
|
2480
|
-
{
|
|
2481
|
-
"name": "onText",
|
|
2482
|
-
"description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
|
|
2483
|
-
"values": []
|
|
2484
|
-
},
|
|
2485
|
-
{
|
|
2486
|
-
"name": "offText",
|
|
2487
|
-
"description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
|
|
2488
|
-
"values": []
|
|
2489
|
-
},
|
|
2490
|
-
{
|
|
2491
|
-
"name": "textPosition",
|
|
2492
|
-
"description": "Specify the position of the side label",
|
|
2493
|
-
"values": [{ "name": "before" }, { "name": "after" }]
|
|
2494
|
-
},
|
|
2495
|
-
{
|
|
2496
|
-
"name": "readOnly",
|
|
2497
|
-
"description": "Specify if Switch displays in a read-only state",
|
|
2498
|
-
"values": []
|
|
2499
|
-
},
|
|
2500
|
-
{
|
|
2501
|
-
"name": "disabled",
|
|
2502
|
-
"description": "Specify if Switch displays in a disabled state",
|
|
2503
|
-
"values": []
|
|
2504
|
-
},
|
|
2505
|
-
{ "name": "checked", "values": [] },
|
|
2506
|
-
{
|
|
2507
|
-
"name": "value",
|
|
2508
|
-
"description": "The value attribute for the input element",
|
|
2509
|
-
"values": []
|
|
2510
|
-
}
|
|
2511
|
-
],
|
|
2512
|
-
"references": [
|
|
2513
|
-
{
|
|
2514
|
-
"name": "Storybook",
|
|
2515
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-switch"
|
|
2516
|
-
}
|
|
2517
|
-
]
|
|
2518
|
-
},
|
|
2519
2519
|
{
|
|
2520
2520
|
"name": "bm-checkbox-group",
|
|
2521
2521
|
"description": "\n---\n\n\n### **Slots:**\n - **label** - Add label text to the InputChoiceGroup\n- **helperText** - Add helper text to the InputChoiceGroup",
|