@viasat/beam-web-components 2.69.0 → 2.71.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.
@@ -61,6 +61,104 @@
61
61
  }
62
62
  ]
63
63
  },
64
+ {
65
+ "name": "bm-avatar",
66
+ "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",
67
+ "attributes": [
68
+ {
69
+ "name": "appearance",
70
+ "description": "Specify the appearance of the Avatar",
71
+ "values": [{ "name": "accent" }, { "name": "neutral" }]
72
+ },
73
+ {
74
+ "name": "name",
75
+ "description": "Specify a name to display initials in the Avatar",
76
+ "values": []
77
+ },
78
+ {
79
+ "name": "src",
80
+ "description": "Pass an image to the Avatar",
81
+ "values": []
82
+ },
83
+ { "name": "alt", "description": "Specify alt for image", "values": [] },
84
+ {
85
+ "name": "size",
86
+ "description": "Specify the size of the Avatar",
87
+ "values": [
88
+ { "name": "xs" },
89
+ { "name": "sm" },
90
+ { "name": "md" },
91
+ { "name": "lg" },
92
+ { "name": "xl" }
93
+ ]
94
+ },
95
+ {
96
+ "name": "disabled",
97
+ "description": "Specify if the Avatar is disabled",
98
+ "values": []
99
+ },
100
+ {
101
+ "name": "shape",
102
+ "description": "Specify the shape of the Avatar",
103
+ "values": [{ "name": "circle" }, { "name": "square" }]
104
+ },
105
+ {
106
+ "name": "isInteractive",
107
+ "description": "If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer",
108
+ "values": []
109
+ },
110
+ {
111
+ "name": "isFocusable",
112
+ "description": "If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable",
113
+ "values": []
114
+ },
115
+ { "name": "withBorder", "values": [] }
116
+ ],
117
+ "references": [
118
+ {
119
+ "name": "Storybook",
120
+ "url": "https://web-components.beam.viasat.com/?path=/docs/components-avatar"
121
+ }
122
+ ]
123
+ },
124
+ {
125
+ "name": "bm-avatar-group",
126
+ "description": "`bm-avatar-group`\n\n### Attributes:\n- **wrapping** - Specify if the AvatarGroup wraps\n- **maxCount** - Specify the max number of avatars displayed in the group.\n- **size** - Specify the size of all Avatars\n- **layout** - Specify the kind of the group.\n---\n\n\n### **Slots:**\n - **default** - Add Avatars to create a group",
127
+ "attributes": [
128
+ {
129
+ "name": "wrapping",
130
+ "description": "Specify if the AvatarGroup wraps",
131
+ "values": []
132
+ },
133
+ {
134
+ "name": "maxCount",
135
+ "description": "Specify the max number of avatars displayed in the group.",
136
+ "values": []
137
+ },
138
+ {
139
+ "name": "size",
140
+ "description": "Specify the size of all Avatars",
141
+ "values": [
142
+ { "name": "xs" },
143
+ { "name": "sm" },
144
+ { "name": "md" },
145
+ { "name": "lg" },
146
+ { "name": "xl" }
147
+ ]
148
+ },
149
+ {
150
+ "name": "layout",
151
+ "description": "Specify the kind of the group.",
152
+ "values": [{ "name": "stacked" }, { "name": "spaced" }]
153
+ }
154
+ ],
155
+ "references": [
156
+ {
157
+ "name": "Storybook",
158
+ "url": "https://web-components.beam.viasat.com/?path=/docs/components-avatar"
159
+ }
160
+ ]
161
+ },
64
162
  {
65
163
  "name": "bm-badge",
66
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",
@@ -142,6 +240,140 @@
142
240
  }
143
241
  ]
144
242
  },
