@viasat/beam-web-components 2.15.0 → 2.17.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@viasat/beam-web-components",
3
- "version": "2.15.0",
3
+ "version": "2.17.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.15.0",
68
- "@viasat/beam-shared": "2.15.0",
69
- "@viasat/beam-styles": "2.15.0",
70
- "@viasat/beam-tokens": "2.15.0",
71
- "@viasat/beam-icons": "2.15.0",
67
+ "@viasat/beam-fonts": "2.17.0",
68
+ "@viasat/beam-shared": "2.17.0",
69
+ "@viasat/beam-styles": "2.17.0",
70
+ "@viasat/beam-tokens": "2.17.0",
71
+ "@viasat/beam-icons": "2.17.0",
72
72
  "clsx": "^1.2.1",
73
73
  "lit": "^3.1.0",
74
74
  "@lit/context": "^1.1.1",
@@ -159,87 +159,6 @@
159
159
  }
160
160
  ]
161
161
  },
162
- {
163
- "name": "bm-badge",
164
- "description": "`bm-badge`\n\n### Attributes:\n- **appearance** - Specify the appearance of the Badge\n- **theme** - Theme of the Badge\n- **size** - Specify the size of the Badge\n- **emphasis** - Specify the emphasis of the Badge\n- **hideIcon** - Hides Badge icon\n---\n\n\n### **Slots:**\n - **default** - Provide text for the Badge\n- **icon** - Specify a different icon for the Badge",
165
- "attributes": [
166
- {
167
- "name": "appearance",
168
- "description": "Specify the appearance of the Badge",
169
- "values": [
170
- { "name": "infoPrimary" },
171
- { "name": "infoSecondary" },
172
- { "name": "positive" },
173
- { "name": "warning" },
174
- { "name": "negative" }
175
- ]
176
- },
177
- {
178
- "name": "theme",
179
- "description": "Theme of the Badge",
180
- "values": [{ "name": "light" }, { "name": "dark" }]
181
- },
182
- {
183
- "name": "size",
184
- "description": "Specify the size of the Badge",
185
- "values": [{ "name": "sm" }, { "name": "md" }]
186
- },
187
- {
188
- "name": "emphasis",
189
- "description": "Specify the emphasis of the Badge",
190
- "values": [
191
- { "name": "strong" },
192
- { "name": "medium" },
193
- { "name": "subtle" }
194
- ]
195
- },
196
- { "name": "hideIcon", "description": "Hides Badge icon", "values": [] }
197
- ],
198
- "references": [
199
- {
200
- "name": "Storybook",
201
- "url": "https://web-components.beam.viasat.com/?path=/docs/components-badge"
202
- }
203
- ]
204
- },
205
- {
206
- "name": "bm-badge-dot",
207
- "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",
208
- "attributes": [
209
- {
210
- "name": "theme",
211
- "description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
212
- "values": [{ "name": "light" }, { "name": "dark" }]
213
- },
214
- {
215
- "name": "appearance",
216
- "description": "Specify the appearance of the BadgeDot",
217
- "values": [
218
- { "name": "infoPrimary" },
219
- { "name": "infoSecondary" },
220
- { "name": "positive" },
221
- { "name": "warning" },
222
- { "name": "negative" }
223
- ]
224
- },
225
- {
226
- "name": "emphasis",
227
- "description": "Specify the emphasis of the BadgeDot",
228
- "values": [{ "name": "strong" }, { "name": "subtle" }]
229
- },
230
- {
231
- "name": "overrideDotColor",
232
- "description": "Overrides default dot color",
233
- "values": []
234
- }
235
- ],
236
- "references": [
237
- {
238
- "name": "Storybook",
239
- "url": "https://web-components.beam.viasat.com/?path=/docs/components-badgedot"
240
- }
241
- ]
242
- },
243
162
  {
244
163
  "name": "bm-alert",
245
164
  "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",
@@ -313,6 +232,49 @@
313
232
  }
314
233
  ]
315
234
  },
