@viasat/beam-web-components 2.23.0 → 2.25.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",
@@ -104,6 +202,117 @@
104
202
  }
105
203
  ]
106
204
  },
205
+ {
206
+ "name": "bm-alert",
207
+ "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",
208
+ "attributes": [
209
+ {
210
+ "name": "heading",
211
+ "description": "Specify the heading text for Alert",
212
+ "values": []
213
+ },
214
+ {
215
+ "name": "body",
216
+ "description": "Specify the body text for Alert",
217
+ "values": []
218
+ },
219
+ {
220
+ "name": "size",
221
+ "description": "Specify the size of the Alert",
222
+ "values": [{ "name": "sm" }, { "name": "md" }]
223
+ },
224
+ {
225
+ "name": "fullWidth",
226
+ "description": "Specify if the Alert has no border radius",
227
+ "values": []
228
+ },
229
+ {
230
+ "name": "theme",
231
+ "description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
232
+ "values": [{ "name": "light" }, { "name": "dark" }]
233
+ },
234
+ {
235
+ "name": "appearance",
236
+ "description": "Specify the appearance of the Alert",
237
+ "values": [
238
+ { "name": "infoPrimary" },
239
+ { "name": "infoSecondary" },
240
+ { "name": "positive" },
241
+ { "name": "warning" },
242
+ { "name": "negative" }
243
+ ]
244
+ },
245
+ {
246
+ "name": "hidden",
247
+ "description": "Specify if the Alert is hidden",
248
+ "values": []
249
+ },
250
+ {
251
+ "name": "hideIcon",
252
+ "description": "Specify if the icon displays on the Alert",
253
+ "values": []
254
+ },
255
+ {
256
+ "name": "dismissible",
257
+ "description": "Specify if the Alert can be dismissed",
258
+ "values": []
259
+ },
260
+ {
261
+ "name": "disableAutoFocus",
262
+ "description": "Prevent autofocus on show",
263
+ "values": []
264
+ },
265
+ {
266
+ "name": "disableCloseOnEscape",
267
+ "description": "Prevent Escape from closing",
268
+ "values": []
269
+ }
270
+ ],
271
+ "references": [
272
+ {
273
+ "name": "Storybook",
274
+ "url": "https://web-components.beam.viasat.com/?path=/docs/components-alert"
275
+ }
276
+ ]
277
+ },
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
+ },
107
316
  {
108
317
  "name": "bm-box",
109
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",
@@ -507,44 +716,6 @@
507
716
  }
508
717
  ]
509
718
  },
510
- {
511
- "name": "bm-badge-dot",
512
- "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",
513
- "attributes": [
514
- {
515
- "name": "theme",
516
- "description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
517
- "values": [{ "name": "light" }, { "name": "dark" }]
518
- },
519
- {
520
- "name": "appearance",
521
- "description": "Specify the appearance of the BadgeDot",
522
- "values": [
523
- { "name": "infoPrimary" },
524
- { "name": "infoSecondary" },
525
- { "name": "positive" },
526
- { "name": "warning" },
527
- { "name": "negative" }
528
- ]
529
- },
530
- {
531
- "name": "emphasis",
532
- "description": "Specify the emphasis of the BadgeDot",
533
- "values": [{ "name": "strong" }, { "name": "subtle" }]
534
- },
535
- {
536
- "name": "overrideDotColor",
537
- "description": "Overrides default dot color",
538
- "values": []
539
- }
540
- ],
541
- "references": [
542
- {
543
- "name": "Storybook",
544
- "url": "https://web-components.beam.viasat.com/?path=/docs/components-badgedot"
545
- }
546
- ]
547
- },
548
719
  {
549
720
  "name": "bm-breadcrumb",
550
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",
@@ -675,179 +846,8 @@
675
846
  ]
676
847
  },