243
+ {
244
+ "name": "bm-alert",
245
+ "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",
246
+ "attributes": [
247
+ {
248
+ "name": "heading",
249
+ "description": "Specify the heading text for Alert",
250
+ "values": []
251
+ },
252
+ {
253
+ "name": "body",
254
+ "description": "Specify the body text for Alert",
255
+ "values": []
256
+ },
257
+ {
258
+ "name": "size",
259
+ "description": "Specify the size of the Alert",
260
+ "values": [{ "name": "sm" }, { "name": "md" }]
261
+ },
262
+ {
263
+ "name": "fullWidth",
264
+ "description": "Specify if the Alert has no border radius",
265
+ "values": []
266
+ },
267
+ {
268
+ "name": "theme",
269
+ "description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
270
+ "values": [{ "name": "light" }, { "name": "dark" }]
271
+ },
272
+ {
273
+ "name": "appearance",
274
+ "description": "Specify the appearance of the Alert",
275
+ "values": [
276
+ { "name": "infoPrimary" },
277
+ { "name": "infoSecondary" },
278
+ { "name": "positive" },
279
+ { "name": "warning" },
280
+ { "name": "negative" }
281
+ ]
282
+ },
283
+ {
284
+ "name": "hidden",
285
+ "description": "Specify if the Alert is hidden",
286
+ "values": []
287
+ },
288
+ {
289
+ "name": "hideIcon",
290
+ "description": "Specify if the icon displays on the Alert",
291
+ "values": []
292
+ },
293
+ {
294
+ "name": "dismissible",
295
+ "description": "Specify if the Alert can be dismissed",
296
+ "values": []
297
+ },
298
+ {
299
+ "name": "disableAutoFocus",
300
+ "description": "Prevent autofocus on show",
301
+ "values": []
302
+ },
303
+ {
304
+ "name": "disableCloseOnEscape",
305
+ "description": "Prevent Escape from closing",
306
+ "values": []
307
+ }
308
+ ],
309
+ "references": [
310
+ {
311
+ "name": "Storybook",
312
+ "url": "https://web-components.beam.viasat.com/?path=/docs/components-alert"
313
+ }
314
+ ]
315
+ },
316
+ {
317
+ "name": "bm-breadcrumb",
318
+ "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",
319
+ "attributes": [
320
+ {
321
+ "name": "wrap",
322
+ "description": "Specify if items wrap or collapse to an ellipsis",
323
+ "values": []
324
+ },
325
+ {
326
+ "name": "itemsBeforeCollapse",
327
+ "description": "Specify how many items show before ellipsis",
328
+ "values": []
329
+ },
330
+ {
331
+ "name": "itemsAfterCollapse",
332
+ "description": "Specify how many items show after ellipsis",
333
+ "values": []
334
+ },
335
+ {
336
+ "name": "theme",
337
+ "description": "Specify the theme of the Breadcrumbs. By default, it inherits the theme from the parent",
338
+ "values": [{ "name": "light" }, { "name": "dark" }]
339
+ }
340
+ ],
341
+ "references": [
342
+ {
343
+ "name": "Storybook",
344
+ "url": "https://web-components.beam.viasat.com/?path=/docs/components-breadcrumb"
345
+ }
346
+ ]
347
+ },
348
+ {
349
+ "name": "bm-breadcrumb-item",
350
+ "description": "`bm-breadcrumb-item`\n\n### Attributes:\n- **href** - Pass href to an item\n- **clickable** - Specify if the item is interactive without an href\n- **truncationWidth** - Specify truncation width of the items. Sets max-width for all items but the last.\n- **isCurrent** - Specify explicitly if the item is the last one\n- **isCollapsed** \n---\n\n\n### **Slots:**\n - **default** - Pass text to an item\n- **icon** - Pass icon to an item",
351
+ "attributes": [
352
+ { "name": "href", "description": "Pass href to an item", "values": [] },
353
+ {
354
+ "name": "clickable",
355
+ "description": "Specify if the item is interactive without an href",
356
+ "values": []
357
+ },
358
+ {
359
+ "name": "truncationWidth",
360
+ "description": "Specify truncation width of the items. Sets max-width for all items but the last.",
361
+ "values": []
362
+ },
363
+ {
364
+ "name": "isCurrent",
365
+ "description": "Specify explicitly if the item is the last one",
366
+ "values": []
367
+ },
368
+ { "name": "isCollapsed", "values": [] }
369
+ ],
370
+ "references": [
371
+ {
372
+ "name": "Storybook",
373
+ "url": "https://web-components.beam.viasat.com/?path=/docs/components-breadcrumb"
374
+ }
375
+ ]
376
+ },
145
377
  {
146
378
  "name": "bm-box",
147
379
  "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",
@@ -534,314 +766,82 @@
534
766
  { "name": "md" },
535
767
  { "name": "lg" },
536
768
  { "name": "none" },
537
- { "name": "overlay" }
538
- ]
539
- }
540
- ],
541
- "references": [
542
- {
543
- "name": "Storybook",
544
- "url": "https://web-components.beam.viasat.com/?path=/docs/components-box"
545
- }
546
- ]
547
- },
548
- {
549
- "name": "bm-breadcrumb",
550
- "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",
551
- "attributes": [
552
- {
553
- "name": "wrap",
554
- "description": "Specify if items wrap or collapse to an ellipsis",
555
- "values": []
556
- },
557
- {
558
- "name": "itemsBeforeCollapse",
559
- "description": "Specify how many items show before ellipsis",
560
- "values": []
561
- },
562
- {
563
- "name": "itemsAfterCollapse",
564
- "description": "Specify how many items show after ellipsis",
565
- "values": []
566
- },
567
- {
568
- "name": "theme",
569
- "description": "Specify the theme of the Breadcrumbs. By default, it inherits the theme from the parent",
570
- "values": [{ "name": "light" }, { "name": "dark" }]
571
- }
572
- ],
573
- "references": [
574
- {
575
- "name": "Storybook",
576
- "url": "https://web-components.beam.viasat.com/?path=/docs/components-breadcrumb"
577
- }
578
- ]
579
- },
580
- {
581
- "name": "bm-breadcrumb-item",
582
- "description": "`bm-breadcrumb-item`\n\n### Attributes:\n- **href** - Pass href to an item\n- **clickable** - Specify if the item is interactive without an href\n- **truncationWidth** - Specify truncation width of the items. Sets max-width for all items but the last.\n- **isCurrent** - Specify explicitly if the item is the last one\n- **isCollapsed** \n---\n\n\n### **Slots:**\n - **default** - Pass text to an item\n- **icon** - Pass icon to an item",
583
- "attributes": [
584
- { "name": "href", "description": "Pass href to an item", "values": [] },
585
- {
586
- "name": "clickable",
587
- "description": "Specify if the item is interactive without an href",
588
- "values": []
589
- },
590
- {
591
- "name": "truncationWidth",
592
- "description": "Specify truncation width of the items. Sets max-width for all items but the last.",
593
- "values": []
594
- },
595
- {
596
- "name": "isCurrent",
597
- "description": "Specify explicitly if the item is the last one",
598
- "values": []
599
- },
600
- { "name": "isCollapsed", "values": [] }
601
- ],
602
- "references": [
603
- {
604
- "name": "Storybook",
605
- "url": "https://web-components.beam.viasat.com/?path=/docs/components-breadcrumb"
606
- }
607
- ]
608
- },
609
- {
610
- "name": "bm-button",
611
- "description": "`bm-button`\n\n### Attributes:\n- **appearance** - Specify the appearance of a Button\n- **kind** - Specify the kind of Button\n- **size** - Specify the size of a Button\n- **disabled** - Specify if the Button is disabled\n- **fluid** - Specify if Button is fluid\n- **width** - Specify the width of a Button\n- **height** - Specify the height of a Button\n- **theme** - Specify the theme of the Button\n- **iconOnly** - Specify if the icon displays without text\n- **type** \n---\n\n\n### **Slots:**\n - **default** - Provide content for the Button\n- **iconBefore** - Specify if the Button displays icon before the text\n- **iconAfter** - Specify if the Button displays icon after the text",
612
- "attributes": [
613
- {
614
- "name": "appearance",
615
- "description": "Specify the appearance of a Button",
616
- "values": [
617
- { "name": "accent" },
618
- { "name": "neutral" },
619
- { "name": "neutral-subtle" },
620
- { "name": "destructive" }
621
- ]
622
- },
623
- {
624
- "name": "kind",
625
- "description": "Specify the kind of Button",
626
- "values": [
627
- { "name": "filled" },
628
- { "name": "outline" },
629
- { "name": "ghost" },
630
- { "name": "bare" }
631
- ]
632
- },
633
- {
634
- "name": "size",
635
- "description": "Specify the size of a Button",
636
- "values": [{ "name": "sm" }, { "name": "md" }, { "name": "lg" }]
637
- },
638
- {
639
- "name": "disabled",
640
- "description": "Specify if the Button is disabled",
641
- "values": []
642
- },
643
- {
644
- "name": "fluid",
645
- "description": "Specify if Button is fluid",
646
- "values": []
647
- },
648
- {
649
- "name": "width",
650
- "description": "Specify the width of a Button",
651
- "values": []
652
- },
653
- {
654
- "name": "height",
655
- "description": "Specify the height of a Button",
656
- "values": []
657
- },
658
- {
659
- "name": "theme",
660
- "description": "Specify the theme of the Button",
661
- "values": [{ "name": "light" }, { "name": "dark" }]
662
- },
663
- {
664
- "name": "iconOnly",
665
- "description": "Specify if the icon displays without text",
666
- "values": []
667
- },
668
- { "name": "type", "values": [] }
669
- ],
670
- "references": [
671
- {
672
- "name": "Storybook",
673
- "url": "https://web-components.beam.viasat.com/?path=/docs/components-button"
674
- }
675
- ]
676
- },
677
- {
678
- "name": "bm-avatar",
679
- "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",
680
- "attributes": [
681
- {
682
- "name": "appearance",
683
- "description": "Specify the appearance of the Avatar",
684
- "values": [{ "name": "accent" }, { "name": "neutral" }]
685
- },
686
- {
687
- "name": "name",
688
- "description": "Specify a name to display initials in the Avatar",
689
- "values": []
690
- },
691
- {
692
- "name": "src",
693
- "description": "Pass an image to the Avatar",
694
- "values": []
695
- },
696
- { "name": "alt", "description": "Specify alt for image", "values": [] },
697
- {
698
- "name": "size",
699
- "description": "Specify the size of the Avatar",
700
- "values": [
701
- { "name": "xs" },
702
- { "name": "sm" },
703
- { "name": "md" },
704
- { "name": "lg" },
705
- { "name": "xl" }
706
- ]
707
- },
708
- {
709
- "name": "disabled",
710
- "description": "Specify if the Avatar is disabled",
711
- "values": []
712
- },
713
- {
714
- "name": "shape",
715
- "description": "Specify the shape of the Avatar",
716
- "values": [{ "name": "circle" }, { "name": "square" }]
717
- },
718
- {
719
- "name": "isInteractive",
720
- "description": "If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer",
721
- "values": []
722
- },
723
- {
724
- "name": "isFocusable",
725
- "description": "If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable",
726
- "values": []
727
- },
728
- { "name": "withBorder", "values": [] }
729
- ],
730
- "references": [
731
- {
732
- "name": "Storybook",
733
- "url": "https://web-components.beam.viasat.com/?path=/docs/components-avatar"
734
- }
735
- ]
736
- },
737
- {
738
- "name": "bm-avatar-group",
739
- "description": "`bm-avatar-group`\n\n### Attributes:\n- **wrapping** - Specify if the AvatarGroup wraps\n- **maxCount** - Specify the max number of avatars displayed in the group.\n- **size** - Specify the size of all Avatars\n- **layout** - Specify the kind of the group.\n---\n\n\n### **Slots:**\n - **default** - Add Avatars to create a group",
740
- "attributes": [
741
- {
742
- "name": "wrapping",
743
- "description": "Specify if the AvatarGroup wraps",
744
- "values": []
745
- },
746
- {
747
- "name": "maxCount",
748
- "description": "Specify the max number of avatars displayed in the group.",
749
- "values": []
750
- },
751
- {
752
- "name": "size",
753
- "description": "Specify the size of all Avatars",
754
- "values": [
755
- { "name": "xs" },
756
- { "name": "sm" },
757
- { "name": "md" },
758
- { "name": "lg" },
759
- { "name": "xl" }
760
- ]
761
- },
762
- {
763
- "name": "layout",
764
- "description": "Specify the kind of the group.",
765
- "values": [{ "name": "stacked" }, { "name": "spaced" }]
769
+ { "name": "overlay" }
770
+ ]
766
771
  }
767
772
  ],