235
+ {
236
+ "name": "bm-badge",
237
+ "description": "`bm-badge`\n\n### Attributes:\n- **appearance** - Specify the appearance of the Badge\n- **theme** - Theme of the Badge\n- **size** - Specify the size of the Badge\n- **emphasis** - Specify the emphasis of the Badge\n- **hideIcon** - Hides Badge icon\n---\n\n\n### **Slots:**\n - **default** - Provide text for the Badge\n- **icon** - Specify a different icon for the Badge",
238
+ "attributes": [
239
+ {
240
+ "name": "appearance",
241
+ "description": "Specify the appearance of the Badge",
242
+ "values": [
243
+ { "name": "infoPrimary" },
244
+ { "name": "infoSecondary" },
245
+ { "name": "positive" },
246
+ { "name": "warning" },
247
+ { "name": "negative" }
248
+ ]
249
+ },
250
+ {
251
+ "name": "theme",
252
+ "description": "Theme of the Badge",
253
+ "values": [{ "name": "light" }, { "name": "dark" }]
254
+ },
255
+ {
256
+ "name": "size",
257
+ "description": "Specify the size of the Badge",
258
+ "values": [{ "name": "sm" }, { "name": "md" }]
259
+ },
260
+ {
261
+ "name": "emphasis",
262
+ "description": "Specify the emphasis of the Badge",
263
+ "values": [
264
+ { "name": "strong" },
265
+ { "name": "medium" },
266
+ { "name": "subtle" }
267
+ ]
268
+ },
269
+ { "name": "hideIcon", "description": "Hides Badge icon", "values": [] }
270
+ ],
271
+ "references": [
272
+ {
273
+ "name": "Storybook",
274
+ "url": "https://web-components.beam.viasat.com/?path=/docs/components-badge"
275
+ }
276
+ ]
277
+ },
316
278
  {
317
279
  "name": "bm-box",
318
280
  "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",
@@ -716,6 +678,44 @@
716
678
  }
717
679
  ]
718
680
  },
681
+ {
682
+ "name": "bm-badge-dot",
683
+ "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",
684
+ "attributes": [
685
+ {
686
+ "name": "theme",
687
+ "description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
688
+ "values": [{ "name": "light" }, { "name": "dark" }]
689
+ },
690
+ {
691
+ "name": "appearance",
692
+ "description": "Specify the appearance of the BadgeDot",
693
+ "values": [
694
+ { "name": "infoPrimary" },
695
+ { "name": "infoSecondary" },
696
+ { "name": "positive" },
697
+ { "name": "warning" },
698
+ { "name": "negative" }
699
+ ]
700
+ },
701
+ {
702
+ "name": "emphasis",
703
+ "description": "Specify the emphasis of the BadgeDot",
704
+ "values": [{ "name": "strong" }, { "name": "subtle" }]
705
+ },
706
+ {
707
+ "name": "overrideDotColor",
708
+ "description": "Overrides default dot color",
709
+ "values": []
710
+ }
711
+ ],
712
+ "references": [
713
+ {
714
+ "name": "Storybook",
715
+ "url": "https://web-components.beam.viasat.com/?path=/docs/components-badgedot"
716
+ }
717
+ ]
718
+ },
719
719
  {
720
720
  "name": "bm-breadcrumb",
721
721
  "description": "`bm-breadcrumb`\n\n### Attributes:\n- **wrap** - Specify if items wrap or collapse to an ellipsis\n- **itemsBeforeCollapse** - Specify how many items show before ellipsis\n- **itemsAfterCollapse** - Specify how many items show after ellipsis\n- **theme** - Specify the theme of the Breadcrumbs. By default, it inherits the theme from the parent\n---\n\n\n### **Slots:**\n - **default** - Pass items to the Breadcrumb",
@@ -2236,6 +2236,58 @@
2236
2236
  }
2237
2237
  ]
2238
2238
  },
2239
+ {
2240
+ "name": "bm-radio-button",
2241
+ "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",
2242
+ "attributes": [
2243
+ {
2244
+ "name": "label",
2245
+ "description": "Specify the text for the label",
2246
+ "values": []
2247
+ },
2248
+ {
2249
+ "name": "error",
2250
+ "description": "Specify error text and display error state of a RadioButton",
2251
+ "values": []
2252
+ },
2253
+ {
2254
+ "name": "readOnly",
2255
+ "description": "Specify if RadioButton displays in a read-only state",
2256
+ "values": []
2257
+ },
2258
+ {
2259
+ "name": "disabled",
2260
+ "description": "Specify if RadioButton displays in a disabled state",
2261
+ "values": []
2262
+ },
2263
+ {
2264
+ "name": "theme",
2265
+ "description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
2266
+ "values": [{ "name": "light" }, { "name": "dark" }]
2267
+ },
2268
+ {
2269
+ "name": "value",
2270
+ "description": "The value attribute for the input element",
2271
+ "values": []
2272
+ },
2273
+ {
2274
+ "name": "checked",
2275
+ "description": "The checked attribute for the input element",
2276
+ "values": []
2277
+ },
2278
+ {
2279
+ "name": "onKeyDown",
2280
+ "description": "A user-defined function to handle keydown events",
2281
+ "values": [{ "name": "(event: KeyboardEvent) => void" }]
2282
+ }
2283
+ ],
2284
+ "references": [
2285
+ {
2286
+ "name": "Storybook",
2287
+ "url": "https://web-components.beam.viasat.com/?path=/docs/forms-radiobutton"
2288
+ }
2289
+ ]
2290
+ },
2239
2291
  {
2240
2292
  "name": "bm-switch",
2241
2293
  "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.",
@@ -2280,203 +2332,151 @@
2280
2332
  ]