677
848
  {
678
- "name": "bm-alert",
679
- "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",
680
- "attributes": [
681
- {
682
- "name": "heading",
683
- "description": "Specify the heading text for Alert",
684
- "values": []
685
- },
686
- {
687
- "name": "body",
688
- "description": "Specify the body text for Alert",
689
- "values": []
690
- },
691
- {
692
- "name": "size",
693
- "description": "Specify the size of the Alert",
694
- "values": [{ "name": "sm" }, { "name": "md" }]
695
- },
696
- {
697
- "name": "fullWidth",
698
- "description": "Specify if the Alert has no border radius",
699
- "values": []
700
- },
701
- {
702
- "name": "theme",
703
- "description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
704
- "values": [{ "name": "light" }, { "name": "dark" }]
705
- },
706
- {
707
- "name": "appearance",
708
- "description": "Specify the appearance of the Alert",
709
- "values": [
710
- { "name": "infoPrimary" },
711
- { "name": "infoSecondary" },
712
- { "name": "positive" },
713
- { "name": "warning" },
714
- { "name": "negative" }
715
- ]
716
- },
717
- {
718
- "name": "hidden",
719
- "description": "Specify if the Alert is hidden",
720
- "values": []
721
- },
722
- {
723
- "name": "hideIcon",
724
- "description": "Specify if the icon displays on the Alert",
725
- "values": []
726
- },
727
- {
728
- "name": "dismissible",
729
- "description": "Specify if the Alert can be dismissed",
730
- "values": []
731
- },
732
- {
733
- "name": "disableAutoFocus",
734
- "description": "Prevent autofocus on show",
735
- "values": []
736
- },
737
- {
738
- "name": "disableCloseOnEscape",
739
- "description": "Prevent Escape from closing",
740
- "values": []
741
- }
742
- ],
743
- "references": [
744
- {
745
- "name": "Storybook",
746
- "url": "https://web-components.beam.viasat.com/?path=/docs/components-alert"
747
- }
748
- ]
749
- },
750
- {
751
- "name": "bm-avatar",
752
- "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",
753
- "attributes": [
754
- {
755
- "name": "appearance",
756
- "description": "Specify the appearance of the Avatar",
757
- "values": [{ "name": "accent" }, { "name": "neutral" }]
758
- },
759
- {
760
- "name": "name",
761
- "description": "Specify a name to display initials in the Avatar",
762
- "values": []
763
- },
764
- {
765
- "name": "src",
766
- "description": "Pass an image to the Avatar",
767
- "values": []
768
- },
769
- { "name": "alt", "description": "Specify alt for image", "values": [] },
770
- {
771
- "name": "size",
772
- "description": "Specify the size of the Avatar",
773
- "values": [
774
- { "name": "xs" },
775
- { "name": "sm" },
776
- { "name": "md" },
777
- { "name": "lg" },
778
- { "name": "xl" }
779
- ]
780
- },
781
- {
782
- "name": "disabled",
783
- "description": "Specify if the Avatar is disabled",
784
- "values": []
785
- },
786
- {
787
- "name": "shape",
788
- "description": "Specify the shape of the Avatar",
789
- "values": [{ "name": "circle" }, { "name": "square" }]
790
- },
791
- {
792
- "name": "isInteractive",
793
- "description": "If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer",
794
- "values": []
795
- },
796
- {
797
- "name": "isFocusable",
798
- "description": "If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable",
799
- "values": []
800
- },
801
- { "name": "withBorder", "values": [] }
802
- ],
803
- "references": [
804
- {
805
- "name": "Storybook",
806
- "url": "https://web-components.beam.viasat.com/?path=/docs/components-avatar"
807
- }
808
- ]
809
- },
810
- {
811
- "name": "bm-avatar-group",
812
- "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",
813
- "attributes": [
814
- {
815
- "name": "wrapping",
816
- "description": "Specify if the AvatarGroup wraps",
817
- "values": []
818
- },
819
- {
820
- "name": "maxCount",
821
- "description": "Specify the max number of avatars displayed in the group.",
822
- "values": []
823
- },
824
- {
825
- "name": "size",
826
- "description": "Specify the size of all Avatars",
827
- "values": [
828
- { "name": "xs" },
829
- { "name": "sm" },
830
- { "name": "md" },
831
- { "name": "lg" },
832
- { "name": "xl" }
833
- ]
834
- },
835
- {
836
- "name": "layout",
837
- "description": "Specify the kind of the group.",
838
- "values": [{ "name": "stacked" }, { "name": "spaced" }]
839
- }
840
- ],
841
- "references": [
842
- {
843
- "name": "Storybook",
844
- "url": "https://web-components.beam.viasat.com/?path=/docs/components-avatar"
845
- }
846
- ]
847
- },
848
- {
849
- "name": "bm-close-button",
850
- "description": "`bm-close-button`\n\n### Attributes:\n- **size** - Specify the size of the CloseButton\n- **disabled** - Specify if the CloseButton is disabled\n---\n",
849
+ "name": "bm-close-button",
850
+ "description": "`bm-close-button`\n\n### Attributes:\n- **size** - Specify the size of the CloseButton\n- **disabled** - Specify if the CloseButton is disabled\n---\n",
851
851
  "attributes": [
852
852
  {
853
853
  "name": "size",
@@ -1824,6 +1824,51 @@
1824
1824
  }
1825
1825
  ]
1826
1826
  },
