@viasat/beam-web-components 2.74.0 → 2.75.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -61,6 +61,104 @@
61
61
  }
62
62
  ]
63
63
  },
64
+ {
65
+ "name": "bm-avatar",
66
+ "description": "`bm-avatar`\n\n### Attributes:\n- **appearance** - Specify the appearance of the Avatar\n- **name** - Specify a name to display initials in the Avatar\n- **src** - Pass an image to the Avatar\n- **alt** - Specify alt for image\n- **size** - Specify the size of the Avatar\n- **disabled** - Specify if the Avatar is disabled\n- **shape** - Specify the shape of the Avatar\n- **isInteractive** - If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer\n- **isFocusable** - If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable\n- **withBorder** \n---\n\n\n### **Slots:**\n - **icon** - Customize the default icon",
67
+ "attributes": [
68
+ {
69
+ "name": "appearance",
70
+ "description": "Specify the appearance of the Avatar",
71
+ "values": [{ "name": "accent" }, { "name": "neutral" }]
72
+ },
73
+ {
74
+ "name": "name",
75
+ "description": "Specify a name to display initials in the Avatar",
76
+ "values": []
77
+ },
78
+ {
79
+ "name": "src",
80
+ "description": "Pass an image to the Avatar",
81
+ "values": []
82
+ },
83
+ { "name": "alt", "description": "Specify alt for image", "values": [] },
84
+ {
85
+ "name": "size",
86
+ "description": "Specify the size of the Avatar",
87
+ "values": [
88
+ { "name": "xs" },
89
+ { "name": "sm" },
90
+ { "name": "md" },
91
+ { "name": "lg" },
92
+ { "name": "xl" }
93
+ ]
94
+ },
95
+ {
96
+ "name": "disabled",
97
+ "description": "Specify if the Avatar is disabled",
98
+ "values": []
99
+ },
100
+ {
101
+ "name": "shape",
102
+ "description": "Specify the shape of the Avatar",
103
+ "values": [{ "name": "circle" }, { "name": "square" }]
104
+ },
105
+ {
106
+ "name": "isInteractive",
107
+ "description": "If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer",
108
+ "values": []
109
+ },
110
+ {
111
+ "name": "isFocusable",
112
+ "description": "If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable",
113
+ "values": []
114
+ },
115
+ { "name": "withBorder", "values": [] }
116
+ ],
117
+ "references": [
118
+ {
119
+ "name": "Storybook",
120
+ "url": "https://web-components.beam.viasat.com/?path=/docs/components-avatar"
121
+ }
122
+ ]
123
+ },
124
+ {
125
+ "name": "bm-avatar-group",
126
+ "description": "`bm-avatar-group`\n\n### Attributes:\n- **wrapping** - Specify if the AvatarGroup wraps\n- **maxCount** - Specify the max number of avatars displayed in the group.\n- **size** - Specify the size of all Avatars\n- **layout** - Specify the kind of the group.\n---\n\n\n### **Slots:**\n - **default** - Add Avatars to create a group",
127
+ "attributes": [
128
+ {
129
+ "name": "wrapping",
130
+ "description": "Specify if the AvatarGroup wraps",
131
+ "values": []
132
+ },
133
+ {
134
+ "name": "maxCount",
135
+ "description": "Specify the max number of avatars displayed in the group.",
136
+ "values": []
137
+ },
138
+ {
139
+ "name": "size",
140
+ "description": "Specify the size of all Avatars",
141
+ "values": [
142
+ { "name": "xs" },
143
+ { "name": "sm" },
144
+ { "name": "md" },
145
+ { "name": "lg" },
146
+ { "name": "xl" }
147
+ ]
148
+ },
149
+ {
150
+ "name": "layout",
151
+ "description": "Specify the kind of the group.",
152
+ "values": [{ "name": "stacked" }, { "name": "spaced" }]
153
+ }
154
+ ],
155
+ "references": [
156
+ {
157
+ "name": "Storybook",
158
+ "url": "https://web-components.beam.viasat.com/?path=/docs/components-avatar"
159
+ }
160
+ ]
161
+ },
64
162
  {
65
163
  "name": "bm-badge",
66
164
  "description": "`bm-badge`\n\n### Attributes:\n- **appearance** - Specify the appearance of the Badge\n- **theme** - Theme of the Badge\n- **size** - Specify the size of the Badge\n- **emphasis** - Specify the emphasis of the Badge\n- **hideIcon** - Hides Badge icon\n---\n\n\n### **Slots:**\n - **default** - Provide text for the Badge\n- **icon** - Specify a different icon for the Badge",
@@ -142,6 +240,79 @@
142
240
  }
