@viasat/beam-web-components 2.1.0 → 2.1.1

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.
@@ -2,6 +2,65 @@
2
2
  "$schema": "https://raw.githubusercontent.com/microsoft/vscode-html-languageservice/main/docs/customData.schema.json",
3
3
  "version": 1.1,
4
4
  "tags": [
5
+ {
6
+ "name": "bm-accordion",
7
+ "description": "`bm-accordion`\n\n### Attributes:\n- **size** - Specify size of an Accordion\n- **heading** - Specify heading content for the Accordion\n- **open** - Specify if an Accordion is open.\nIf this is specified, the component becomes controlled\n- **defaultOpen** - Specify if an Accordion is open by default\n- **id** - Unique identifier of Accordion\n---\n\n\n### **Events:**\n - **bm-toggle** - Dispatched when the Accordion is toggled\n\n### **Slots:**\n - **default** - Specify body content for the Accordion\n- **icon** - Display an icon before the Accordion heading\n- **heading** - Specify heading content for the Accordion",
8
+ "attributes": [
9
+ {
10
+ "name": "size",
11
+ "description": "Specify size of an Accordion",
12
+ "values": [{ "name": "sm" }, { "name": "md" }, { "name": "lg" }]
13
+ },
14
+ {
15
+ "name": "heading",
16
+ "description": "Specify heading content for the Accordion",
17
+ "values": []
18
+ },
19
+ {
20
+ "name": "open",
21
+ "description": "Specify if an Accordion is open.\nIf this is specified, the component becomes controlled",
22
+ "values": []
23
+ },
24
+ {
25
+ "name": "defaultOpen",
26
+ "description": "Specify if an Accordion is open by default",
27
+ "values": []
28
+ },
29
+ {
30
+ "name": "id",
31
+ "description": "Unique identifier of Accordion",
32
+ "values": []
33
+ }
34
+ ],
35
+ "references": [
36
+ {
37
+ "name": "Storybook",
38
+ "url": "https://web-components.beam.viasat.com/?path=/docs/components-accordion"
39
+ }
40
+ ]
41
+ },
42
+ {
43
+ "name": "bm-accordion-group",
44
+ "description": "`bm-accordion-group`\n\n### Attributes:\n- **size** - Specify the size of the AccordionGroup\n- **singleExpand** - Specify if only one row item can be expanded at a time\n---\n\n\n### **Slots:**\n - **default** - Specify which Accordions are in the AccordionGroup",
45
+ "attributes": [
46
+ {
47
+ "name": "size",
48
+ "description": "Specify the size of the AccordionGroup",
49
+ "values": [{ "name": "sm" }, { "name": "md" }, { "name": "lg" }]
50
+ },
51
+ {
52
+ "name": "singleExpand",
53
+ "description": "Specify if only one row item can be expanded at a time",
54
+ "values": []
55
+ }
56
+ ],
57
+ "references": [
58
+ {
59
+ "name": "Storybook",
60
+ "url": "https://web-components.beam.viasat.com/?path=/docs/components-accordion"
61
+ }
62
+ ]
63
+ },
5
64
  {
6
65
  "name": "bm-badge",
7
66
  "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",
@@ -87,6 +146,177 @@
87
146
  }
88
147
  ]
89
148
  },
149
+ {
150
+ "name": "bm-avatar",
151
+ "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",
152
+ "attributes": [
153
+ {
154
+ "name": "appearance",
155
+ "description": "Specify the appearance of the Avatar",
156
+ "values": [{ "name": "accent" }, { "name": "neutral" }]
157
+ },
158
+ {
159
+ "name": "name",
160
+ "description": "Specify a name to display initials in the Avatar",
161
+ "values": []
162
+ },
163
+ {
164
+ "name": "src",
165
+ "description": "Pass an image to the Avatar",
166
+ "values": []
167
+ },
168
+ { "name": "alt", "description": "Specify alt for image", "values": [] },
169
+ {
170
+ "name": "size",
171
+ "description": "Specify the size of the Avatar",
172
+ "values": [
173
+ { "name": "xs" },
174
+ { "name": "sm" },
175
+ { "name": "md" },
176
+ { "name": "lg" },
177
+ { "name": "xl" }
178
+ ]
179
+ },
180
+ {
181
+ "name": "disabled",
182
+ "description": "Specify if the Avatar is disabled",
183
+ "values": []
184
+ },
185
+ {
186
+ "name": "shape",
187
+ "description": "Specify the shape of the Avatar",
188
+ "values": [{ "name": "circle" }, { "name": "square" }]
189
+ },
190
+ {
191
+ "name": "isInteractive",
192
+ "description": "If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer",
193
+ "values": []
194
+ },
195
+ {
196
+ "name": "isFocusable",
197
+ "description": "If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable",
198
+ "values": []
199
+ },
200
+ { "name": "withBorder", "values": [] }
201
+ ],
202
+ "references": [
203
+ {
204
+ "name": "Storybook",
205
+ "url": "https://web-components.beam.viasat.com/?path=/docs/components-avatar"
206
+ }
207
+ ]
208
+ },
209
+ {
210
+ "name": "bm-avatar-group",
211
+ "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",
212
+ "attributes": [
213
+ {
214
+ "name": "wrapping",
215
+ "description": "Specify if the AvatarGroup wraps",
216
+ "values": []
217
+ },
218
+ {
219
+ "name": "maxCount",
220
+ "description": "Specify the max number of avatars displayed in the group.",
221
+ "values": []
222
+ },
223
+ {
224
+ "name": "size",
225
+ "description": "Specify the size of all Avatars",
226
+ "values": [
227
+ { "name": "xs" },
228
+ { "name": "sm" },
229
+ { "name": "md" },
230
+ { "name": "lg" },
231
+ { "name": "xl" }
232
+ ]
233
+ },
234
+ {
235
+ "name": "layout",
236
+ "description": "Specify the kind of the group.",
237
+ "values": [{ "name": "stacked" }, { "name": "spaced" }]
238
+ }
239
+ ],
240
+ "references": [
241
+ {
242
+ "name": "Storybook",
243
+ "url": "https://web-components.beam.viasat.com/?path=/docs/components-avatar"
244
+ }
245
+ ]
246
+ },
247
+ {
248
+ "name": "bm-alert",
249
+ "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",
250
+ "attributes": [
251
+ {
252
+ "name": "heading",
253
+ "description": "Specify the heading text for Alert",
254
+ "values": []
255
+ },
256
+ {
257
+ "name": "body",
258
+ "description": "Specify the body text for Alert",
259
+ "values": []
260
+ },
261
+ {
262
+ "name": "size",
263
+ "description": "Specify the size of the Alert",
264
+ "values": [{ "name": "sm" }, { "name": "md" }]
265
+ },
266
+ {
267
+ "name": "fullWidth",
268
+ "description": "Specify if the Alert has no border radius",
269
+ "values": []
270
+ },
271
+ {
272
+ "name": "theme",
273
+ "description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
274
+ "values": [{ "name": "light" }, { "name": "dark" }]
275
+ },
276
+ {
277
+ "name": "appearance",
278
+ "description": "Specify the appearance of the Alert",
279
+ "values": [
280
+ { "name": "infoPrimary" },
281
+ { "name": "infoSecondary" },
282
+ { "name": "positive" },
283
+ { "name": "warning" },
284
+ { "name": "negative" }
285
+ ]
286
+ },
287
+ {
288
+ "name": "hidden",
289
+ "description": "Specify if the Alert is hidden",
290
+ "values": []
291
+ },
292
+ {
293
+ "name": "hideIcon",
294
+ "description": "Specify if the icon displays on the Alert",
295
+ "values": []
296
+ },
297
+ {
298
+ "name": "dismissible",
299
+ "description": "Specify if the Alert can be dismissed",
300
+ "values": []
301
+ },
302
+ {
303
+ "name": "disableAutoFocus",
304
+ "description": "Prevent autofocus on show",
305
+ "values": []
306
+ },
307
+ {
308
+ "name": "disableCloseOnEscape",
309
+ "description": "Prevent Escape from closing",
310
+ "values": []
311
+ }
312
+ ],
313
+ "references": [
314
+ {
315
+ "name": "Storybook",
316
+ "url": "https://web-components.beam.viasat.com/?path=/docs/components-alert"
317
+ }
318
+ ]
319
+ },
90
320
  {
91
321
  "name": "bm-box",
92
322
  "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",
@@ -491,252 +721,22 @@
491
721
  ]
492
722
  },