1827
+ {
1828
+ "name": "bm-form",
1829
+ "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",
1830
+ "attributes": [
1831
+ {
1832
+ "name": "validationMode",
1833
+ "description": "Specify if validation runs on change or when loosing focus",
1834
+ "values": [
1835
+ { "name": "onChange" },
1836
+ { "name": "onBlur" },
1837
+ { "name": "onSubmit" }
1838
+ ]
1839
+ },
1840
+ {
1841
+ "name": "initialValues",
1842
+ "description": "Specify initial values on Form controls based on their names",
1843
+ "values": [{ "name": "Record<string" }, { "name": "FormValue>" }]
1844
+ },
1845
+ {
1846
+ "name": "required",
1847
+ "description": "Specify if input is a required",
1848
+ "values": []
1849
+ },
1850
+ {
1851
+ "name": "disabled",
1852
+ "description": "Specify if input is a disabled",
1853
+ "values": []
1854
+ },
1855
+ {
1856
+ "name": "readOnly",
1857
+ "description": "Specify if input is a read only",
1858
+ "values": []
1859
+ },
1860
+ { "name": "action", "values": [] },
1861
+ { "name": "method", "values": [] },
1862
+ { "name": "target", "values": [] },
1863
+ { "name": "enctype", "values": [] }
1864
+ ],
1865
+ "references": [
1866
+ {
1867
+ "name": "Storybook",
1868
+ "url": "https://web-components.beam.viasat.com/?path=/docs/forms-form"
1869
+ }
1870
+ ]
1871
+ },
1827
1872
  {
1828
1873
  "name": "bm-file-upload-button",
1829
1874
  "description": "`bm-file-upload-button`\n\n### Attributes:\n- **error** - Specify if FileUpload is in error state\n- **accept** - Specify the accepted file types\n- **multiple** - Specify if multiple files can be uploaded\n---\n\n\n### **Slots:**\n - **default** - Specify text 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",
@@ -2131,103 +2176,6 @@
2131
2176
  }
2132
2177
  ]
2133
2178
  },
2134
- {
2135
- "name": "bm-form",
2136
- "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",
2137
- "attributes": [
2138
- {
2139
- "name": "validationMode",
2140
- "description": "Specify if validation runs on change or when loosing focus",
2141
- "values": [
2142
- { "name": "onChange" },
2143
- { "name": "onBlur" },
2144
- { "name": "onSubmit" }
2145
- ]
2146
- },
2147
- {
2148
- "name": "initialValues",
2149
- "description": "Specify initial values on Form controls based on their names",
2150
- "values": [{ "name": "Record<string" }, { "name": "FormValue>" }]
2151
- },
2152
- {
2153
- "name": "required",
2154
- "description": "Specify if input is a required",
2155
- "values": []
2156
- },
2157
- {
2158
- "name": "disabled",
2159
- "description": "Specify if input is a disabled",
2160
- "values": []
2161
- },
2162
- {
2163
- "name": "readOnly",
2164
- "description": "Specify if input is a read only",
2165
- "values": []
2166
- },
2167
- { "name": "action", "values": [] },
2168
- { "name": "method", "values": [] },
2169
- { "name": "target", "values": [] },
2170
- { "name": "enctype", "values": [] }
2171
- ],
2172
- "references": [
2173
- {
2174
- "name": "Storybook",
2175
- "url": "https://web-components.beam.viasat.com/?path=/docs/forms-form"
2176
- }
2177
- ]
2178
- },
2179
- {
2180
- "name": "bm-radio-button",
2181
- "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",
2182
- "attributes": [
2183
- {
2184
- "name": "label",
2185
- "description": "Specify the text for the label",
2186
- "values": []
2187
- },
2188
- {
2189
- "name": "error",
2190
- "description": "Specify error text and display error state of a RadioButton",
2191
- "values": []
2192
- },
2193
- {
2194
- "name": "readOnly",
2195
- "description": "Specify if RadioButton displays in a read-only state",
2196
- "values": []
2197
- },
2198
- {
2199
- "name": "disabled",
2200
- "description": "Specify if RadioButton displays in a disabled state",
2201
- "values": []
2202
- },
2203
- {
2204
- "name": "theme",
2205
- "description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
2206
- "values": [{ "name": "light" }, { "name": "dark" }]
2207
- },
2208
- {
2209
- "name": "value",
2210
- "description": "The value attribute for the input element",
2211
- "values": []
2212
- },
2213
- {
2214
- "name": "checked",
2215
- "description": "The checked attribute for the input element",
2216
- "values": []
2217
- },
2218
- {
2219
- "name": "onKeyDown",
2220
- "description": "A user-defined function to handle keydown events",
2221
- "values": [{ "name": "(event: KeyboardEvent) => void" }]
2222
- }
2223
- ],
2224
- "references": [
2225
- {
2226
- "name": "Storybook",
2227
- "url": "https://web-components.beam.viasat.com/?path=/docs/forms-radiobutton"
2228
- }
2229
- ]
2230
- },
2231
2179
  {
2232
2180
  "name": "bm-native-select",
2233
2181
  "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",
@@ -2293,49 +2241,6 @@
2293
2241
  }