768
773
  "references": [
769
774
  {
770
775
  "name": "Storybook",
771
- "url": "https://web-components.beam.viasat.com/?path=/docs/components-avatar"
776
+ "url": "https://web-components.beam.viasat.com/?path=/docs/components-box"
772
777
  }
773
778
  ]
774
779
  },
775
780
  {
776
- "name": "bm-alert",
777
- "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",
781
+ "name": "bm-button",
782
+ "description": "`bm-button`\n\n### Attributes:\n- **appearance** - Specify the appearance of a Button\n- **kind** - Specify the kind of Button\n- **size** - Specify the size of a Button\n- **disabled** - Specify if the Button is disabled\n- **fluid** - Specify if Button is fluid\n- **width** - Specify the width of a Button\n- **height** - Specify the height of a Button\n- **theme** - Specify the theme of the Button\n- **iconOnly** - Specify if the icon displays without text\n- **type** \n---\n\n\n### **Slots:**\n - **default** - Provide content for the Button\n- **iconBefore** - Specify if the Button displays icon before the text\n- **iconAfter** - Specify if the Button displays icon after the text",
778
783
  "attributes": [
779
784
  {
780
- "name": "heading",
781
- "description": "Specify the heading text for Alert",
782
- "values": []
785
+ "name": "appearance",
786
+ "description": "Specify the appearance of a Button",
787
+ "values": [
788
+ { "name": "accent" },
789
+ { "name": "neutral" },
790
+ { "name": "neutral-subtle" },
791
+ { "name": "destructive" }
792
+ ]
783
793
  },
784
794
  {
785
- "name": "body",
786
- "description": "Specify the body text for Alert",
787
- "values": []
795
+ "name": "kind",
796
+ "description": "Specify the kind of Button",
797
+ "values": [
798
+ { "name": "filled" },
799
+ { "name": "outline" },
800
+ { "name": "ghost" },
801
+ { "name": "bare" }
802
+ ]
788
803
  },
789
804
  {
790
805
  "name": "size",
791
- "description": "Specify the size of the Alert",
792
- "values": [{ "name": "sm" }, { "name": "md" }]
806
+ "description": "Specify the size of a Button",
807
+ "values": [{ "name": "sm" }, { "name": "md" }, { "name": "lg" }]
793
808
  },
794
809
  {
795
- "name": "fullWidth",
796
- "description": "Specify if the Alert has no border radius",
810
+ "name": "disabled",
811
+ "description": "Specify if the Button is disabled",
797
812
  "values": []
798
813
  },
799
814
  {
800
- "name": "theme",
801
- "description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
802
- "values": [{ "name": "light" }, { "name": "dark" }]
803
- },
804
- {
805
- "name": "appearance",
806
- "description": "Specify the appearance of the Alert",
807
- "values": [
808
- { "name": "infoPrimary" },
809
- { "name": "infoSecondary" },
810
- { "name": "positive" },
811
- { "name": "warning" },
812
- { "name": "negative" }
813
- ]
814
- },
815
- {
816
- "name": "hidden",
817
- "description": "Specify if the Alert is hidden",
815
+ "name": "fluid",
816
+ "description": "Specify if Button is fluid",
818
817
  "values": []
819
818
  },
820
819
  {
821
- "name": "hideIcon",
822
- "description": "Specify if the icon displays on the Alert",
820
+ "name": "width",
821
+ "description": "Specify the width of a Button",
823
822
  "values": []
824
823
  },
825
824
  {
826
- "name": "dismissible",
827
- "description": "Specify if the Alert can be dismissed",
825
+ "name": "height",
826
+ "description": "Specify the height of a Button",
828
827
  "values": []
829
828
  },
830
829
  {
831
- "name": "disableAutoFocus",
832
- "description": "Prevent autofocus on show",
833
- "values": []
830
+ "name": "theme",
831
+ "description": "Specify the theme of the Button",
832
+ "values": [{ "name": "light" }, { "name": "dark" }]
834
833
  },
835
834
  {
836
- "name": "disableCloseOnEscape",
837
- "description": "Prevent Escape from closing",
835
+ "name": "iconOnly",
836
+ "description": "Specify if the icon displays without text",
838
837
  "values": []
839
- }
838
+ },
839
+ { "name": "type", "values": [] }
840
840
  ],