493
723
  {
494
- "name": "bm-accordion",
495
- "description": "`bm-accordion`\n\n### Attributes:\n- **size** - Specify size of an Accordion\n- **heading** - Specify heading content for the Accordion\n- **open** - Specify if an Accordion is open.\nIf this is specified, the component becomes controlled\n- **defaultOpen** - Specify if an Accordion is open by default\n- **id** - Unique identifier of Accordion\n---\n\n\n### **Events:**\n - **bm-toggle** - Dispatched when the Accordion is toggled\n\n### **Slots:**\n - **default** - Specify body content for the Accordion\n- **icon** - Display an icon before the Accordion heading\n- **heading** - Specify heading content for the Accordion",
724
+ "name": "bm-breadcrumb",
725
+ "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",
496
726
  "attributes": [
497
727
  {
498
- "name": "size",
499
- "description": "Specify size of an Accordion",
500
- "values": [{ "name": "sm" }, { "name": "md" }, { "name": "lg" }]
501
- },
502
- {
503
- "name": "heading",
504
- "description": "Specify heading content for the Accordion",
728
+ "name": "wrap",
729
+ "description": "Specify if items wrap or collapse to an ellipsis",
505
730
  "values": []
506
731
  },
507
732
  {
508
- "name": "open",
509
- "description": "Specify if an Accordion is open.\nIf this is specified, the component becomes controlled",
733
+ "name": "itemsBeforeCollapse",
734
+ "description": "Specify how many items show before ellipsis",
510
735
  "values": []
511
736
  },
512
737
  {
513
- "name": "defaultOpen",
514
- "description": "Specify if an Accordion is open by default",
515
- "values": []
516
- },
517
- {
518
- "name": "id",
519
- "description": "Unique identifier of Accordion",
520
- "values": []
521
- }
522
- ],
523
- "references": [
524
- {
525
- "name": "Storybook",
526
- "url": "https://web-components.beam.viasat.com/?path=/docs/components-accordion"
527
- }
528
- ]
529
- },
530
- {
531
- "name": "bm-accordion-group",
532
- "description": "`bm-accordion-group`\n\n### Attributes:\n- **size** - Specify the size of the AccordionGroup\n- **singleExpand** - Specify if only one row item can be expanded at a time\n---\n\n\n### **Slots:**\n - **default** - Specify which Accordions are in the AccordionGroup",
533
- "attributes": [
534
- {
535
- "name": "size",
536
- "description": "Specify the size of the AccordionGroup",
537
- "values": [{ "name": "sm" }, { "name": "md" }, { "name": "lg" }]
538
- },
539
- {
540
- "name": "singleExpand",
541
- "description": "Specify if only one row item can be expanded at a time",
542
- "values": []
543
- }
544
- ],
545
- "references": [
546
- {
547
- "name": "Storybook",
548
- "url": "https://web-components.beam.viasat.com/?path=/docs/components-accordion"
549
- }
550
- ]
551
- },
552
- {
553
- "name": "bm-alert",
554
- "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",
555
- "attributes": [
556
- {
557
- "name": "heading",
558
- "description": "Specify the heading text for Alert",
559
- "values": []
560
- },
561
- {
562
- "name": "body",
563
- "description": "Specify the body text for Alert",
564
- "values": []
565
- },
566
- {
567
- "name": "size",
568
- "description": "Specify the size of the Alert",
569
- "values": [{ "name": "sm" }, { "name": "md" }]
570
- },
571
- {
572
- "name": "fullWidth",
573
- "description": "Specify if the Alert has no border radius",
574
- "values": []
575
- },
576
- {
577
- "name": "theme",
578
- "description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
579
- "values": [{ "name": "light" }, { "name": "dark" }]
580
- },
581
- {
582
- "name": "appearance",
583
- "description": "Specify the appearance of the Alert",
584
- "values": [
585
- { "name": "infoPrimary" },
586
- { "name": "infoSecondary" },
587
- { "name": "positive" },
588
- { "name": "warning" },
589
- { "name": "negative" }
590
- ]
591
- },
592
- {
593
- "name": "hidden",
594
- "description": "Specify if the Alert is hidden",
595
- "values": []
596
- },
597
- {
598
- "name": "hideIcon",
599
- "description": "Specify if the icon displays on the Alert",
600
- "values": []
601
- },
602
- {
603
- "name": "dismissible",
604
- "description": "Specify if the Alert can be dismissed",
605
- "values": []
606
- },
607
- {
608
- "name": "disableAutoFocus",
609
- "description": "Prevent autofocus on show",
610
- "values": []
611
- },
612
- {
613
- "name": "disableCloseOnEscape",
614
- "description": "Prevent Escape from closing",
615
- "values": []
616
- }
617
- ],
618
- "references": [
619
- {
620
- "name": "Storybook",
621
- "url": "https://web-components.beam.viasat.com/?path=/docs/components-alert"
622
- }
623
- ]
624
- },
625
- {
626
- "name": "bm-avatar",
627
- "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",
628
- "attributes": [
629
- {
630
- "name": "appearance",
631
- "description": "Specify the appearance of the Avatar",
632
- "values": [{ "name": "accent" }, { "name": "neutral" }]
633
- },
634
- {
635
- "name": "name",
636
- "description": "Specify a name to display initials in the Avatar",
637
- "values": []
638
- },
639
- {
640
- "name": "src",
641
- "description": "Pass an image to the Avatar",
642
- "values": []
643
- },
644
- { "name": "alt", "description": "Specify alt for image", "values": [] },
645
- {
646
- "name": "size",
647
- "description": "Specify the size of the Avatar",
648
- "values": [
649
- { "name": "xs" },
650
- { "name": "sm" },
651
- { "name": "md" },
652
- { "name": "lg" },
653
- { "name": "xl" }
654
- ]
655
- },
656
- {
657
- "name": "disabled",
658
- "description": "Specify if the Avatar is disabled",
659
- "values": []
660
- },
661
- {
662
- "name": "shape",
663
- "description": "Specify the shape of the Avatar",
664
- "values": [{ "name": "circle" }, { "name": "square" }]
665
- },
666
- {
667
- "name": "isInteractive",
668
- "description": "If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer",
669
- "values": []
670
- },
671
- {
672
- "name": "isFocusable",
673
- "description": "If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable",
674
- "values": []
675
- },
676
- { "name": "withBorder", "values": [] }
677
- ],
678
- "references": [
679
- {
680
- "name": "Storybook",
681
- "url": "https://web-components.beam.viasat.com/?path=/docs/components-avatar"
682
- }
683
- ]
684
- },
685
- {
686
- "name": "bm-avatar-group",
687
- "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",
688
- "attributes": [
689
- {
690
- "name": "wrapping",
691
- "description": "Specify if the AvatarGroup wraps",
692
- "values": []
693
- },
694
- {
695
- "name": "maxCount",
696
- "description": "Specify the max number of avatars displayed in the group.",
697
- "values": []
698
- },
699
- {
700
- "name": "size",
701
- "description": "Specify the size of all Avatars",
702
- "values": [
703
- { "name": "xs" },
704
- { "name": "sm" },
705
- { "name": "md" },
706
- { "name": "lg" },
707
- { "name": "xl" }
708
- ]
709
- },
710
- {
711
- "name": "layout",
712
- "description": "Specify the kind of the group.",
713
- "values": [{ "name": "stacked" }, { "name": "spaced" }]
714
- }
715
- ],
716
- "references": [
717
- {
718
- "name": "Storybook",
719
- "url": "https://web-components.beam.viasat.com/?path=/docs/components-avatar"
720
- }
721
- ]
722
- },
723
- {
724
- "name": "bm-breadcrumb",
725
- "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",
726
- "attributes": [
727
- {
728
- "name": "wrap",
729
- "description": "Specify if items wrap or collapse to an ellipsis",
730
- "values": []
731
- },
732
- {
733
- "name": "itemsBeforeCollapse",
734
- "description": "Specify how many items show before ellipsis",
735
- "values": []
736
- },
737
- {
738
- "name": "itemsAfterCollapse",
739
- "description": "Specify how many items show after ellipsis",
738
+ "name": "itemsAfterCollapse",
739
+ "description": "Specify how many items show after ellipsis",
740
740
  "values": []
741
741
  },
742
742
  {
@@ -1844,249 +1844,303 @@
1844
1844
  ]
1845
1845
  },
1846
1846
  {
1847
- "name": "bm-native-select",
1848
- "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",
1847
+ "name": "bm-file-upload-button",
1848
+ "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",
1849
1849
  "attributes": [
1850
1850
  {
1851
- "name": "required",
1852
- "description": "Specify if NativeSelect is a required input",
1851
+ "name": "error",
1852
+ "description": "Specify if FileUpload is in error state",
1853
1853
  "values": []
1854
1854
  },
1855
1855
  {
1856
- "name": "readOnly",
1857
- "description": "Specify if NativeSelect displays in a read-only state",
1856
+ "name": "accept",
1857
+ "description": "Specify the accepted file types",
1858
1858
  "values": []
1859
1859
  },
1860
1860
  {
1861
- "name": "disabled",
1862
- "description": "Specify if NativeSelect displays in a disabled state",
1861
+ "name": "multiple",
1862
+ "description": "Specify if multiple files can be uploaded",
1863
1863
  "values": []
1864
1864
  },
1865
1865
  {
1866
- "name": "error",
1867
- "description": "Specify error text and display error state of a NativeSelect",
1868
- "values": [{ "name": "Optional<string>" }]
1869
- },
1870
- {
1871
- "name": "fluid",
1872
- "description": "Specify if NativeSelect is fluid",
1873
- "values": []
1866
+ "name": "appearance",
1867
+ "description": "Specify the appearance of a Button",
1868
+ "values": [
1869
+ { "name": "accent" },
1870
+ { "name": "neutral" },
1871
+ { "name": "destructive" },
1872
+ { "name": "neutral-subtle" }
1873
+ ]
1874
1874
  },
1875
1875
  {
1876
- "name": "width",
1877
- "description": "Specify the width of NativeSelect",
1878
- "values": [{ "name": "Optional<string>" }]
1879
- },
1876
+ "name": "kind",
1877
+ "description": "Specify the kind of Button",
1878
+ "values": [
1879
+ { "name": "filled" },
1880
+ { "name": "outline" },
1881
+ { "name": "ghost" },
1882
+ { "name": "bare" }
1883
+ ]
1884
+ },
1880
1885
  {
1881
- "name": "ellipse",
1882
- "description": "Specify if overflow displays ellipsis",
1886
+ "name": "size",
1887
+ "description": "Specify the size of a Button",
1888
+ "values": [{ "name": "sm" }, { "name": "md" }, { "name": "lg" }]
1889
+ },
1890
+ {
1891
+ "name": "disabled",
1892
+ "description": "Specify if the Button is disabled",
1883
1893
  "values": []
1884
1894
  },
1885
1895
  {
1886
- "name": "hideRequiredMarker",
1887
- "description": "Specify if the NativeSelect displays with an asterisk",
1896
+ "name": "fluid",
1897
+ "description": "Specify if Button is fluid",
1888
1898
  "values": []
1889
1899
  },
1890
1900
  {
1891
- "name": "theme",
1892
- "description": "Specify the theme of the NativeSelect. By default it inherits the theme from the parent",
1893
- "values": [{ "name": "Optional<ThemeTypes>" }]
1901
+ "name": "width",
1902
+ "description": "Specify the width of a Button",
1903
+ "values": []
1894
1904
  },
1895
- { "name": "id", "values": [] },
1896
- { "name": "name", "values": [] },
1897
- { "name": "value", "values": [] },
1898
1905
  {
1899
- "name": "validationRules",
1900
- "values": [{ "name": "Array<FormValidator>" }]
1906
+ "name": "height",
1907
+ "description": "Specify the height of a Button",
1908
+ "values": []
1901
1909
  },
1902
1910
  {
1903
- "name": "input-aria-label",
1904
- "values": [{ "name": "Optional<string>" }]
1905
- }
1911
+ "name": "theme",
1912
+ "description": "Specify the theme of the Button",
1913
+ "values": [{ "name": "light" }, { "name": "dark" }]
1914
+ },
1915
+ {
1916
+ "name": "iconOnly",
1917
+ "description": "Specify if the icon displays without text",
1918
+ "values": []
1919
+ },
1920
+ { "name": "type", "values": [] }
1906
1921
  ],