143
241
  ]
144
242
  },
243
+ {
244
+ "name": "bm-alert",
245
+ "description": "`bm-alert`\n\n### Attributes:\n- **heading** - Specify the heading text for Alert\n- **body** - Specify the body text for Alert\n- **size** - Specify the size of the Alert\n- **fullWidth** - Specify if the Alert has no border radius\n- **theme** - Specify the theme of the Alert. By default it inherits the theme from the parent\n- **appearance** - Specify the appearance of the Alert\n- **hidden** - Specify if the Alert is hidden\n- **hideIcon** - Specify if the icon displays on the Alert\n- **dismissible** - Specify if the Alert can be dismissed\n- **disableAutoFocus** - Prevent autofocus on show\n- **disableCloseOnEscape** - Prevent Escape from closing\n---\n\n\n### **Events:**\n - **bm-dismiss** - Dispatched when the Alert has been dismissed\n\n### **Slots:**\n - **icon** - Specify a different icon for the Alert\n- **heading** - Specify the heading text for Alert or pass the `heading` attribute to set the heading\n- **body** - Specify the body text for Alert or pass the `body` attribute to set the body\n- **actions** - Specify if actions display on the Alert",
246
+ "attributes": [
247
+ {
248
+ "name": "heading",
249
+ "description": "Specify the heading text for Alert",
250
+ "values": []
251
+ },
252
+ {
253
+ "name": "body",
254
+ "description": "Specify the body text for Alert",
255
+ "values": []
256
+ },
257
+ {
258
+ "name": "size",
259
+ "description": "Specify the size of the Alert",
260
+ "values": [{ "name": "sm" }, { "name": "md" }]
261
+ },
262
+ {
263
+ "name": "fullWidth",
264
+ "description": "Specify if the Alert has no border radius",
265
+ "values": []
266
+ },
267
+ {
268
+ "name": "theme",
269
+ "description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
270
+ "values": [{ "name": "light" }, { "name": "dark" }]
271
+ },
272
+ {
273
+ "name": "appearance",
274
+ "description": "Specify the appearance of the Alert",
275
+ "values": [
276
+ { "name": "infoPrimary" },
277
+ { "name": "infoSecondary" },
278
+ { "name": "positive" },
279
+ { "name": "warning" },
280
+ { "name": "negative" }
281
+ ]
282
+ },
283
+ {
284
+ "name": "hidden",
285
+ "description": "Specify if the Alert is hidden",
286
+ "values": []
287
+ },
288
+ {
289
+ "name": "hideIcon",
290
+ "description": "Specify if the icon displays on the Alert",
291
+ "values": []
292
+ },
293
+ {
294
+ "name": "dismissible",
295
+ "description": "Specify if the Alert can be dismissed",
296
+ "values": []
297
+ },
298
+ {
299
+ "name": "disableAutoFocus",
300
+ "description": "Prevent autofocus on show",
301
+ "values": []
302
+ },
303
+ {
304
+ "name": "disableCloseOnEscape",
305
+ "description": "Prevent Escape from closing",
306
+ "values": []
307
+ }
308
+ ],
309
+ "references": [
310
+ {
311
+ "name": "Storybook",
312
+ "url": "https://web-components.beam.viasat.com/?path=/docs/components-alert"
313
+ }
314
+ ]
315
+ },
145
316
  {
146
317
  "name": "bm-box",
147
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",
@@ -481,238 +652,67 @@
481
652
  { "name": "200" },
482
653
  { "name": "300" },
483
654
  { "name": "400" },
484
- { "name": "500" },
485
- { "name": "700" },
486
- { "name": "800" }
487
- ]
488
- },
489
- {
490
- "name": "p",
491
- "description": "Specify all padding",
492
- "values": [
493
- { "name": "0" },
494
- { "name": "12" },
495
- { "name": "25" },
496
- { "name": "50" },
497
- { "name": "75" },
498
- { "name": "100" },
499
- { "name": "125" },
500
- { "name": "150" },
501
- { "name": "200" },
502
- { "name": "300" },
503
- { "name": "400" },
504
- { "name": "500" },
505
- { "name": "700" },
506
- { "name": "800" }
507
- ]
508
- },
509
- {
510
- "name": "gap",
511
- "description": "Specify gap between child elements",
512
- "values": [
513
- { "name": "0" },
514
- { "name": "12" },
515
- { "name": "25" },
516
- { "name": "50" },
517
- { "name": "75" },
518
- { "name": "100" },
519
- { "name": "125" },
520
- { "name": "150" },
521
- { "name": "200" },
522
- { "name": "300" },
523
- { "name": "400" },
524
- { "name": "500" },
525
- { "name": "700" },
526
- { "name": "800" }
527
- ]
528
- },
529
- {
530
- "name": "shadow",
531
- "description": "Specify if a Box has a shadow",
532
- "values": [
533
- { "name": "sm" },
534
- { "name": "md" },
535
- { "name": "lg" },
536
- { "name": "none" },
537
- { "name": "overlay" }
538
- ]
539
- }
540
- ],
541
- "references": [
542
- {
543
- "name": "Storybook",
544
- "url": "https://web-components.beam.viasat.com/?path=/docs/components-box"
545
- }
546
- ]
547
- },
548
- {
549
- "name": "bm-alert",
550
- "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",
551
- "attributes": [
552
- {
553
- "name": "heading",
554
- "description": "Specify the heading text for Alert",
555
- "values": []
556
- },
557
- {
558
- "name": "body",
559
- "description": "Specify the body text for Alert",
560
- "values": []
561
- },
562
- {
563
- "name": "size",
564
- "description": "Specify the size of the Alert",
565
- "values": [{ "name": "sm" }, { "name": "md" }]
566
- },
567
- {
568
- "name": "fullWidth",
569
- "description": "Specify if the Alert has no border radius",
570
- "values": []
571
- },
572
- {
573
- "name": "theme",
574
- "description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
575
- "values": [{ "name": "light" }, { "name": "dark" }]
576
- },
577
- {
578
- "name": "appearance",
579
- "description": "Specify the appearance of the Alert",
580
- "values": [
581
- { "name": "infoPrimary" },
582
- { "name": "infoSecondary" },
583
- { "name": "positive" },
584
- { "name": "warning" },
585
- { "name": "negative" }
586
- ]
587
- },
588
- {
589
- "name": "hidden",
590
- "description": "Specify if the Alert is hidden",
591
- "values": []
592
- },
593
- {
594
- "name": "hideIcon",
595
- "description": "Specify if the icon displays on the Alert",
596
- "values": []
597
- },
598
- {
599
- "name": "dismissible",
600
- "description": "Specify if the Alert can be dismissed",
601
- "values": []
602
- },
603
- {
604
- "name": "disableAutoFocus",
605
- "description": "Prevent autofocus on show",
606
- "values": []
607
- },
608
- {
609
- "name": "disableCloseOnEscape",
610
- "description": "Prevent Escape from closing",
611
- "values": []
612
- }
613
- ],
614
- "references": [
615
- {
616
- "name": "Storybook",
617
- "url": "https://web-components.beam.viasat.com/?path=/docs/components-alert"
618
- }
619
- ]
620
- },
621
- {
622
- "name": "bm-avatar",
623
- "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",
624
- "attributes": [
625
- {
626
- "name": "appearance",
627
- "description": "Specify the appearance of the Avatar",
628
- "values": [{ "name": "accent" }, { "name": "neutral" }]
629
- },
630
- {
631
- "name": "name",
632
- "description": "Specify a name to display initials in the Avatar",
633
- "values": []
634
- },
635
- {
636
- "name": "src",
637
- "description": "Pass an image to the Avatar",
638
- "values": []
639
- },
640
- { "name": "alt", "description": "Specify alt for image", "values": [] },
641
- {
642
- "name": "size",
643
- "description": "Specify the size of the Avatar",
644
- "values": [
645
- { "name": "xs" },
646
- { "name": "sm" },
647
- { "name": "md" },
648
- { "name": "lg" },
649
- { "name": "xl" }
650
- ]
651
- },
652
- {
653
- "name": "disabled",
654
- "description": "Specify if the Avatar is disabled",
655
- "values": []
656
- },
657
- {
658
- "name": "shape",
659
- "description": "Specify the shape of the Avatar",
660
- "values": [{ "name": "circle" }, { "name": "square" }]
661
- },
662
- {
663
- "name": "isInteractive",
664
- "description": "If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer",
665
- "values": []
666
- },
667
- {
668
- "name": "isFocusable",
669
- "description": "If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable",
670
- "values": []
671
- },
672
- { "name": "withBorder", "values": [] }
673
- ],
674
- "references": [
675
- {
676
- "name": "Storybook",
677
- "url": "https://web-components.beam.viasat.com/?path=/docs/components-avatar"
678
- }
679
- ]
680
- },
681
- {
682
- "name": "bm-avatar-group",
683
- "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",
684
- "attributes": [
655
+ { "name": "500" },
656
+ { "name": "700" },
657
+ { "name": "800" }
658
+ ]
659
+ },
685
660
  {
686
- "name": "wrapping",
687
- "description": "Specify if the AvatarGroup wraps",
688
- "values": []
661
+ "name": "p",
662
+ "description": "Specify all padding",
663
+ "values": [
664
+ { "name": "0" },
665
+ { "name": "12" },
666
+ { "name": "25" },
667
+ { "name": "50" },
668
+ { "name": "75" },
669
+ { "name": "100" },
670
+ { "name": "125" },
671
+ { "name": "150" },
672
+ { "name": "200" },
673
+ { "name": "300" },
674
+ { "name": "400" },
675
+ { "name": "500" },
676
+ { "name": "700" },
677
+ { "name": "800" }
678
+ ]
689
679
  },