841
841
  "references": [
842
842
  {
843
843
  "name": "Storybook",
844
- "url": "https://web-components.beam.viasat.com/?path=/docs/components-alert"
844
+ "url": "https://web-components.beam.viasat.com/?path=/docs/components-button"
845
845
  }
846
846
  ]
847
847
  },
@@ -1130,7 +1130,7 @@
1130
1130
  {
1131
1131
  "name": "error",
1132
1132
  "description": "Specify error text and display error state of a InputChoiceGroup",
1133
- "values": []
1133
+ "values": [{ "name": "Optional<boolean" }, { "name": "string>" }]
1134
1134
  },
1135
1135
  {
1136
1136
  "name": "readOnly",
@@ -1626,6 +1626,131 @@
1626
1626
  }
1627
1627
  ]
1628
1628
  },
1629
+ {
1630
+ "name": "bm-text-area",
1631
+ "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",
1632
+ "attributes": [
1633
+ {
1634
+ "name": "rows",
1635
+ "description": "Specify the height of TextArea",
1636
+ "values": []
1637
+ },
1638
+ {
1639
+ "name": "cols",
1640
+ "description": "Specify the width of TextArea",
1641
+ "values": []
1642
+ },
1643
+ {
1644
+ "name": "placeholder",
1645
+ "description": "Specify placeholder text for TextArea",
1646
+ "values": []
1647
+ },
1648
+ {
1649
+ "name": "required",
1650
+ "description": "Specify if TextArea is a required input",
1651
+ "values": []
1652
+ },
1653
+ {
1654
+ "name": "hideRequiredMarker",
1655
+ "description": "Specify if the TextArea displays with an asterisk",
1656
+ "values": []
1657
+ },
1658
+ {
1659
+ "name": "readOnly",
1660
+ "description": "Specify if TextArea displays in a read-only state",
1661
+ "values": []
1662
+ },
1663
+ {
1664
+ "name": "disabled",
1665
+ "description": "Specify if TextArea displays in a disabled state",
1666
+ "values": []
1667
+ },
1668
+ {
1669
+ "name": "fluid",
1670
+ "description": "Specify if TextArea is fluid",
1671
+ "values": []
1672
+ },
1673
+ {
1674
+ "name": "width",
1675
+ "description": "Specify the width of TextArea",
1676
+ "values": []
1677
+ },
1678
+ {
1679
+ "name": "hideResize",
1680
+ "description": "Specify if TextArea can be manually resized",
1681
+ "values": []
1682
+ },
1683
+ {
1684
+ "name": "maxCount",
1685
+ "description": "Specify the maximum character count for the TextArea",
1686
+ "values": []
1687
+ },
1688
+ {
1689
+ "name": "autoResize",
1690
+ "description": "Specify if the TextArea automatically resizes to fit the text",
1691
+ "values": []
1692
+ },
1693
+ {
1694
+ "name": "theme",
1695
+ "description": "Specify the theme of the TextArea. By default it inherits the theme from the parent",
1696
+ "values": [{ "name": "light" }, { "name": "dark" }]
1697
+ },
1698
+ {
1699
+ "name": "maxLength",
1700
+ "description": "Specify the maximum number of characters allowed by the native\n`<textarea>`. Takes precedence over `maxCount` for the `maxlength`\nattribute; use `maxCount` to also display the character counter.",
1701
+ "values": []
1702
+ },
1703
+ {
1704
+ "name": "minLength",
1705
+ "description": "Specify the minimum number of characters required by the `<textarea>`",
1706
+ "values": []
1707
+ },
1708
+ {
1709
+ "name": "wrap",
1710
+ "description": "Specify how the `<textarea>` wraps text on form submission (`soft` or `hard`)",
1711
+ "values": []
1712
+ },
1713
+ {
1714
+ "name": "autocomplete",
1715
+ "description": "Specify the autocomplete hint for the `<textarea>`",
1716
+ "values": []
1717
+ },
1718
+ {
1719
+ "name": "inputMode",
1720
+ "description": "Specify the virtual keyboard type for mobile browsers (e.g. numeric, tel, url)",
1721
+ "values": []
1722
+ },
1723
+ {
1724
+ "name": "autofocus",
1725
+ "description": "Specify if the `<textarea>` should receive focus on connect",
1726
+ "values": []
1727
+ },
1728
+ {
1729
+ "name": "spellcheck",
1730
+ "description": "Specify whether the browser checks spelling in the `<textarea>`",
1731
+ "values": []
1732
+ },
1733
+ { "name": "id", "values": [] },
1734
+ { "name": "name", "values": [] },
1735
+ { "name": "value", "values": [] },
1736
+ {
1737
+ "name": "validationRules",
1738
+ "values": [{ "name": "Array<FormValidator>" }]
1739
+ },
1740
+ { "name": "input-aria-label", "values": [] },
1741
+ {
1742
+ "name": "error",
1743
+ "description": "Specify error text and display error state.\nPass a string to show an error message, or `true` to show the error\nstate without a message.",
1744
+ "values": [{ "name": "Optional<boolean" }, { "name": "string>" }]
1745
+ }
1746
+ ],
1747
+ "references": [
1748
+ {
1749
+ "name": "Storybook",
1750
+ "url": "https://web-components.beam.viasat.com/?path=/docs/forms-textarea"
1751
+ }
1752
+ ]
1753
+ },
1629
1754
  {
1630
1755
  "name": "bm-text-field",
1631
1756
  "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",
@@ -1645,11 +1770,6 @@
1645
1770
  "description": "Specify if the TextField displays with an asterisk",
1646
1771
  "values": []
1647
1772
  },