2294
2242
  ]
2295
2243
  },
2296
- {
2297
- "name": "bm-switch",
2298
- "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.",
2299
- "attributes": [
2300
- {
2301
- "name": "onText",
2302
- "description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
2303
- "values": []
2304
- },
2305
- {
2306
- "name": "offText",
2307
- "description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
2308
- "values": []
2309
- },
2310
- {
2311
- "name": "textPosition",
2312
- "description": "Specify the position of the side label",
2313
- "values": [{ "name": "before" }, { "name": "after" }]
2314
- },
2315
- {
2316
- "name": "readOnly",
2317
- "description": "Specify if Switch displays in a read-only state",
2318
- "values": []
2319
- },
2320
- {
2321
- "name": "disabled",
2322
- "description": "Specify if Switch displays in a disabled state",
2323
- "values": []
2324
- },
2325
- { "name": "checked", "values": [] },
2326
- {
2327
- "name": "value",
2328
- "description": "The value attribute for the input element",
2329
- "values": []
2330
- }
2331
- ],
2332
- "references": [
2333
- {
2334
- "name": "Storybook",
2335
- "url": "https://web-components.beam.viasat.com/?path=/docs/forms-switch"
2336
- }
2337
- ]
2338
- },
2339
2244
  {
2340
2245
  "name": "bm-text-area",
2341
2246
  "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",
@@ -2426,6 +2331,101 @@
2426
2331
  }
2427
2332
  ]
2428
2333
  },
2334
+ {
2335
+ "name": "bm-radio-button",
2336
+ "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",
2337
+ "attributes": [
2338
+ {
2339
+ "name": "label",
2340
+ "description": "Specify the text for the label",
2341
+ "values": []
2342
+ },
2343
+ {
2344
+ "name": "error",
2345
+ "description": "Specify error text and display error state of a RadioButton",
2346
+ "values": []
2347
+ },
2348
+ {
2349
+ "name": "readOnly",
2350
+ "description": "Specify if RadioButton displays in a read-only state",
2351
+ "values": []
2352
+ },
2353
+ {
2354
+ "name": "disabled",
2355
+ "description": "Specify if RadioButton displays in a disabled state",
2356
+ "values": []
2357
+ },
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
+ },
2363
+ {
2364
+ "name": "value",
2365
+ "description": "The value attribute for the input element",
2366
+ "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
+ }
2378
+ ],
2379
+ "references": [
2380
+ {
2381
+ "name": "Storybook",
2382
+ "url": "https://web-components.beam.viasat.com/?path=/docs/forms-radiobutton"
2383
+ }
2384
+ ]
2385
+ },
2386
+ {
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.",
2389
+ "attributes": [
2390
+ {
2391
+ "name": "onText",
2392
+ "description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
2393
+ "values": []
2394
+ },
2395
+ {
2396
+ "name": "offText",
2397
+ "description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
2398
+ "values": []
2399
+ },
2400
+ {
2401
+ "name": "textPosition",
2402
+ "description": "Specify the position of the side label",
2403
+ "values": [{ "name": "before" }, { "name": "after" }]
2404
+ },
2405
+ {
2406
+ "name": "readOnly",
2407
+ "description": "Specify if Switch displays in a read-only state",
2408
+ "values": []
2409
+ },
2410
+ {
2411
+ "name": "disabled",
2412
+ "description": "Specify if Switch displays in a disabled state",
2413
+ "values": []
2414
+ },
2415
+ { "name": "checked", "values": [] },
2416
+ {
2417
+ "name": "value",
2418
+ "description": "The value attribute for the input element",
2419
+ "values": []
2420
+ }
2421
+ ],
2422
+ "references": [
2423
+ {
2424
+ "name": "Storybook",
2425
+ "url": "https://web-components.beam.viasat.com/?path=/docs/forms-switch"
2426
+ }
2427
+ ]
2428
+ },
2429
2429
  {
2430
2430
  "name": "bm-text-field",
2431
2431
  "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",