690
680
  {
691
- "name": "maxCount",
692
- "description": "Specify the max number of avatars displayed in the group.",
693
- "values": []
681
+ "name": "gap",
682
+ "description": "Specify gap between child elements",
683
+ "values": [
684
+ { "name": "0" },
685
+ { "name": "12" },
686
+ { "name": "25" },
687
+ { "name": "50" },
688
+ { "name": "75" },
689
+ { "name": "100" },
690
+ { "name": "125" },
691
+ { "name": "150" },
692
+ { "name": "200" },
693
+ { "name": "300" },
694
+ { "name": "400" },
695
+ { "name": "500" },
696
+ { "name": "700" },
697
+ { "name": "800" }
698
+ ]
694
699
  },
695
700
  {
696
- "name": "size",
697
- "description": "Specify the size of all Avatars",
701
+ "name": "shadow",
702
+ "description": "Specify if a Box has a shadow",
698
703
  "values": [
699
- { "name": "xs" },
700
704
  { "name": "sm" },
701
705
  { "name": "md" },
702
706
  { "name": "lg" },
703
- { "name": "xl" }
707
+ { "name": "none" },
708
+ { "name": "overlay" }
704
709
  ]
705
- },
706
- {
707
- "name": "layout",
708
- "description": "Specify the kind of the group.",
709
- "values": [{ "name": "stacked" }, { "name": "spaced" }]
710
710
  }