1648
- {
1649
- "name": "error",
1650
- "description": "Specify error text and display error state of a TextField",
1651
- "values": []
1652
- },
1653
1773
  {
1654
1774
  "name": "readOnly",
1655
1775
  "description": "Specify if TextField displays in a read-only state",
@@ -1695,6 +1815,16 @@
1695
1815
  "description": "Specify the virtual keyboard type for mobile browsers (e.g. numeric, tel, url)",
1696
1816
  "values": []
1697
1817
  },
1818
+ {
1819
+ "name": "autofocus",
1820
+ "description": "Specify if the `<input>` should receive focus on connect",
1821
+ "values": []
1822
+ },
1823
+ {
1824
+ "name": "spellcheck",
1825
+ "description": "Specify whether the browser checks spelling in the `<input>`",
1826
+ "values": []
1827
+ },
1698
1828
  { "name": "id", "values": [] },
1699
1829
  { "name": "name", "values": [] },
1700
1830
  { "name": "value", "values": [] },
@@ -1702,7 +1832,12 @@
1702
1832
  "name": "validationRules",
1703
1833
  "values": [{ "name": "Array<FormValidator>" }]
1704
1834
  },
1705
- { "name": "input-aria-label", "values": [] }
1835
+ { "name": "input-aria-label", "values": [] },
1836
+ {
1837
+ "name": "error",
1838
+ "description": "Specify error text and display error state.\nPass a string to show an error message, or `true` to show the error\nstate without a message.",
1839
+ "values": [{ "name": "Optional<boolean" }, { "name": "string>" }]
1840
+ }
1706
1841
  ],