2281
2333
  },
2282
2334
  {
2283
- "name": "bm-text-field",
2284
- "description": "`bm-text-field`\n---\n\n\n### **Slots:**\n - **label** - Specify the label for TextField\n- **helper-text** - Specify the helper text for TextField\n- **content-after** - Specify content to display after input\n- **content-before** - Specify content to display before input",
2335
+ "name": "bm-text-area",
2336
+ "description": "`bm-text-area`\n---\n\n\n### **Slots:**\n - **label** - Specify the label for TextArea\n- **helper-text** - Specify the helper text for TextArea",
2285
2337
  "attributes": [
2338
+ {
2339
+ "name": "rows",
2340
+ "description": "Specify the height of TextArea",
2341
+ "values": []
2342
+ },
2343
+ {
2344
+ "name": "cols",
2345
+ "description": "Specify the width of TextArea",
2346
+ "values": []
2347
+ },
2286
2348
  {
2287
2349
  "name": "placeholder",
2288
- "description": "Specify placeholder text for TextField",
2350
+ "description": "Specify placeholder text for TextArea",
2289
2351
  "values": []
2290
2352
  },
2291
2353
  {
2292
2354
  "name": "required",
2293
- "description": "Specify if TextField is a required input",
2355
+ "description": "Specify if TextArea is a required input",
2294
2356
  "values": []
2295
2357
  },
2296
2358
  {
2297
2359
  "name": "hideRequiredMarker",
2298
- "description": "Specify if the TextField displays with an asterisk",
2360
+ "description": "Specify if the TextArea displays with an asterisk",
2299
2361
  "values": []
2300
2362
  },
2301
2363
  {
2302
2364
  "name": "error",
2303
- "description": "Specify error text and display error state of a TextField",
2365
+ "description": "Specify error text and display error state of a TextArea",
2304
2366
  "values": []
2305
2367
  },
2306
2368
  {
2307
2369
  "name": "readOnly",
2308
- "description": "Specify if TextField displays in a read-only state",
2370
+ "description": "Specify if TextArea displays in a read-only state",
2309
2371
  "values": []
2310
2372
  },
2311
2373
  {
2312
2374
  "name": "disabled",
2313
- "description": "Specify if TextField displays in a disabled state",
2375
+ "description": "Specify if TextArea displays in a disabled state",
2314
2376
  "values": []
2315
2377
  },
2316
2378
  {
2317
2379
  "name": "fluid",
2318
- "description": "Specify if TextField is fluid",
2380
+ "description": "Specify if TextArea is fluid",
2319
2381
  "values": []
2320
2382
  },
2321
2383
  {
2322
2384
  "name": "width",
2323
- "description": "Specify the width of TextField",
2324
- "values": []
2325
- },
2326
- {
2327
- "name": "ellipse",
2328
- "description": "Specify if overflow displays ellipsis",
2329
- "values": []
2330
- },
2331
- {
2332
- "name": "theme",
2333
- "description": "Specify the theme of the TextField. By default it inherits the theme from the parent",
2334
- "values": [{ "name": "light" }, { "name": "dark" }]
2335
- },
2336
- { "name": "type", "values": [] },
2337
- { "name": "inputMode", "values": [] },
2338
- { "name": "id", "values": [] },
2339
- { "name": "name", "values": [] },
2340
- { "name": "value", "values": [] },
2341
- {
2342
- "name": "validationRules",
2343
- "values": [{ "name": "Array<FormValidator>" }]
2344
- },
2345
- { "name": "input-aria-label", "values": [] }
2346
- ],
2347
- "references": [
2348
- {
2349
- "name": "Storybook",
2350
- "url": "https://web-components.beam.viasat.com/?path=/docs/forms-textfield"
2351
- }
2352
- ]
2353
- },
2354
- {
2355
- "name": "bm-radio-button",
2356
- "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",
2357
- "attributes": [
2358
- {
2359
- "name": "label",
2360
- "description": "Specify the text for the label",
2385
+ "description": "Specify the width of TextArea",
2361
2386
  "values": []
2362
2387
  },
2363
2388
  {
2364
- "name": "error",
2365
- "description": "Specify error text and display error state of a RadioButton",
2389
+ "name": "hideResize",
2390
+ "description": "Specify if TextArea can be manually resized",
2366
2391
  "values": []
2367
2392
  },
2368
2393
  {
2369
- "name": "readOnly",
2370
- "description": "Specify if RadioButton displays in a read-only state",
2394
+ "name": "maxCount",
2395
+ "description": "Specify the maximum character count for the TextArea",
2371
2396
  "values": []
2372
2397
  },
2373
2398
  {
2374
- "name": "disabled",
2375
- "description": "Specify if RadioButton displays in a disabled state",
2399
+ "name": "autoResize",
2400
+ "description": "Specify if the TextArea automatically resizes to fit the text",
2376
2401
  "values": []
2377
2402
  },
2378
2403
  {
2379
2404
  "name": "theme",
2380
- "description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
2405
+ "description": "Specify the theme of the TextArea. By default it inherits the theme from the parent",
2381
2406
  "values": [{ "name": "light" }, { "name": "dark" }]
2382
2407
  },
2408
+ { "name": "id", "values": [] },
2409
+ { "name": "name", "values": [] },
2410
+ { "name": "value", "values": [] },
2383
2411
  {
2384
- "name": "value",
2385
- "description": "The value attribute for the input element",
2386
- "values": []
2387
- },
2388
- {
2389
- "name": "checked",
2390
- "description": "The checked attribute for the input element",
2391
- "values": []
2412
+ "name": "validationRules",
2413
+ "values": [{ "name": "Array<FormValidator>" }]
2392
2414
  },
2393
- {
2394
- "name": "onKeyDown",
2395
- "description": "A user-defined function to handle keydown events",
2396
- "values": [{ "name": "(event: KeyboardEvent) => void" }]
2397
- }
2415
+ { "name": "input-aria-label", "values": [] }
2398
2416
  ],
2399
2417
  "references": [
2400
2418
  {
2401
2419
  "name": "Storybook",
2402
- "url": "https://web-components.beam.viasat.com/?path=/docs/forms-radiobutton"
2420
+ "url": "https://web-components.beam.viasat.com/?path=/docs/forms-textarea"
2403
2421
  }
2404
2422
  ]
2405
2423
  },