711
711
  ],
712
712
  "references": [
713
713
  {
714
714
  "name": "Storybook",
715
- "url": "https://web-components.beam.viasat.com/?path=/docs/components-avatar"
715
+ "url": "https://web-components.beam.viasat.com/?path=/docs/components-box"
716
716
  }
717
717
  ]
718
718
  },
@@ -2044,103 +2044,6 @@
2044
2044
  }
2045
2045
  ]
2046
2046
  },
2047
- {
2048
- "name": "bm-form",
2049
- "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",
2050
- "attributes": [
2051
- {
2052
- "name": "validationMode",
2053
- "description": "Specify if validation runs on change or when loosing focus",
2054
- "values": [
2055
- { "name": "onChange" },
2056
- { "name": "onBlur" },
2057
- { "name": "onSubmit" }
2058
- ]
2059
- },
2060
- {
2061
- "name": "initialValues",
2062
- "description": "Specify initial values on Form controls based on their names",
2063
- "values": [{ "name": "Record<string" }, { "name": "FormValue>" }]
2064
- },
2065
- {
2066
- "name": "required",
2067
- "description": "Specify if input is a required",
2068
- "values": []
2069
- },
2070
- {
2071
- "name": "disabled",
2072
- "description": "Specify if input is a disabled",
2073
- "values": []
2074
- },
2075
- {
2076
- "name": "readOnly",
2077
- "description": "Specify if input is a read only",
2078
- "values": []
2079
- },
2080
- { "name": "action", "values": [] },
2081
- { "name": "method", "values": [] },
2082
- { "name": "target", "values": [] },
2083
- { "name": "enctype", "values": [] }
2084
- ],
2085
- "references": [
2086
- {
2087
- "name": "Storybook",
2088
- "url": "https://web-components.beam.viasat.com/?path=/docs/forms-form"
2089
- }
2090
- ]
2091
- },
2092
- {
2093
- "name": "bm-radio-button",
2094
- "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",
2095
- "attributes": [
2096
- {
2097
- "name": "label",
2098
- "description": "Specify the text for the label",
2099
- "values": []
2100
- },
2101
- {
2102
- "name": "error",
2103
- "description": "Specify error text and display error state of a RadioButton",
2104
- "values": []
2105
- },
2106
- {
2107
- "name": "readOnly",
2108
- "description": "Specify if RadioButton displays in a read-only state",
2109
- "values": []
2110
- },
2111
- {
2112
- "name": "disabled",
2113
- "description": "Specify if RadioButton displays in a disabled state",
2114
- "values": []
2115
- },
2116
- {
2117
- "name": "theme",
2118
- "description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
2119
- "values": [{ "name": "light" }, { "name": "dark" }]
2120
- },
2121
- {
2122
- "name": "value",
2123
- "description": "The value attribute for the input element",
2124
- "values": []
2125
- },
2126
- {
2127
- "name": "checked",
2128
- "description": "The checked attribute for the input element",
2129
- "values": []
2130
- },
2131
- {
2132
- "name": "onKeyDown",
2133
- "description": "A user-defined function to handle keydown events",
2134
- "values": [{ "name": "(event: KeyboardEvent) => void" }]
2135
- }
2136
- ],
2137
- "references": [
2138
- {
2139
- "name": "Storybook",
2140
- "url": "https://web-components.beam.viasat.com/?path=/docs/forms-radiobutton"
2141
- }
2142
- ]
2143
- },
2144
2047
  {
2145
2048
  "name": "bm-file-upload-button",
2146
2049
  "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",
@@ -2448,6 +2351,103 @@
2448
2351
  }