1707
1842
  "references": [
1708
1843
  {
@@ -1872,85 +2007,40 @@
1872
2007
  "values": []
1873
2008
  },
1874
2009
  {
1875
- "name": "value",
1876
- "description": "Specify the checkbox value",
1877
- "values": []
1878
- },
1879
- {
1880
- "name": "error",
1881
- "description": "Specify error text and display error state of a Checkbox",
1882
- "values": []
1883
- },
1884
- {
1885
- "name": "readOnly",
1886
- "description": "Specify if Checkbox displays in a read-only state",
1887
- "values": []
1888
- },
1889
- {
1890
- "name": "indeterminate",
1891
- "description": "Specify if Checkbox displays in an indeterminate state",
1892
- "values": []
1893
- },
1894
- {
1895
- "name": "disabled",
1896
- "description": "Specify if Checkbox displays in disabled state",
1897
- "values": []
1898
- },
1899
- {
1900
- "name": "checked",
1901
- "description": "Specify if Checkbox is checked",
1902
- "values": []
1903
- }
1904
- ],
1905
- "references": [
1906
- {
1907
- "name": "Storybook",
1908
- "url": "https://web-components.beam.viasat.com/?path=/docs/forms-checkbox"
1909
- }
1910
- ]
1911
- },
1912
- {
1913
- "name": "bm-form",
1914
- "description": "`bm-form`\n---\n\n\n### **Events:**\n - **submit** - Validates the inputs and submits the form\n\n### **Slots:**\n - **slot** - Add controls to the Form",
1915
- "attributes": [
1916
- {
1917
- "name": "validationMode",
1918
- "description": "Specify if validation runs on change or when loosing focus",
1919
- "values": [
1920
- { "name": "onChange" },
1921
- { "name": "onBlur" },
1922
- { "name": "onSubmit" }
1923
- ]
2010
+ "name": "value",
2011
+ "description": "Specify the checkbox value",
2012
+ "values": []
1924
2013
  },
1925
2014
  {
1926
- "name": "initialValues",
1927
- "description": "Specify initial values on Form controls based on their names",
1928
- "values": [{ "name": "Record<string" }, { "name": "FormValue>" }]
2015
+ "name": "error",
2016
+ "description": "Specify error text and display error state of a Checkbox",
2017
+ "values": []
1929
2018
  },
1930
2019
  {
1931
- "name": "required",
1932
- "description": "Specify if input is a required",
2020
+ "name": "readOnly",
2021
+ "description": "Specify if Checkbox displays in a read-only state",
1933
2022
  "values": []
1934
2023
  },
1935
2024
  {
1936
- "name": "disabled",
1937
- "description": "Specify if input is a disabled",
2025
+ "name": "indeterminate",
2026
+ "description": "Specify if Checkbox displays in an indeterminate state",
1938
2027
  "values": []
1939
2028
  },
1940
2029
  {
1941
- "name": "readOnly",
1942
- "description": "Specify if input is a read only",
2030
+ "name": "disabled",
2031
+ "description": "Specify if Checkbox displays in disabled state",
1943
2032
  "values": []
1944
2033
  },
1945
- { "name": "action", "values": [] },
1946
- { "name": "method", "values": [] },
1947
- { "name": "target", "values": [] },
1948
- { "name": "enctype", "values": [] }
2034
+ {
2035
+ "name": "checked",
2036
+ "description": "Specify if Checkbox is checked",
2037
+ "values": []
2038
+ }
1949
2039
  ],
1950
2040
  "references": [
1951
2041
  {
1952
2042
  "name": "Storybook",
1953
- "url": "https://web-components.beam.viasat.com/?path=/docs/forms-form"
2043
+ "url": "https://web-components.beam.viasat.com/?path=/docs/forms-checkbox"
1954
2044
  }
1955
2045
  ]
1956
2046
  },
@@ -2192,7 +2282,7 @@
2192
2282
  {
2193
2283
  "name": "error",
2194
2284
  "description": "Specify error text and display error state of FileUpload",
2195
- "values": []
2285
+ "values": [{ "name": "Optional<boolean" }, { "name": "string>" }]
2196
2286
  },
2197
2287
  {
2198
2288
  "name": "disabled",
@@ -2261,6 +2351,51 @@
2261
2351
  }
2262
2352
  ]
2263
2353
  },
2354
+ {
2355
+ "name": "bm-form",
2356
+ "description": "`bm-form`\n---\n\n\n### **Events:**\n - **submit** - Validates the inputs and submits the form\n\n### **Slots:**\n - **slot** - Add controls to the Form",
2357
+ "attributes": [
2358
+ {
2359
+ "name": "validationMode",
2360
+ "description": "Specify if validation runs on change or when loosing focus",
2361
+ "values": [
2362
+ { "name": "onChange" },
2363
+ { "name": "onBlur" },
2364
+ { "name": "onSubmit" }
2365
+ ]
2366
+ },
2367
+ {
2368
+ "name": "initialValues",
2369
+ "description": "Specify initial values on Form controls based on their names",
2370
+ "values": [{ "name": "Record<string" }, { "name": "FormValue>" }]
2371
+ },
2372
+ {
2373
+ "name": "required",
2374
+ "description": "Specify if input is a required",
2375
+ "values": []
2376
+ },
2377
+ {
2378
+ "name": "disabled",
2379
+ "description": "Specify if input is a disabled",
2380
+ "values": []
2381
+ },
2382
+ {
2383
+ "name": "readOnly",
2384
+ "description": "Specify if input is a read only",
2385
+ "values": []
2386
+ },
2387
+ { "name": "action", "values": [] },
2388
+ { "name": "method", "values": [] },
2389
+ { "name": "target", "values": [] },
2390
+ { "name": "enctype", "values": [] }
2391
+ ],
2392
+ "references": [
2393
+ {
2394
+ "name": "Storybook",
2395
+ "url": "https://web-components.beam.viasat.com/?path=/docs/forms-form"
2396
+ }
2397
+ ]
2398
+ },
2264
2399
  {
2265
2400
  "name": "bm-native-select",
2266
2401
  "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",
@@ -2280,11 +2415,6 @@
2280
2415
  "description": "Specify if NativeSelect displays in a disabled state",
2281
2416
  "values": []
2282
2417
  },