1907
1922
  "references": [
1908
1923
  {
1909
1924
  "name": "Storybook",
1910
- "url": "https://web-components.beam.viasat.com/?path=/docs/forms-nativeselect"
1925
+ "url": "https://web-components.beam.viasat.com/?path=/docs/forms-fileupload"
1911
1926
  }
1912
1927
  ]
1913
1928
  },
1914
1929
  {
1915
- "name": "bm-radio-button",
1916
- "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",
1930
+ "name": "bm-file-upload-dropzone",
1931
+ "description": "`bm-file-upload-dropzone`\n\n### Attributes:\n- **error** - Specify if FileUpload is in error state\n- **theme** - Specify the theme of the FileUpload. By default it inherits the theme from the parent\n- **disabled** - Specify if the FileUpload is disabled\n- **accept** - Specify the accepted file types\n- **name** - Specify the name of the FileUpload\n- **multiple** - Specify if multiple files can be uploaded\n---\n\n\n### **Slots:**\n - **default** - Specify text for the Dropzone",
1917
1932
  "attributes": [
1918
- {
1919
- "name": "label",
1920
- "description": "Specify the text for the label",
1921
- "values": []
1922
- },
1923
1933
  {
1924
1934
  "name": "error",
1925
- "description": "Specify error text and display error state of a RadioButton",
1935
+ "description": "Specify if FileUpload is in error state",
1926
1936
  "values": []
1927
1937
  },
1928
1938
  {
1929
- "name": "readOnly",
1930
- "description": "Specify if RadioButton displays in a read-only state",
1931
- "values": []
1939
+ "name": "theme",
1940
+ "description": "Specify the theme of the FileUpload. By default it inherits the theme from the parent",
1941
+ "values": [{ "name": "light" }, { "name": "dark" }]
1932
1942
  },
1933
1943
  {
1934
1944
  "name": "disabled",
1935
- "description": "Specify if RadioButton displays in a disabled state",
1945
+ "description": "Specify if the FileUpload is disabled",
1936
1946
  "values": []
1937
1947
  },
1938
1948
  {
1939
- "name": "theme",
1940
- "description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
1941
- "values": [{ "name": "light" }, { "name": "dark" }]
1942
- },
1943
- {
1944
- "name": "value",
1945
- "description": "The value attribute for the input element",
1949
+ "name": "accept",
1950
+ "description": "Specify the accepted file types",
1946
1951
  "values": []
1947
1952
  },
1948
1953
  {
1949
- "name": "checked",
1950
- "description": "The checked attribute for the input element",
1954
+ "name": "name",
1955
+ "description": "Specify the name of the FileUpload",
1951
1956
  "values": []
1952
1957
  },
1953
1958
  {
1954
- "name": "onKeyDown",
1955
- "description": "A user-defined function to handle keydown events",
1956
- "values": [{ "name": "(event: KeyboardEvent) => void" }]
1959
+ "name": "multiple",
1960
+ "description": "Specify if multiple files can be uploaded",
1961
+ "values": []
1957
1962
  }
1958
1963
  ],
1959
1964
  "references": [
1960
1965
  {
1961
1966
  "name": "Storybook",
1962
- "url": "https://web-components.beam.viasat.com/?path=/docs/forms-radiobutton"
1967
+ "url": "https://web-components.beam.viasat.com/?path=/docs/forms-fileupload"
1963
1968
  }
1964
1969
  ]
1965
1970
  },
1966
1971
  {
1967
- "name": "bm-switch",
1968
- "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.",
1972
+ "name": "bm-file-upload-list-item",
1973
+ "description": "`bm-file-upload-list-item`\n\n### Attributes:\n- **error** - Specify error text and display error state of list item\n- **fileName** - The name of the uploaded file\n- **fileSize** - The size of the uploaded file\n- **size** - Specify the size of the item\n- **thumbnail** - Specify if the item displays a default thumbnail or a preview of the image being uploaded. Image only displays for size lg.\n- **state** - Specify the status of the file\n- **progress** - Specify the progress of the file upload\n- **theme** - Specify the theme of the FileUpload. By default it inherits the theme from the parent\n- **disabled** - Specify if the FileUpload is disabled\n---\n\n\n### **Events:**\n - **bm-dismiss** - Dispatched when the dismiss button is clicked",
1969
1974
  "attributes": [
1970
1975
  {
1971
- "name": "onText",
1972
- "description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
1976
+ "name": "error",
1977
+ "description": "Specify error text and display error state of list item",
1973
1978
  "values": []
1974
1979
  },
1975
1980
  {
1976
- "name": "offText",
1977
- "description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
1981
+ "name": "fileName",
1982
+ "description": "The name of the uploaded file",
1978
1983
  "values": []
1979
1984
  },
1980
1985
  {
1981
- "name": "textPosition",
1982
- "description": "Specify the position of the side label",
1983
- "values": [{ "name": "before" }, { "name": "after" }]
1986
+ "name": "fileSize",
1987
+ "description": "The size of the uploaded file",
1988
+ "values": []
1984
1989
  },
1985
1990
  {
1986
- "name": "readOnly",
1987
- "description": "Specify if Switch displays in a read-only state",
1991
+ "name": "size",
1992
+ "description": "Specify the size of the item",
1993
+ "values": [{ "name": "md" }, { "name": "lg" }]
1994
+ },
1995
+ {
1996
+ "name": "thumbnail",
1997
+ "description": "Specify if the item displays a default thumbnail or a preview of the image being uploaded. Image only displays for size lg.",
1988
1998
  "values": []
1989
1999
  },
1990
2000
  {
1991
- "name": "disabled",
1992
- "description": "Specify if Switch displays in a disabled state",
2001
+ "name": "state",
2002
+ "description": "Specify the status of the file",
2003
+ "values": [
2004
+ { "name": "uploading" },
2005
+ { "name": "success" },
2006
+ { "name": "uploaded" },
2007
+ { "name": "error" }
2008
+ ]
2009
+ },
2010
+ {
2011
+ "name": "progress",
2012
+ "description": "Specify the progress of the file upload",
1993
2013
  "values": []
1994
2014
  },
1995
- { "name": "checked", "values": [] },
1996
2015
  {
1997
- "name": "value",
1998
- "description": "The value attribute for the input element",
2016
+ "name": "theme",
2017
+ "description": "Specify the theme of the FileUpload. By default it inherits the theme from the parent",
2018
+ "values": [{ "name": "light" }, { "name": "dark" }]
2019
+ },
2020
+ {
2021
+ "name": "disabled",
2022
+ "description": "Specify if the FileUpload is disabled",
1999
2023
  "values": []
2000
2024
  }
2001
2025
  ],
2002
2026
  "references": [
2003
2027
  {
2004
2028
  "name": "Storybook",
2005
- "url": "https://web-components.beam.viasat.com/?path=/docs/forms-switch"
2029
+ "url": "https://web-components.beam.viasat.com/?path=/docs/forms-fileupload"
2006
2030
  }
2007
2031
  ]
2008
2032
  },