2406
2424
  {
2407
- "name": "bm-text-area",
2408
- "description": "`bm-text-area`\n---\n\n\n### **Slots:**\n - **label** - Specify the label for TextArea\n- **helper-text** - Specify the helper text for TextArea",
2425
+ "name": "bm-text-field",
2426
+ "description": "`bm-text-field`\n---\n\n\n### **Slots:**\n - **label** - Specify the label for TextField\n- **helper-text** - Specify the helper text for TextField\n- **content-after** - Specify content to display after input\n- **content-before** - Specify content to display before input",
2409
2427
  "attributes": [
2410
- {
2411
- "name": "rows",
2412
- "description": "Specify the height of TextArea",
2413
- "values": []
2414
- },
2415
- {
2416
- "name": "cols",
2417
- "description": "Specify the width of TextArea",
2418
- "values": []
2419
- },
2420
2428
  {
2421
2429
  "name": "placeholder",
2422
- "description": "Specify placeholder text for TextArea",
2430
+ "description": "Specify placeholder text for TextField",
2423
2431
  "values": []
2424
2432
  },
2425
2433
  {
2426
2434
  "name": "required",
2427
- "description": "Specify if TextArea is a required input",
2435
+ "description": "Specify if TextField is a required input",
2428
2436
  "values": []
2429
2437
  },
2430
2438
  {
2431
2439
  "name": "hideRequiredMarker",
2432
- "description": "Specify if the TextArea displays with an asterisk",
2440
+ "description": "Specify if the TextField displays with an asterisk",
2433
2441
  "values": []
2434
2442
  },
2435
2443
  {
2436
2444
  "name": "error",
2437
- "description": "Specify error text and display error state of a TextArea",
2445
+ "description": "Specify error text and display error state of a TextField",
2438
2446
  "values": []
2439
2447
  },
2440
2448
  {
2441
2449
  "name": "readOnly",
2442
- "description": "Specify if TextArea displays in a read-only state",
2450
+ "description": "Specify if TextField displays in a read-only state",
2443
2451
  "values": []
2444
2452
  },
2445
2453
  {
2446
2454
  "name": "disabled",
2447
- "description": "Specify if TextArea displays in a disabled state",
2455
+ "description": "Specify if TextField displays in a disabled state",
2448
2456
  "values": []
2449
2457
  },
2450
2458
  {
2451
2459
  "name": "fluid",
2452
- "description": "Specify if TextArea is fluid",
2460
+ "description": "Specify if TextField is fluid",
2453
2461
  "values": []
2454
2462
  },
2455
2463
  {
2456
2464
  "name": "width",
2457
- "description": "Specify the width of TextArea",
2458
- "values": []
2459
- },
2460
- {
2461
- "name": "hideResize",
2462
- "description": "Specify if TextArea can be manually resized",
2463
- "values": []
2464
- },
2465
- {
2466
- "name": "maxCount",
2467
- "description": "Specify the maximum character count for the TextArea",
2465
+ "description": "Specify the width of TextField",
2468
2466
  "values": []
2469
2467
  },
2470
2468
  {
2471
- "name": "autoResize",
2472
- "description": "Specify if the TextArea automatically resizes to fit the text",
2469
+ "name": "ellipse",
2470
+ "description": "Specify if overflow displays ellipsis",
2473
2471
  "values": []
2474
2472
  },
2475
2473
  {
2476
2474
  "name": "theme",
2477
- "description": "Specify the theme of the TextArea. By default it inherits the theme from the parent",
2475
+ "description": "Specify the theme of the TextField. By default it inherits the theme from the parent",
2478
2476
  "values": [{ "name": "light" }, { "name": "dark" }]
2479
2477
  },
2478
+ { "name": "type", "values": [] },
2479
+ { "name": "inputMode", "values": [] },
2480
2480
  { "name": "id", "values": [] },
2481
2481
  { "name": "name", "values": [] },
2482
2482
  { "name": "value", "values": [] },
@@ -2489,7 +2489,7 @@
2489
2489
  "references": [
2490
2490
  {
2491
2491
  "name": "Storybook",
2492
- "url": "https://web-components.beam.viasat.com/?path=/docs/forms-textarea"
2492
+ "url": "https://web-components.beam.viasat.com/?path=/docs/forms-textfield"
2493
2493
  }
2494
2494
  ]
2495
2495
  },
@@ -2563,8 +2563,8 @@
2563
2563
  ]