2283
- {
2284
- "name": "error",
2285
- "description": "Specify error text and display error state of a NativeSelect",
2286
- "values": []
2287
- },
2288
2418
  {
2289
2419
  "name": "fluid",
2290
2420
  "description": "Specify if NativeSelect is fluid",
@@ -2322,197 +2452,112 @@
2322
2452
  "name": "validationRules",
2323
2453
  "values": [{ "name": "Array<FormValidator>" }]
2324
2454
  },
2325
- { "name": "input-aria-label", "values": [] }
2326
- ],
2327
- "references": [
2328
- {
2329
- "name": "Storybook",
2330
- "url": "https://web-components.beam.viasat.com/?path=/docs/forms-nativeselect"
2331
- }
2332
- ]
2333
- },
2334
- {
2335
- "name": "bm-switch",
2336
- "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
- "attributes": [
2338
- {
2339
- "name": "onText",
2340
- "description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
2341
- "values": []
2342
- },
2343
- {
2344
- "name": "offText",
2345
- "description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
2346
- "values": []
2347
- },
2348
- {
2349
- "name": "textPosition",
2350
- "description": "Specify the position of the side label",
2351
- "values": [{ "name": "before" }, { "name": "after" }]
2352
- },
2353
- {
2354
- "name": "readOnly",
2355
- "description": "Specify if Switch displays in a read-only state",
2356
- "values": []
2357
- },
2358
- {
2359
- "name": "disabled",
2360
- "description": "Specify if Switch displays in a disabled state",
2361
- "values": []
2362
- },
2363
- { "name": "checked", "values": [] },
2455
+ { "name": "input-aria-label", "values": [] },
2364
2456
  {
2365
- "name": "value",
2366
- "description": "The value attribute for the input element",
2367
- "values": []
2457
+ "name": "error",
2458
+ "description": "Specify error text and display error state.\nPass a string to show an error message, or `true` to show the error\nstate without a message.",
2459
+ "values": [{ "name": "Optional<boolean" }, { "name": "string>" }]
2368
2460
  }
2369
2461
  ],
2370
2462
  "references": [
2371
2463
  {
2372
2464
  "name": "Storybook",
2373
- "url": "https://web-components.beam.viasat.com/?path=/docs/forms-switch"
2465
+ "url": "https://web-components.beam.viasat.com/?path=/docs/forms-nativeselect"
2374
2466
  }
2375
2467
  ]
2376
2468
  },
2377
2469
  {
2378
- "name": "bm-text-area",
2379
- "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",
2470
+ "name": "bm-radio-button",
2471
+ "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",
2380
2472
  "attributes": [
2381
2473
  {
2382
- "name": "rows",
2383
- "description": "Specify the height of TextArea",
2384
- "values": []
2385
- },
2386
- {
2387
- "name": "cols",
2388
- "description": "Specify the width of TextArea",
2389
- "values": []
2390
- },
2391
- {
2392
- "name": "placeholder",
2393
- "description": "Specify placeholder text for TextArea",
2394
- "values": []
2395
- },
2396
- {
2397
- "name": "required",
2398
- "description": "Specify if TextArea is a required input",
2399
- "values": []
2400
- },
2401
- {
2402
- "name": "hideRequiredMarker",
2403
- "description": "Specify if the TextArea displays with an asterisk",
2474
+ "name": "label",
2475
+ "description": "Specify the text for the label",
2404
2476
  "values": []
2405
2477
  },
2406
2478
  {
2407
2479
  "name": "error",
2408
- "description": "Specify error text and display error state of a TextArea",
2480
+ "description": "Specify error text and display error state of a RadioButton",
2409
2481
  "values": []
2410
2482
  },
2411
2483
  {
2412
2484
  "name": "readOnly",
2413
- "description": "Specify if TextArea displays in a read-only state",
2485
+ "description": "Specify if RadioButton displays in a read-only state",
2414
2486
  "values": []
2415
2487
  },
2416
2488
  {
2417
2489
  "name": "disabled",
2418
- "description": "Specify if TextArea displays in a disabled state",
2419
- "values": []
2420
- },
2421
- {
2422
- "name": "fluid",
2423
- "description": "Specify if TextArea is fluid",
2424
- "values": []
2425
- },
2426
- {
2427
- "name": "width",
2428
- "description": "Specify the width of TextArea",
2490
+ "description": "Specify if RadioButton displays in a disabled state",
2429
2491
  "values": []
2430
2492
  },
2431
2493
  {
2432
- "name": "hideResize",
2433
- "description": "Specify if TextArea can be manually resized",
2434
- "values": []
2494
+ "name": "theme",
2495
+ "description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
2496
+ "values": [{ "name": "light" }, { "name": "dark" }]
2435
2497
  },
2436
2498
  {
2437
- "name": "maxCount",
2438
- "description": "Specify the maximum character count for the TextArea",
2499
+ "name": "value",
2500
+ "description": "The value attribute for the input element",
2439
2501
  "values": []
2440
2502
  },
2441
2503
  {
2442
- "name": "autoResize",
2443
- "description": "Specify if the TextArea automatically resizes to fit the text",
2504
+ "name": "checked",
2505
+ "description": "The checked attribute for the input element",
2444
2506
  "values": []
2445
2507
  },
2446
2508
  {
2447
- "name": "theme",
2448
- "description": "Specify the theme of the TextArea. By default it inherits the theme from the parent",
2449
- "values": [{ "name": "light" }, { "name": "dark" }]
2450
- },
2451
- { "name": "id", "values": [] },
2452
- { "name": "name", "values": [] },
2453
- { "name": "value", "values": [] },
2454
- {
2455
- "name": "validationRules",
2456
- "values": [{ "name": "Array<FormValidator>" }]
2457
- },
2458
- { "name": "input-aria-label", "values": [] }
2509
+ "name": "onKeyDown",
2510
+ "description": "A user-defined function to handle keydown events",
2511
+ "values": [{ "name": "(event: KeyboardEvent) => void" }]
2512
+ }
2459
2513
  ],