2449
2352
  ]
2450
2353
  },
2354
+ {
2355
+ "name": "bm-form",
2356
+ "description": "`bm-form`\n---\n\n\n### **Events:**\n - **submit** - Validates the inputs and submits the form\n\n### **Slots:**\n - **slot** - Add controls to the Form",
2357
+ "attributes": [
2358
+ {
2359
+ "name": "validationMode",
2360
+ "description": "Specify if validation runs on change or when loosing focus",
2361
+ "values": [
2362
+ { "name": "onChange" },
2363
+ { "name": "onBlur" },
2364
+ { "name": "onSubmit" }
2365
+ ]
2366
+ },
2367
+ {
2368
+ "name": "initialValues",
2369
+ "description": "Specify initial values on Form controls based on their names",
2370
+ "values": [{ "name": "Record<string" }, { "name": "FormValue>" }]
2371
+ },
2372
+ {
2373
+ "name": "required",
2374
+ "description": "Specify if input is a required",
2375
+ "values": []
2376
+ },
2377
+ {
2378
+ "name": "disabled",
2379
+ "description": "Specify if input is a disabled",
2380
+ "values": []
2381
+ },
2382
+ {
2383
+ "name": "readOnly",
2384
+ "description": "Specify if input is a read only",
2385
+ "values": []
2386
+ },
2387
+ { "name": "action", "values": [] },
2388
+ { "name": "method", "values": [] },
2389
+ { "name": "target", "values": [] },
2390
+ { "name": "enctype", "values": [] }
2391
+ ],
2392
+ "references": [
2393
+ {
2394
+ "name": "Storybook",
2395
+ "url": "https://web-components.beam.viasat.com/?path=/docs/forms-form"
2396
+ }
2397
+ ]
2398
+ },
2399
+ {
2400
+ "name": "bm-radio-button",
2401
+ "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",
2402
+ "attributes": [
2403
+ {
2404
+ "name": "label",
2405
+ "description": "Specify the text for the label",
2406
+ "values": []
2407
+ },
2408
+ {
2409
+ "name": "error",
2410
+ "description": "Specify error text and display error state of a RadioButton",
2411
+ "values": []
2412
+ },
2413
+ {
2414
+ "name": "readOnly",
2415
+ "description": "Specify if RadioButton displays in a read-only state",
2416
+ "values": []
2417
+ },
2418
+ {
2419
+ "name": "disabled",
2420
+ "description": "Specify if RadioButton displays in a disabled state",
2421
+ "values": []
2422
+ },
2423
+ {
2424
+ "name": "theme",
2425
+ "description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
2426
+ "values": [{ "name": "light" }, { "name": "dark" }]
2427
+ },
2428
+ {
2429
+ "name": "value",
2430
+ "description": "The value attribute for the input element",
2431
+ "values": []
2432
+ },
2433
+ {
2434
+ "name": "checked",
2435
+ "description": "The checked attribute for the input element",
2436
+ "values": []
2437
+ },
2438
+ {
2439
+ "name": "onKeyDown",
2440
+ "description": "A user-defined function to handle keydown events",
2441
+ "values": [{ "name": "(event: KeyboardEvent) => void" }]
2442
+ }
2443
+ ],
2444
+ "references": [
2445
+ {
2446
+ "name": "Storybook",
2447
+ "url": "https://web-components.beam.viasat.com/?path=/docs/forms-radiobutton"
2448
+ }
2449
+ ]
2450
+ },
2451
2451
  {
2452
2452
  "name": "bm-native-select",
2453
2453
  "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",