2564
2564
  },
2565
2565
  {
2566
- "name": "bm-switch-group",
2567
- "description": "`bm-switch-group`\n---\n\n\n### **Slots:**\n - **label** - Slot for the label of the SwitchGroup\n- **helperText** - Slot for the helper text of the SwitchGroup",
2566
+ "name": "bm-radio-button-group",
2567
+ "description": "\n---\n\n\n### **Slots:**\n - **label** - Add label text to the InputChoiceGroup\n- **helperText** - Add helper text to the InputChoiceGroup",
2568
2568
  "attributes": [
2569
2569
  {
2570
2570
  "name": "theme",
@@ -2627,13 +2627,13 @@
2627
2627
  "references": [
2628
2628
  {
2629
2629
  "name": "Storybook",
2630
- "url": "https://web-components.beam.viasat.com/?path=/docs/forms-switch"
2630
+ "url": "https://web-components.beam.viasat.com/?path=/docs/forms-radiobutton"
2631
2631
  }
2632
2632
  ]
2633
2633
  },
2634
2634
  {
2635
- "name": "bm-radio-button-group",
2636
- "description": "\n---\n\n\n### **Slots:**\n - **label** - Add label text to the InputChoiceGroup\n- **helperText** - Add helper text to the InputChoiceGroup",
2635
+ "name": "bm-switch-group",
2636
+ "description": "`bm-switch-group`\n---\n\n\n### **Slots:**\n - **label** - Slot for the label of the SwitchGroup\n- **helperText** - Slot for the helper text of the SwitchGroup",
2637
2637
  "attributes": [
2638
2638
  {
2639
2639
  "name": "theme",
@@ -2696,7 +2696,7 @@
2696
2696
  "references": [
2697
2697
  {
2698
2698
  "name": "Storybook",
2699
- "url": "https://web-components.beam.viasat.com/?path=/docs/forms-radiobutton"
2699
+ "url": "https://web-components.beam.viasat.com/?path=/docs/forms-switch"
2700
2700
  }
2701
2701
  ]
2702
2702
  }