2460
2514
  "references": [
2461
2515
  {
2462
2516
  "name": "Storybook",
2463
- "url": "https://web-components.beam.viasat.com/?path=/docs/forms-textarea"
2517
+ "url": "https://web-components.beam.viasat.com/?path=/docs/forms-radiobutton"
2464
2518
  }
2465
2519
  ]
2466
2520
  },
2467
2521
  {
2468
- "name": "bm-radio-button",
2469
- "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",
2522
+ "name": "bm-switch",
2523
+ "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.",
2470
2524
  "attributes": [
2471
2525
  {
2472
- "name": "label",
2473
- "description": "Specify the text for the label",
2526
+ "name": "onText",
2527
+ "description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
2474
2528
  "values": []
2475
2529
  },
2476
2530
  {
2477
- "name": "error",
2478
- "description": "Specify error text and display error state of a RadioButton",
2531
+ "name": "offText",
2532
+ "description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
2479
2533
  "values": []
2480
2534
  },
2535
+ {
2536
+ "name": "textPosition",
2537
+ "description": "Specify the position of the side label",
2538
+ "values": [{ "name": "before" }, { "name": "after" }]
2539
+ },
2481
2540
  {
2482
2541
  "name": "readOnly",
2483
- "description": "Specify if RadioButton displays in a read-only state",
2542
+ "description": "Specify if Switch displays in a read-only state",
2484
2543
  "values": []
2485
2544
  },
2486
2545
  {
2487
2546
  "name": "disabled",
2488
- "description": "Specify if RadioButton displays in a disabled state",
2547
+ "description": "Specify if Switch displays in a disabled state",
2489
2548
  "values": []
2490
2549
  },
2491
- {
2492
- "name": "theme",
2493
- "description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
2494
- "values": [{ "name": "light" }, { "name": "dark" }]
2495
- },
2550
+ { "name": "checked", "values": [] },
2496
2551
  {
2497
2552
  "name": "value",
2498
2553
  "description": "The value attribute for the input element",
2499
2554
  "values": []
2500
- },
2501
- {
2502
- "name": "checked",
2503
- "description": "The checked attribute for the input element",
2504
- "values": []
2505
- },
2506
- {
2507
- "name": "onKeyDown",
2508
- "description": "A user-defined function to handle keydown events",
2509
- "values": [{ "name": "(event: KeyboardEvent) => void" }]
2510
2555
  }
2511
2556
  ],
2512
2557
  "references": [
2513
2558
  {
2514
2559
  "name": "Storybook",
2515
- "url": "https://web-components.beam.viasat.com/?path=/docs/forms-radiobutton"
2560
+ "url": "https://web-components.beam.viasat.com/?path=/docs/forms-switch"
2516
2561
  }
2517
2562
  ]
2518
2563
  },
@@ -2557,7 +2602,7 @@
2557
2602
  {
2558
2603
  "name": "error",
2559
2604
  "description": "Specify error text and display error state of a InputChoiceGroup",
2560
- "values": []
2605
+ "values": [{ "name": "Optional<boolean" }, { "name": "string>" }]
2561
2606
  },
2562
2607
  {
2563
2608
  "name": "readOnly",
@@ -2586,8 +2631,8 @@
2586
2631
  ]
2587
2632
  },
2588
2633
  {
2589
- "name": "bm-switch-group",
2590
- "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",
2634
+ "name": "bm-radio-button-group",
2635
+ "description": "\n---\n\n\n### **Slots:**\n - **label** - Add label text to the InputChoiceGroup\n- **helperText** - Add helper text to the InputChoiceGroup",
2591
2636
  "attributes": [
2592
2637
  {
2593
2638
  "name": "theme",
@@ -2626,7 +2671,7 @@
2626
2671
  {
2627
2672
  "name": "error",
2628
2673
  "description": "Specify error text and display error state of a InputChoiceGroup",
2629
- "values": []
2674
+ "values": [{ "name": "Optional<boolean" }, { "name": "string>" }]
2630
2675
  },
2631
2676
  {
2632
2677
  "name": "readOnly",
@@ -2650,13 +2695,13 @@
2650
2695
  "references": [
2651
2696
  {
2652
2697
  "name": "Storybook",
2653
- "url": "https://web-components.beam.viasat.com/?path=/docs/forms-switch"
2698
+ "url": "https://web-components.beam.viasat.com/?path=/docs/forms-radiobutton"
2654
2699
  }
2655
2700
  ]
2656
2701
  },
2657
2702
  {
2658
- "name": "bm-radio-button-group",
2659
- "description": "\n---\n\n\n### **Slots:**\n - **label** - Add label text to the InputChoiceGroup\n- **helperText** - Add helper text to the InputChoiceGroup",
2703
+ "name": "bm-switch-group",
2704
+ "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",
2660
2705
  "attributes": [
2661
2706
  {
2662
2707
  "name": "theme",
@@ -2695,7 +2740,7 @@
2695
2740
  {
2696
2741
  "name": "error",
2697
2742
  "description": "Specify error text and display error state of a InputChoiceGroup",
2698
- "values": []
2743
+ "values": [{ "name": "Optional<boolean" }, { "name": "string>" }]
2699
2744
  },
2700
2745
  {
2701
2746
  "name": "readOnly",
@@ -2719,7 +2764,7 @@
2719
2764
  "references": [
2720
2765
  {
2721
2766
  "name": "Storybook",
2722
- "url": "https://web-components.beam.viasat.com/?path=/docs/forms-radiobutton"
2767
+ "url": "https://web-components.beam.viasat.com/?path=/docs/forms-switch"
2723
2768
  }
2724
2769
  ]
2725
2770
  }