2009
2033
  {
2010
- "name": "bm-text-area",
2011
- "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",
2034
+ "name": "bm-file-upload-list",
2035
+ "description": "`bm-file-upload-list`\n\n### Attributes:\n- **thumbnail** - Specify if the all items displays with a default thumbnail or a preview of the image being uploaded. Image only displays for size lg.\n- **size** - Specify FileUpload List size\n- **theme** - Specify the theme of the FileUpload. By default it inherits the theme from the parent\n- **disabled** - Specify if the FileUpload is disabled\n- **renderItem** - Specify a render function for the list item\n---\n\n\n### **Slots:**\n - **default** - Specify the list items",
2012
2036
  "attributes": [
2013
2037
  {
2014
- "name": "rows",
2015
- "description": "Specify the height of TextArea",
2016
- "values": [{ "name": "Optional<number>" }]
2038
+ "name": "thumbnail",
2039
+ "description": "Specify if the all items displays with a default thumbnail or a preview of the image being uploaded. Image only displays for size lg.",
2040
+ "values": []
2017
2041
  },
2018
2042
  {
2019
- "name": "cols",
2020
- "description": "Specify the width of TextArea",
2021
- "values": [{ "name": "Optional<number>" }]
2043
+ "name": "size",
2044
+ "description": "Specify FileUpload List size",
2045
+ "values": [{ "name": "md" }, { "name": "lg" }]
2022
2046
  },
2023
2047
  {
2024
- "name": "placeholder",
2025
- "description": "Specify placeholder text for TextArea",
2026
- "values": [{ "name": "Optional<string>" }]
2048
+ "name": "theme",
2049
+ "description": "Specify the theme of the FileUpload. By default it inherits the theme from the parent",
2050
+ "values": [{ "name": "light" }, { "name": "dark" }]
2027
2051
  },
2028
2052
  {
2029
- "name": "required",
2030
- "description": "Specify if TextArea is a required input",
2053
+ "name": "disabled",
2054
+ "description": "Specify if the FileUpload is disabled",
2031
2055
  "values": []
2032
2056
  },
2033
2057
  {
2034
- "name": "hideRequiredMarker",
2035
- "description": "Specify if the TextArea displays with an asterisk",
2058
+ "name": "renderItem",
2059
+ "description": "Specify a render function for the list item",
2060
+ "values": [
2061
+ { "name": "(fileItem: FileItem, dismissFile: () => void) => void" }
2062
+ ]
2063
+ }
2064
+ ],
2065
+ "references": [
2066
+ {
2067
+ "name": "Storybook",
2068
+ "url": "https://web-components.beam.viasat.com/?path=/docs/forms-fileupload"
2069
+ }
2070
+ ]
2071
+ },
2072
+ {
2073
+ "name": "bm-file-upload",
2074
+ "description": "`bm-file-upload`\n\n### Attributes:\n- **accept** - Specify what types of files can be uploaded\n- **error** - Specify error text and display error state of FileUpload\n- **disabled** - Specify if FileUpload is in disabled state\n- **multiple** - Specify if more than one file can be can be uploaded\n- **fileLimit** - Specify how many files can be uploaded\n- **maxFileSize** - Specify the maximum file size that can be uploaded\n- **required** - Specify if FileUpload is a required input\n- **readOnly** - Specify if FileUpload is in read-only state\n- **hideRequiredMarker** - Specify if FileUpload displays with an asterisk\n- **validationRules** - Specify form validation rules for FileUpload\n- **fluid** - Specify if FileUpload is fluid\n- **width** - Specify the width of FileUpload\n- **theme** - Specify the theme of the FileUpload. By default it inherits the theme from the parent\n---\n\n\n### **Events:**\n - **bm-selected** - Dispatched when a file is uploaded. Preventing default on this event will make upload asynchronous\n\n### **Slots:**\n - **label** - Specify Label for for FileUpload\n- **helper-text** - Specify HelperText for FileUpload",
2075
+ "attributes": [
2076
+ {
2077
+ "name": "accept",
2078
+ "description": "Specify what types of files can be uploaded",
2036
2079
  "values": []
2037
2080
  },
2038
2081
  {
2039
2082
  "name": "error",
2040
- "description": "Specify error text and display error state of a TextArea",
2041
- "values": [{ "name": "Optional<string>" }]
2083
+ "description": "Specify error text and display error state of FileUpload",
2084
+ "values": []
2042
2085
  },
2043
2086
  {
2044
- "name": "readOnly",
2045
- "description": "Specify if TextArea displays in a read-only state",
2087
+ "name": "disabled",
2088
+ "description": "Specify if FileUpload is in disabled state",
2046
2089
  "values": []
2047
2090
  },
2048
2091
  {
2049
- "name": "disabled",
2050
- "description": "Specify if TextArea displays in a disabled state",
2092
+ "name": "multiple",
2093
+ "description": "Specify if more than one file can be can be uploaded",
2051
2094
  "values": []
2052
2095
  },
2053
2096
  {
2054
- "name": "fluid",
2055
- "description": "Specify if TextArea is fluid",
2097
+ "name": "fileLimit",
2098
+ "description": "Specify how many files can be uploaded",
2056
2099
  "values": []
2057
2100
  },
2058
2101
  {
2059
- "name": "width",
2060
- "description": "Specify the width of TextArea",
2061
- "values": [{ "name": "Optional<string>" }]
2102
+ "name": "maxFileSize",
2103
+ "description": "Specify the maximum file size that can be uploaded",
2104
+ "values": []
2062
2105
  },
2063
2106
  {
2064
- "name": "hideResize",
2065
- "description": "Specify if TextArea can be manually resized",
2107
+ "name": "required",
2108
+ "description": "Specify if FileUpload is a required input",
2066
2109
  "values": []
2067
2110
  },
2068
2111
  {
2069
- "name": "maxCount",
2070
- "description": "Specify the maximum character count for the TextArea",
2071
- "values": [{ "name": "Optional<number>" }]
2112
+ "name": "readOnly",
2113
+ "description": "Specify if FileUpload is in read-only state",
2114
+ "values": []
2072
2115
  },
2073
2116
  {
2074
- "name": "autoResize",
2075
- "description": "Specify if the TextArea automatically resizes to fit the text",
2117
+ "name": "hideRequiredMarker",
2118
+ "description": "Specify if FileUpload displays with an asterisk",
2119
+ "values": []
2120
+ },
2121
+ {
2122
+ "name": "validationRules",
2123
+ "description": "Specify form validation rules for FileUpload",
2124
+ "values": [{ "name": "Array<FormValidator>" }]
2125
+ },
2126
+ {
2127
+ "name": "fluid",
2128
+ "description": "Specify if FileUpload is fluid",
2129
+ "values": []
2130
+ },
2131
+ {
2132
+ "name": "width",
2133
+ "description": "Specify the width of FileUpload",
2076
2134
  "values": []
2077
2135
  },
2078
2136
  {
2079
2137
  "name": "theme",
2080
- "description": "Specify the theme of the TextArea. By default it inherits the theme from the parent",
2081
- "values": [{ "name": "Optional<ThemeTypes>" }]
2138
+ "description": "Specify the theme of the FileUpload. By default it inherits the theme from the parent",
2139
+ "values": [{ "name": "light" }, { "name": "dark" }]
2082
2140
  },
2083
2141
  { "name": "id", "values": [] },
2084
2142
  { "name": "name", "values": [] },
2085
2143
  { "name": "value", "values": [] },
2086
- {
2087
- "name": "validationRules",
2088
- "values": [{ "name": "Array<FormValidator>" }]
2089
- },
2090
2144
  {
2091
2145
  "name": "input-aria-label",
2092
2146
  "values": [{ "name": "Optional<string>" }]
@@ -2095,52 +2149,42 @@
2095
2149
  "references": [
2096
2150
  {
2097
2151
  "name": "Storybook",
2098
- "url": "https://web-components.beam.viasat.com/?path=/docs/forms-textarea"
2152
+ "url": "https://web-components.beam.viasat.com/?path=/docs/forms-fileupload"
2099
2153
  }
2100
2154
  ]
2101
2155
  },
2102
2156
  {
2103
- "name": "bm-text-field",
2104
- "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",
2157
+ "name": "bm-native-select",
2158
+ "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",
2105
2159
  "attributes": [
2106
- {
2107
- "name": "placeholder",
2108
- "description": "Specify placeholder text for TextField",
2109
- "values": [{ "name": "Optional<string>" }]
2110
- },
2111
2160
  {
2112
2161
  "name": "required",
2113
- "description": "Specify if TextField is a required input",
2114
- "values": []
2115
- },
2116
- {
2117
- "name": "hideRequiredMarker",
2118
- "description": "Specify if the TextField displays with an asterisk",
2162
+ "description": "Specify if NativeSelect is a required input",
2119
2163
  "values": []
2120
2164
  },
2121
- {
2122
- "name": "error",
2123
- "description": "Specify error text and display error state of a TextField",
2124
- "values": [{ "name": "Optional<string>" }]
2125
- },
2126
2165
  {
2127
2166
  "name": "readOnly",
2128
- "description": "Specify if TextField displays in a read-only state",
2167
+ "description": "Specify if NativeSelect displays in a read-only state",
2129
2168
  "values": []
2130
2169
  },
2131
2170
  {
2132
2171
  "name": "disabled",
2133
- "description": "Specify if TextField displays in a disabled state",
2172
+ "description": "Specify if NativeSelect displays in a disabled state",
2134
2173
  "values": []
2135
2174
  },
2175
+ {
2176
+ "name": "error",
2177
+ "description": "Specify error text and display error state of a NativeSelect",
2178
+ "values": [{ "name": "Optional<string>" }]
2179
+ },
2136
2180
  {
2137
2181
  "name": "fluid",
2138
- "description": "Specify if TextField is fluid",
2182
+ "description": "Specify if NativeSelect is fluid",
2139
2183
  "values": []
2140
2184
  },
2141
2185
  {
2142
2186
  "name": "width",
2143
- "description": "Specify the width of TextField",
2187
+ "description": "Specify the width of NativeSelect",
2144
2188
  "values": [{ "name": "Optional<string>" }]
2145
2189
  },
2146
2190
  {
@@ -2148,13 +2192,16 @@
2148
2192
  "description": "Specify if overflow displays ellipsis",
2149
2193
  "values": []
2150
2194
  },
2195
+ {
2196
+ "name": "hideRequiredMarker",
2197
+ "description": "Specify if the NativeSelect displays with an asterisk",
2198
+ "values": []
2199
+ },
2151
2200
  {
2152
2201
  "name": "theme",
2153
- "description": "Specify the theme of the TextField. By default it inherits the theme from the parent",
2202
+ "description": "Specify the theme of the NativeSelect. By default it inherits the theme from the parent",
2154
2203
  "values": [{ "name": "Optional<ThemeTypes>" }]
2155
2204
  },
2156
- { "name": "type", "values": [] },
2157
- { "name": "inputMode", "values": [] },
2158
2205
  { "name": "id", "values": [] },
2159
2206
  { "name": "name", "values": [] },
2160
2207
  { "name": "value", "values": [] },
@@ -2170,207 +2217,179 @@
2170
2217
  "references": [
2171
2218
  {
2172
2219
  "name": "Storybook",
2173
- "url": "https://web-components.beam.viasat.com/?path=/docs/forms-textfield"
2220
+ "url": "https://web-components.beam.viasat.com/?path=/docs/forms-nativeselect"
2174
2221
  }
2175
2222
  ]
2176
2223
  },
2177
2224
  {
2178
- "name": "bm-checkbox-group",
2179
- "description": "\n---\n\n\n### **Slots:**\n - **label** - Add label text to the InputChoiceGroup\n- **helperText** - Add helper text to the InputChoiceGroup",
2225
+ "name": "bm-radio-button",
2226
+ "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",
2180
2227
  "attributes": [
2181
2228
  {
2182
- "name": "theme",
2183
- "description": "Specify the theme of the InputChoiceGroup. By default it inherits the theme from the parent",
2184
- "values": [{ "name": "light" }, { "name": "dark" }]
2185
- },
2186
- {
2187
- "name": "layout",
2188
- "description": "Specify InputChoiceGroup orientation\n\n**Deprecated**: use `orientation` and `fluid` instead",
2189
- "values": [
2190
- { "name": "horizontal" },
2191
- { "name": "vertical" },
2192
- { "name": "horizontalFluid" }
2193
- ]
2194
- },
2195
- {
2196
- "name": "orientation",
2197
- "description": "Specify InputChoiceGroup orientation",
2198
- "values": [{ "name": "horizontal" }, { "name": "vertical" }]
2199
- },
2200
- {
2201
- "name": "fluid",
2202
- "description": "Specify if InputChoiceGroup should take the full width of its container",
2229
+ "name": "label",
2230
+ "description": "Specify the text for the label",
2203
2231
  "values": []
2204
2232
  },
2205
2233
  {
2206
- "name": "required",
2207
- "description": "Specify if InputChoiceGroup is a required input",
2234
+ "name": "error",
2235
+ "description": "Specify error text and display error state of a RadioButton",
2208
2236
  "values": []
2209
2237
  },
2210
2238
  {
2211
- "name": "hideRequiredMarker",
2212
- "description": "Specify if the InputChoiceGroup displays with an asterisk",
2239
+ "name": "readOnly",
2240
+ "description": "Specify if RadioButton displays in a read-only state",
2213
2241
  "values": []
2214
2242
  },
2215
2243
  {
2216
- "name": "error",
2217
- "description": "Specify error text and display error state of a InputChoiceGroup",
2244
+ "name": "disabled",
2245
+ "description": "Specify if RadioButton displays in a disabled state",
2218
2246
  "values": []
2219
2247
  },
2220
2248
  {
2221
- "name": "readOnly",
2222
- "description": "Specify if InputChoiceGroup displays in a read-only state",
2223
- "values": []
2249
+ "name": "theme",
2250
+ "description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
2251
+ "values": [{ "name": "light" }, { "name": "dark" }]
2224
2252
  },
2225
2253
  {
2226
- "name": "disabled",
2227
- "description": "Specify if InputChoiceGroup displays in a disabled state",
2254
+ "name": "value",
2255
+ "description": "The value attribute for the input element",
2228
2256
  "values": []
2229
2257
  },
2230
- { "name": "id", "values": [] },
2231
- { "name": "name", "values": [] },
2232
- { "name": "value", "values": [] },
2233
2258
  {
2234
- "name": "validationRules",
2235
- "values": [{ "name": "Array<FormValidator>" }]
2259
+ "name": "checked",
2260
+ "description": "The checked attribute for the input element",
2261
+ "values": []
2236
2262
  },
2237
2263
  {
2238
- "name": "input-aria-label",
2239
- "values": [{ "name": "Optional<string>" }]
2264
+ "name": "onKeyDown",
2265
+ "description": "A user-defined function to handle keydown events",
2266
+ "values": [{ "name": "(event: KeyboardEvent) => void" }]
2240
2267
  }
2241
2268
  ],
2242
2269
  "references": [
2243
2270
  {
2244
2271
  "name": "Storybook",
2245
- "url": "https://web-components.beam.viasat.com/?path=/docs/forms-checkbox"
2272
+ "url": "https://web-components.beam.viasat.com/?path=/docs/forms-radiobutton"
2246
2273
  }
2247
2274
  ]
2248
2275
  },
2249
2276
  {
2250
- "name": "bm-radio-button-group",
2251
- "description": "\n---\n\n\n### **Slots:**\n - **label** - Add label text to the InputChoiceGroup\n- **helperText** - Add helper text to the InputChoiceGroup",
2277
+ "name": "bm-switch",
2278
+ "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.",
2252
2279
  "attributes": [
2253
2280
  {
2254
- "name": "theme",
2255
- "description": "Specify the theme of the InputChoiceGroup. By default it inherits the theme from the parent",
2256
- "values": [{ "name": "light" }, { "name": "dark" }]
2257
- },
2258
- {
2259
- "name": "layout",
2260
- "description": "Specify InputChoiceGroup orientation\n\n**Deprecated**: use `orientation` and `fluid` instead",
2261
- "values": [
2262
- { "name": "horizontal" },
2263
- { "name": "vertical" },
2264
- { "name": "horizontalFluid" }
2265
- ]
2266
- },
2267
- {
2268
- "name": "orientation",
2269
- "description": "Specify InputChoiceGroup orientation",
2270
- "values": [{ "name": "horizontal" }, { "name": "vertical" }]
2271
- },
2272
- {
2273
- "name": "fluid",
2274
- "description": "Specify if InputChoiceGroup should take the full width of its container",
2275
- "values": []
2276
- },
2277
- {
2278
- "name": "required",
2279
- "description": "Specify if InputChoiceGroup is a required input",
2281
+ "name": "onText",
2282
+ "description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
2280
2283
  "values": []
2281
2284
  },
2282
2285
  {
2283
- "name": "hideRequiredMarker",
2284
- "description": "Specify if the InputChoiceGroup displays with an asterisk",
2286
+ "name": "offText",
2287
+ "description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
2285
2288
  "values": []
2286
2289
  },
2287
2290
  {
2288
- "name": "error",
2289
- "description": "Specify error text and display error state of a InputChoiceGroup",
2290
- "values": []
2291
+ "name": "textPosition",
2292
+ "description": "Specify the position of the side label",
2293
+ "values": [{ "name": "before" }, { "name": "after" }]
2291
2294
  },
2292
2295
  {
2293
2296
  "name": "readOnly",
2294
- "description": "Specify if InputChoiceGroup displays in a read-only state",
2297
+ "description": "Specify if Switch displays in a read-only state",
2295
2298
  "values": []
2296
2299
  },
2297
2300
  {
2298
2301
  "name": "disabled",
2299
- "description": "Specify if InputChoiceGroup displays in a disabled state",
2302
+ "description": "Specify if Switch displays in a disabled state",
2300
2303
  "values": []
2301
2304
  },
2302
- { "name": "id", "values": [] },
2303
- { "name": "name", "values": [] },
2304
- { "name": "value", "values": [] },
2305
- {
2306
- "name": "validationRules",
2307
- "values": [{ "name": "Array<FormValidator>" }]
2308
- },
2305
+ { "name": "checked", "values": [] },
2309
2306
  {
2310
- "name": "input-aria-label",
2311
- "values": [{ "name": "Optional<string>" }]
2307
+ "name": "value",
2308
+ "description": "The value attribute for the input element",
2309
+ "values": []
2312
2310
  }
2313
2311
  ],
2314
2312
  "references": [
2315
2313
  {
2316
2314
  "name": "Storybook",
2317
- "url": "https://web-components.beam.viasat.com/?path=/docs/forms-radiobutton"
2315
+ "url": "https://web-components.beam.viasat.com/?path=/docs/forms-switch"
2318
2316
  }
2319
2317
  ]
2320
2318
  },
2321
2319
  {
2322
- "name": "bm-switch-group",
2323
- "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",
2320
+ "name": "bm-text-area",
2321
+ "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",
2324
2322
  "attributes": [
2325
2323
  {
2326
- "name": "theme",
2327
- "description": "Specify the theme of the InputChoiceGroup. By default it inherits the theme from the parent",
2328
- "values": [{ "name": "light" }, { "name": "dark" }]
2329
- },
2330
- {
2331
- "name": "layout",
2332
- "description": "Specify InputChoiceGroup orientation\n\n**Deprecated**: use `orientation` and `fluid` instead",
2333
- "values": [
2334
- { "name": "horizontal" },
2335
- { "name": "vertical" },
2336
- { "name": "horizontalFluid" }
2337
- ]
2324
+ "name": "rows",
2325
+ "description": "Specify the height of TextArea",
2326
+ "values": [{ "name": "Optional<number>" }]
2338
2327
  },
2339
2328
  {
2340
- "name": "orientation",
2341
- "description": "Specify InputChoiceGroup orientation",
2342
- "values": [{ "name": "horizontal" }, { "name": "vertical" }]
2329
+ "name": "cols",
2330
+ "description": "Specify the width of TextArea",
2331
+ "values": [{ "name": "Optional<number>" }]
2343
2332
  },
2344
2333
  {
2345
- "name": "fluid",
2346
- "description": "Specify if InputChoiceGroup should take the full width of its container",
2347
- "values": []
2334
+ "name": "placeholder",
2335
+ "description": "Specify placeholder text for TextArea",
2336
+ "values": [{ "name": "Optional<string>" }]
2348
2337
  },
2349
2338
  {
2350
2339
  "name": "required",
2351
- "description": "Specify if InputChoiceGroup is a required input",
2340
+ "description": "Specify if TextArea is a required input",
2352
2341
  "values": []
2353
2342
  },
2354
2343
  {
2355
2344
  "name": "hideRequiredMarker",
2356
- "description": "Specify if the InputChoiceGroup displays with an asterisk",
2345
+ "description": "Specify if the TextArea displays with an asterisk",
2357
2346
  "values": []
2358
2347
  },
2359
2348
  {
2360
2349
  "name": "error",
2361
- "description": "Specify error text and display error state of a InputChoiceGroup",
2362
- "values": []
2350
+ "description": "Specify error text and display error state of a TextArea",
2351
+ "values": [{ "name": "Optional<string>" }]
2363
2352
  },
2364
2353
  {
2365
2354
  "name": "readOnly",
2366
- "description": "Specify if InputChoiceGroup displays in a read-only state",
2355
+ "description": "Specify if TextArea displays in a read-only state",
2367
2356
  "values": []
2368
2357
  },
2369
2358
  {
2370
2359
  "name": "disabled",
2371
- "description": "Specify if InputChoiceGroup displays in a disabled state",
2360
+ "description": "Specify if TextArea displays in a disabled state",
2361
+ "values": []
2362
+ },
2363
+ {
2364
+ "name": "fluid",
2365
+ "description": "Specify if TextArea is fluid",
2366
+ "values": []
2367
+ },
2368
+ {
2369
+ "name": "width",
2370
+ "description": "Specify the width of TextArea",
2371
+ "values": [{ "name": "Optional<string>" }]
2372
+ },
2373
+ {
2374
+ "name": "hideResize",
2375
+ "description": "Specify if TextArea can be manually resized",
2376
+ "values": []
2377
+ },
2378
+ {
2379
+ "name": "maxCount",
2380
+ "description": "Specify the maximum character count for the TextArea",
2381
+ "values": [{ "name": "Optional<number>" }]
2382
+ },
2383
+ {
2384
+ "name": "autoResize",
2385
+ "description": "Specify if the TextArea automatically resizes to fit the text",
2372
2386
  "values": []
2373
2387
  },
2388
+ {
2389
+ "name": "theme",
2390
+ "description": "Specify the theme of the TextArea. By default it inherits the theme from the parent",
2391
+ "values": [{ "name": "Optional<ThemeTypes>" }]
2392
+ },
2374
2393
  { "name": "id", "values": [] },
2375
2394
  { "name": "name", "values": [] },
2376
2395
  { "name": "value", "values": [] },
@@ -2386,308 +2405,289 @@
2386
2405
  "references": [
2387
2406
  {
2388
2407
  "name": "Storybook",
2389
- "url": "https://web-components.beam.viasat.com/?path=/docs/forms-switch"
2408
+ "url": "https://web-components.beam.viasat.com/?path=/docs/forms-textarea"
2390
2409
  }
2391
2410
  ]
2392
2411
  },
2393
2412
  {
2394
- "name": "bm-file-upload-button",
2395
- "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",
2413
+ "name": "bm-text-field",
2414
+ "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",
2396
2415
  "attributes": [
2397
2416
  {
2398
- "name": "error",
2399
- "description": "Specify if FileUpload is in error state",
2417
+ "name": "placeholder",
2418
+ "description": "Specify placeholder text for TextField",
2419
+ "values": [{ "name": "Optional<string>" }]
2420
+ },
2421
+ {
2422
+ "name": "required",
2423
+ "description": "Specify if TextField is a required input",
2400
2424
  "values": []
2401
2425
  },
2402
2426
  {
2403
- "name": "accept",
2404
- "description": "Specify the accepted file types",
2405
- "values": []
2406
- },
2407
- {
2408
- "name": "multiple",
2409
- "description": "Specify if multiple files can be uploaded",
2427
+ "name": "hideRequiredMarker",
2428
+ "description": "Specify if the TextField displays with an asterisk",
2410
2429
  "values": []
2411
2430
  },
2412
2431
  {
2413
- "name": "appearance",
2414
- "description": "Specify the appearance of a Button",
2415
- "values": [
2416
- { "name": "accent" },
2417
- { "name": "neutral" },
2418
- { "name": "destructive" },
2419
- { "name": "neutral-subtle" }
2420
- ]
2421
- },
2422
- {
2423
- "name": "kind",
2424
- "description": "Specify the kind of Button",
2425
- "values": [
2426
- { "name": "filled" },
2427
- { "name": "outline" },
2428
- { "name": "ghost" },
2429
- { "name": "bare" }
2430
- ]
2432
+ "name": "error",
2433
+ "description": "Specify error text and display error state of a TextField",
2434
+ "values": [{ "name": "Optional<string>" }]
2431
2435
  },
2432
2436
  {
2433
- "name": "size",
2434
- "description": "Specify the size of a Button",
2435
- "values": [{ "name": "sm" }, { "name": "md" }, { "name": "lg" }]
2437
+ "name": "readOnly",
2438
+ "description": "Specify if TextField displays in a read-only state",
2439
+ "values": []
2436
2440
  },
2437
2441
  {
2438
2442
  "name": "disabled",
2439
- "description": "Specify if the Button is disabled",
2443
+ "description": "Specify if TextField displays in a disabled state",
2440
2444
  "values": []
2441
2445
  },
2442
2446
  {
2443
2447
  "name": "fluid",
2444
- "description": "Specify if Button is fluid",
2448
+ "description": "Specify if TextField is fluid",
2445
2449
  "values": []
2446
2450
  },
2447
2451
  {
2448
2452
  "name": "width",
2449
- "description": "Specify the width of a Button",
2450
- "values": []
2453
+ "description": "Specify the width of TextField",
2454
+ "values": [{ "name": "Optional<string>" }]
2451
2455
  },
2452
2456
  {
2453
- "name": "height",
2454
- "description": "Specify the height of a Button",
2457
+ "name": "ellipse",
2458
+ "description": "Specify if overflow displays ellipsis",
2455
2459
  "values": []
2456
2460
  },
2457
2461
  {
2458
2462
  "name": "theme",
2459
- "description": "Specify the theme of the Button",
2460
- "values": [{ "name": "light" }, { "name": "dark" }]
2463
+ "description": "Specify the theme of the TextField. By default it inherits the theme from the parent",
2464
+ "values": [{ "name": "Optional<ThemeTypes>" }]
2461
2465
  },
2466
+ { "name": "type", "values": [] },
2467
+ { "name": "inputMode", "values": [] },
2468
+ { "name": "id", "values": [] },
2469
+ { "name": "name", "values": [] },
2470
+ { "name": "value", "values": [] },
2462
2471
  {
2463
- "name": "iconOnly",
2464
- "description": "Specify if the icon displays without text",
2465
- "values": []
2472
+ "name": "validationRules",
2473
+ "values": [{ "name": "Array<FormValidator>" }]
2466
2474
  },
2467
- { "name": "type", "values": [] }
2475
+ {
2476
+ "name": "input-aria-label",
2477
+ "values": [{ "name": "Optional<string>" }]
2478
+ }
2468
2479
  ],
2469
2480
  "references": [
2470
2481
  {
2471
2482
  "name": "Storybook",
2472
- "url": "https://web-components.beam.viasat.com/?path=/docs/forms-fileupload"
2483
+ "url": "https://web-components.beam.viasat.com/?path=/docs/forms-textfield"
2473
2484
  }
2474
2485
  ]
2475
2486
  },
2476
2487
  {
2477
- "name": "bm-file-upload-dropzone",
2478
- "description": "`bm-file-upload-dropzone`\n\n### Attributes:\n- **error** - Specify if FileUpload is in error state\n- **theme** - Specify the theme of the FileUpload. By default it inherits the theme from the parent\n- **disabled** - Specify if the FileUpload is disabled\n- **accept** - Specify the accepted file types\n- **name** - Specify the name of the FileUpload\n- **multiple** - Specify if multiple files can be uploaded\n---\n\n\n### **Slots:**\n - **default** - Specify text for the Dropzone",
2488
+ "name": "bm-checkbox-group",
2489
+ "description": "\n---\n\n\n### **Slots:**\n - **label** - Add label text to the InputChoiceGroup\n- **helperText** - Add helper text to the InputChoiceGroup",
2479
2490
  "attributes": [
2480
- {
2481
- "name": "error",
2482
- "description": "Specify if FileUpload is in error state",
2483
- "values": []
2484
- },
2485
2491
  {
2486
2492
  "name": "theme",
2487
- "description": "Specify the theme of the FileUpload. By default it inherits the theme from the parent",
2493
+ "description": "Specify the theme of the InputChoiceGroup. By default it inherits the theme from the parent",
2488
2494
  "values": [{ "name": "light" }, { "name": "dark" }]
2489
2495
  },
2490
2496
  {
2491
- "name": "disabled",
2492
- "description": "Specify if the FileUpload is disabled",
2493
- "values": []
2497
+ "name": "layout",
2498
+ "description": "Specify InputChoiceGroup orientation\n\n**Deprecated**: use `orientation` and `fluid` instead",
2499
+ "values": [
2500
+ { "name": "horizontal" },
2501
+ { "name": "vertical" },
2502
+ { "name": "horizontalFluid" }
2503
+ ]
2494
2504
  },
2495
2505
  {
2496
- "name": "accept",
2497
- "description": "Specify the accepted file types",
2498
- "values": []
2506
+ "name": "orientation",
2507
+ "description": "Specify InputChoiceGroup orientation",
2508
+ "values": [{ "name": "horizontal" }, { "name": "vertical" }]
2499
2509
  },
2500
2510
  {
2501
- "name": "name",
2502
- "description": "Specify the name of the FileUpload",
2511
+ "name": "fluid",
2512
+ "description": "Specify if InputChoiceGroup should take the full width of its container",
2503
2513
  "values": []
2504
2514
  },
2505
2515
  {
2506
- "name": "multiple",
2507
- "description": "Specify if multiple files can be uploaded",
2508
- "values": []
2509
- }
2510
- ],
2511
- "references": [
2512
- {
2513
- "name": "Storybook",
2514
- "url": "https://web-components.beam.viasat.com/?path=/docs/forms-fileupload"
2515
- }
2516
- ]
2517
- },
2518
- {
2519
- "name": "bm-file-upload-list-item",
2520
- "description": "`bm-file-upload-list-item`\n\n### Attributes:\n- **error** - Specify error text and display error state of list item\n- **fileName** - The name of the uploaded file\n- **fileSize** - The size of the uploaded file\n- **size** - Specify the size of the item\n- **thumbnail** - Specify if the item displays a default thumbnail or a preview of the image being uploaded. Image only displays for size lg.\n- **state** - Specify the status of the file\n- **progress** - Specify the progress of the file upload\n- **theme** - Specify the theme of the FileUpload. By default it inherits the theme from the parent\n- **disabled** - Specify if the FileUpload is disabled\n---\n\n\n### **Events:**\n - **bm-dismiss** - Dispatched when the dismiss button is clicked",
2521
- "attributes": [
2522
- {
2523
- "name": "error",
2524
- "description": "Specify error text and display error state of list item",
2516
+ "name": "required",
2517
+ "description": "Specify if InputChoiceGroup is a required input",
2525
2518
  "values": []
2526
2519
  },
2527
2520
  {
2528
- "name": "fileName",
2529
- "description": "The name of the uploaded file",
2521
+ "name": "hideRequiredMarker",
2522
+ "description": "Specify if the InputChoiceGroup displays with an asterisk",
2530
2523
  "values": []
2531
2524
  },
2532
2525
  {
2533
- "name": "fileSize",
2534
- "description": "The size of the uploaded file",
2526
+ "name": "error",
2527
+ "description": "Specify error text and display error state of a InputChoiceGroup",
2535
2528
  "values": []
2536
2529
  },
2537
2530
  {
2538
- "name": "size",
2539
- "description": "Specify the size of the item",
2540
- "values": [{ "name": "md" }, { "name": "lg" }]
2541
- },
2542
- {
2543
- "name": "thumbnail",
2544
- "description": "Specify if the item displays a default thumbnail or a preview of the image being uploaded. Image only displays for size lg.",
2531
+ "name": "readOnly",
2532
+ "description": "Specify if InputChoiceGroup displays in a read-only state",
2545
2533
  "values": []
2546
2534
  },
2547
2535
  {
2548
- "name": "state",
2549
- "description": "Specify the status of the file",
2550
- "values": [
2551
- { "name": "uploading" },
2552
- { "name": "success" },
2553
- { "name": "uploaded" },
2554
- { "name": "error" }
2555
- ]
2556
- },
2557
- {
2558
- "name": "progress",
2559
- "description": "Specify the progress of the file upload",
2536
+ "name": "disabled",
2537
+ "description": "Specify if InputChoiceGroup displays in a disabled state",
2560
2538
  "values": []
2561
2539
  },
2540
+ { "name": "id", "values": [] },
2541
+ { "name": "name", "values": [] },
2542
+ { "name": "value", "values": [] },
2562
2543
  {
2563
- "name": "theme",
2564
- "description": "Specify the theme of the FileUpload. By default it inherits the theme from the parent",
2565
- "values": [{ "name": "light" }, { "name": "dark" }]
2544
+ "name": "validationRules",
2545
+ "values": [{ "name": "Array<FormValidator>" }]
2566
2546
  },
2567
2547
  {
2568
- "name": "disabled",
2569
- "description": "Specify if the FileUpload is disabled",
2570
- "values": []
2548
+ "name": "input-aria-label",
2549
+ "values": [{ "name": "Optional<string>" }]
2571
2550
  }
2572
2551
  ],
2573
2552
  "references": [
2574
2553
  {
2575
2554
  "name": "Storybook",
2576
- "url": "https://web-components.beam.viasat.com/?path=/docs/forms-fileupload"
2555
+ "url": "https://web-components.beam.viasat.com/?path=/docs/forms-checkbox"
2577
2556
  }
2578
2557
  ]
2579
2558
  },
2580
2559
  {
2581
- "name": "bm-file-upload-list",
2582
- "description": "`bm-file-upload-list`\n\n### Attributes:\n- **thumbnail** - Specify if the all items displays with a default thumbnail or a preview of the image being uploaded. Image only displays for size lg.\n- **size** - Specify FileUpload List size\n- **theme** - Specify the theme of the FileUpload. By default it inherits the theme from the parent\n- **disabled** - Specify if the FileUpload is disabled\n- **renderItem** - Specify a render function for the list item\n---\n\n\n### **Slots:**\n - **default** - Specify the list items",
2560
+ "name": "bm-radio-button-group",
2561
+ "description": "\n---\n\n\n### **Slots:**\n - **label** - Add label text to the InputChoiceGroup\n- **helperText** - Add helper text to the InputChoiceGroup",
2583
2562
  "attributes": [
2584
2563
  {
2585
- "name": "thumbnail",
2586
- "description": "Specify if the all items displays with a default thumbnail or a preview of the image being uploaded. Image only displays for size lg.",
2564
+ "name": "theme",
2565
+ "description": "Specify the theme of the InputChoiceGroup. By default it inherits the theme from the parent",
2566
+ "values": [{ "name": "light" }, { "name": "dark" }]
2567
+ },
2568
+ {
2569
+ "name": "layout",
2570
+ "description": "Specify InputChoiceGroup orientation\n\n**Deprecated**: use `orientation` and `fluid` instead",
2571
+ "values": [
2572
+ { "name": "horizontal" },
2573
+ { "name": "vertical" },
2574
+ { "name": "horizontalFluid" }
2575
+ ]
2576
+ },
2577
+ {
2578
+ "name": "orientation",
2579
+ "description": "Specify InputChoiceGroup orientation",
2580
+ "values": [{ "name": "horizontal" }, { "name": "vertical" }]
2581
+ },
2582
+ {
2583
+ "name": "fluid",
2584
+ "description": "Specify if InputChoiceGroup should take the full width of its container",
2587
2585
  "values": []
2588
2586
  },
2589
2587
  {
2590
- "name": "size",
2591
- "description": "Specify FileUpload List size",
2592
- "values": [{ "name": "md" }, { "name": "lg" }]
2588
+ "name": "required",
2589
+ "description": "Specify if InputChoiceGroup is a required input",
2590
+ "values": []
2593
2591
  },
2594
2592
  {
2595
- "name": "theme",
2596
- "description": "Specify the theme of the FileUpload. By default it inherits the theme from the parent",
2597
- "values": [{ "name": "light" }, { "name": "dark" }]
2593
+ "name": "hideRequiredMarker",
2594
+ "description": "Specify if the InputChoiceGroup displays with an asterisk",
2595
+ "values": []
2596
+ },
2597
+ {
2598
+ "name": "error",
2599
+ "description": "Specify error text and display error state of a InputChoiceGroup",
2600
+ "values": []
2601
+ },
2602
+ {
2603
+ "name": "readOnly",
2604
+ "description": "Specify if InputChoiceGroup displays in a read-only state",
2605
+ "values": []
2598
2606
  },
2599
2607
  {
2600
2608
  "name": "disabled",
2601
- "description": "Specify if the FileUpload is disabled",
2609
+ "description": "Specify if InputChoiceGroup displays in a disabled state",
2602
2610
  "values": []
2603
2611
  },
2612
+ { "name": "id", "values": [] },
2613
+ { "name": "name", "values": [] },
2614
+ { "name": "value", "values": [] },
2604
2615
  {
2605
- "name": "renderItem",
2606
- "description": "Specify a render function for the list item",
2607
- "values": [
2608
- { "name": "(fileItem: FileItem, dismissFile: () => void) => void" }
2609
- ]
2616
+ "name": "validationRules",
2617
+ "values": [{ "name": "Array<FormValidator>" }]
2618
+ },
2619
+ {
2620
+ "name": "input-aria-label",
2621
+ "values": [{ "name": "Optional<string>" }]
2610
2622
  }
2611
2623
  ],
2612
2624
  "references": [
2613
2625
  {
2614
2626
  "name": "Storybook",
2615
- "url": "https://web-components.beam.viasat.com/?path=/docs/forms-fileupload"
2627
+ "url": "https://web-components.beam.viasat.com/?path=/docs/forms-radiobutton"
2616
2628
  }
2617
2629
  ]
2618
2630
  },
2619
2631
  {
2620
- "name": "bm-file-upload",
2621
- "description": "`bm-file-upload`\n\n### Attributes:\n- **accept** - Specify what types of files can be uploaded\n- **error** - Specify error text and display error state of FileUpload\n- **disabled** - Specify if FileUpload is in disabled state\n- **multiple** - Specify if more than one file can be can be uploaded\n- **fileLimit** - Specify how many files can be uploaded\n- **maxFileSize** - Specify the maximum file size that can be uploaded\n- **required** - Specify if FileUpload is a required input\n- **readOnly** - Specify if FileUpload is in read-only state\n- **hideRequiredMarker** - Specify if FileUpload displays with an asterisk\n- **validationRules** - Specify form validation rules for FileUpload\n- **fluid** - Specify if FileUpload is fluid\n- **width** - Specify the width of FileUpload\n- **theme** - Specify the theme of the FileUpload. By default it inherits the theme from the parent\n---\n\n\n### **Events:**\n - **bm-selected** - Dispatched when a file is uploaded. Preventing default on this event will make upload asynchronous\n\n### **Slots:**\n - **label** - Specify Label for for FileUpload\n- **helper-text** - Specify HelperText for FileUpload",
2632
+ "name": "bm-switch-group",
2633
+ "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",
2622
2634
  "attributes": [
2623
2635
  {
2624
- "name": "accept",
2625
- "description": "Specify what types of files can be uploaded",
2626
- "values": []
2636
+ "name": "theme",
2637
+ "description": "Specify the theme of the InputChoiceGroup. By default it inherits the theme from the parent",
2638
+ "values": [{ "name": "light" }, { "name": "dark" }]
2627
2639
  },
2628
2640
  {
2629
- "name": "error",
2630
- "description": "Specify error text and display error state of FileUpload",
2631
- "values": []
2641
+ "name": "layout",
2642
+ "description": "Specify InputChoiceGroup orientation\n\n**Deprecated**: use `orientation` and `fluid` instead",
2643
+ "values": [
2644
+ { "name": "horizontal" },
2645
+ { "name": "vertical" },
2646
+ { "name": "horizontalFluid" }
2647
+ ]
2632
2648
  },
2633
2649
  {
2634
- "name": "disabled",
2635
- "description": "Specify if FileUpload is in disabled state",
2636
- "values": []
2650
+ "name": "orientation",
2651
+ "description": "Specify InputChoiceGroup orientation",
2652
+ "values": [{ "name": "horizontal" }, { "name": "vertical" }]
2637
2653
  },
2638
2654
  {
2639
- "name": "multiple",
2640
- "description": "Specify if more than one file can be can be uploaded",
2655
+ "name": "fluid",
2656
+ "description": "Specify if InputChoiceGroup should take the full width of its container",
2641
2657
  "values": []
2642
2658
  },
2643
2659
  {
2644
- "name": "fileLimit",
2645
- "description": "Specify how many files can be uploaded",
2660
+ "name": "required",
2661
+ "description": "Specify if InputChoiceGroup is a required input",
2646
2662
  "values": []
2647
2663
  },
2648
2664
  {
2649
- "name": "maxFileSize",
2650
- "description": "Specify the maximum file size that can be uploaded",
2665
+ "name": "hideRequiredMarker",
2666
+ "description": "Specify if the InputChoiceGroup displays with an asterisk",
2651
2667
  "values": []
2652
2668
  },
2653
2669
  {
2654
- "name": "required",
2655
- "description": "Specify if FileUpload is a required input",
2670
+ "name": "error",
2671
+ "description": "Specify error text and display error state of a InputChoiceGroup",
2656
2672
  "values": []
2657
2673
  },
2658
2674
  {
2659
2675
  "name": "readOnly",
2660
- "description": "Specify if FileUpload is in read-only state",
2676
+ "description": "Specify if InputChoiceGroup displays in a read-only state",
2661
2677
  "values": []
2662
2678
  },
2663
2679
  {
2664
- "name": "hideRequiredMarker",
2665
- "description": "Specify if FileUpload displays with an asterisk",
2680
+ "name": "disabled",
2681
+ "description": "Specify if InputChoiceGroup displays in a disabled state",
2666
2682
  "values": []
2667
2683
  },
2684
+ { "name": "id", "values": [] },
2685
+ { "name": "name", "values": [] },
2686
+ { "name": "value", "values": [] },
2668
2687
  {
2669
2688
  "name": "validationRules",
2670
- "description": "Specify form validation rules for FileUpload",
2671
2689
  "values": [{ "name": "Array<FormValidator>" }]
2672
2690
  },
2673
- {
2674
- "name": "fluid",
2675
- "description": "Specify if FileUpload is fluid",
2676
- "values": []
2677
- },
2678
- {
2679
- "name": "width",
2680
- "description": "Specify the width of FileUpload",
2681
- "values": []
2682
- },
2683
- {
2684
- "name": "theme",
2685
- "description": "Specify the theme of the FileUpload. By default it inherits the theme from the parent",
2686
- "values": [{ "name": "light" }, { "name": "dark" }]
2687
- },
2688
- { "name": "id", "values": [] },
2689
- { "name": "name", "values": [] },
2690
- { "name": "value", "values": [] },
2691
2691
  {
2692
2692
  "name": "input-aria-label",
2693
2693
  "values": [{ "name": "Optional<string>" }]
@@ -2696,7 +2696,7 @@
2696
2696
  "references": [
2697
2697
  {
2698
2698
  "name": "Storybook",
2699
- "url": "https://web-components.beam.viasat.com/?path=/docs/forms-fileupload"
2699
+ "url": "https://web-components.beam.viasat.com/?path=/docs/forms-switch"
2700
2700
  }
2701
2701
  ]
2702
2702
  }