@viasat/beam-web-components 2.12.0 → 2.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@viasat/beam-web-components",
3
- "version": "2.12.0",
3
+ "version": "2.13.0",
4
4
  "description": "Framework-agnostic web components for the Beam Design System built with Lit, compatible with Angular, Vue, Svelte, and vanilla JavaScript",
5
5
  "license": "MIT",
6
6
  "author": "Viasat",
@@ -64,11 +64,11 @@
64
64
  "access": "public"
65
65
  },
66
66
  "dependencies": {
67
- "@viasat/beam-fonts": "2.12.0",
68
- "@viasat/beam-shared": "2.12.0",
69
- "@viasat/beam-styles": "2.12.0",
70
- "@viasat/beam-tokens": "2.12.0",
71
- "@viasat/beam-icons": "2.12.0",
67
+ "@viasat/beam-fonts": "2.13.0",
68
+ "@viasat/beam-shared": "2.13.0",
69
+ "@viasat/beam-styles": "2.13.0",
70
+ "@viasat/beam-tokens": "2.13.0",
71
+ "@viasat/beam-icons": "2.13.0",
72
72
  "clsx": "^1.2.1",
73
73
  "lit": "^3.1.0",
74
74
  "@lit/context": "^1.1.1",
@@ -62,117 +62,258 @@
62
62
  ]
63
63
  },
64
64
  {
65
- "name": "bm-alert",
66
- "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",
65
+ "name": "bm-badge",
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",
67
67
  "attributes": [
68
68
  {
69
- "name": "heading",
70
- "description": "Specify the heading text for Alert",
71
- "values": []
69
+ "name": "appearance",
70
+ "description": "Specify the appearance of the Badge",
71
+ "values": [
72
+ { "name": "infoPrimary" },
73
+ { "name": "infoSecondary" },
74
+ { "name": "positive" },
75
+ { "name": "warning" },
76
+ { "name": "negative" }
77
+ ]
72
78
  },
73
79
  {
74
- "name": "body",
75
- "description": "Specify the body text for Alert",
76
- "values": []
80
+ "name": "theme",
81
+ "description": "Theme of the Badge",
82
+ "values": [{ "name": "light" }, { "name": "dark" }]
77
83
  },
78
84
  {
79
85
  "name": "size",
80
- "description": "Specify the size of the Alert",
86
+ "description": "Specify the size of the Badge",
81
87
  "values": [{ "name": "sm" }, { "name": "md" }]
82
88
  },
83
89
  {
84
- "name": "fullWidth",
85
- "description": "Specify if the Alert has no border radius",
86
- "values": []
90
+ "name": "emphasis",
91
+ "description": "Specify the emphasis of the Badge",
92
+ "values": [
93
+ { "name": "strong" },
94
+ { "name": "medium" },
95
+ { "name": "subtle" }
96
+ ]
87
97
  },
98
+ { "name": "hideIcon", "description": "Hides Badge icon", "values": [] }
99
+ ],
100
+ "references": [
101
+ {
102
+ "name": "Storybook",
103
+ "url": "https://web-components.beam.viasat.com/?path=/docs/components-badge"
104
+ }
105
+ ]
106
+ },
107
+ {
108
+ "name": "bm-badge-dot",
109
+ "description": "`bm-badge-dot`\n\n### Attributes:\n- **theme** - Specify the theme of the BadgeDot. By default it inherits the theme from the parent\n- **appearance** - Specify the appearance of the BadgeDot\n- **emphasis** - Specify the emphasis of the BadgeDot\n- **overrideDotColor** - Overrides default dot color\n---\n\n\n### **Slots:**\n - **default** - Provide text for the BadgeDot",
110
+ "attributes": [
88
111
  {
89
112
  "name": "theme",
90
- "description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
113
+ "description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
91
114
  "values": [{ "name": "light" }, { "name": "dark" }]
92
115
  },
93
116
  {
94
117
  "name": "appearance",
95
- "description": "Specify the appearance of the Alert",
118
+ "description": "Specify the appearance of the BadgeDot",
96
119
  "values": [
120
+ { "name": "primary" },
121
+ { "name": "secondary" },
97
122
  { "name": "infoPrimary" },
98
123
  { "name": "infoSecondary" },
99
124
  { "name": "positive" },
100
125
  { "name": "warning" },
101
- { "name": "negative" }
126
+ { "name": "negative" },
127
+ { "name": "inverse" },
128
+ { "name": "secondaryInverse" }
102
129
  ]
103
130
  },
104
131
  {
105
- "name": "hidden",
106
- "description": "Specify if the Alert is hidden",
132
+ "name": "emphasis",
133
+ "description": "Specify the emphasis of the BadgeDot",
134
+ "values": [{ "name": "Emphasis" }]
135
+ },
136
+ {
137
+ "name": "overrideDotColor",
138
+ "description": "Overrides default dot color",
107
139
  "values": []
140
+ }
141
+ ],
142
+ "references": [
143
+ {
144
+ "name": "Storybook",
145
+ "url": "https://web-components.beam.viasat.com/?path=/docs/components-badgedot"
146
+ }
147
+ ]
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" }]
108
157
  },
109
158
  {
110
- "name": "hideIcon",
111
- "description": "Specify if the icon displays on the Alert",
159
+ "name": "name",
160
+ "description": "Specify a name to display initials in the Avatar",
112
161
  "values": []
113
162
  },
114
163
  {
115
- "name": "dismissible",
116
- "description": "Specify if the Alert can be dismissed",
164
+ "name": "src",
165
+ "description": "Pass an image to the Avatar",
117
166
  "values": []
118
167
  },
168
+ { "name": "alt", "description": "Specify alt for image", "values": [] },
119
169
  {
120
- "name": "disableAutoFocus",
121
- "description": "Prevent autofocus on show",
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",
122
183
  "values": []
123
184
  },
124
185
  {
125
- "name": "disableCloseOnEscape",
126
- "description": "Prevent Escape from closing",
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",
127
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" }]
128
238
  }
129
239
  ],
130
240
  "references": [
131
241
  {
132
242
  "name": "Storybook",
133
- "url": "https://web-components.beam.viasat.com/?path=/docs/components-alert"
243
+ "url": "https://web-components.beam.viasat.com/?path=/docs/components-avatar"
134
244
  }
135
245
  ]
136
246
  },
137
247
  {
138
- "name": "bm-badge-dot",
139
- "description": "`bm-badge-dot`\n\n### Attributes:\n- **theme** - Specify the theme of the BadgeDot. By default it inherits the theme from the parent\n- **appearance** - Specify the appearance of the BadgeDot\n- **emphasis** - Specify the emphasis of the BadgeDot\n- **overrideDotColor** - Overrides default dot color\n---\n\n\n### **Slots:**\n - **default** - Provide text for the BadgeDot",
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",
140
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
+ },
141
271
  {
142
272
  "name": "theme",
143
- "description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
273
+ "description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
144
274
  "values": [{ "name": "light" }, { "name": "dark" }]
145
275
  },
146
276
  {
147
277
  "name": "appearance",
148
- "description": "Specify the appearance of the BadgeDot",
278
+ "description": "Specify the appearance of the Alert",
149
279
  "values": [
150
- { "name": "primary" },
151
- { "name": "secondary" },
152
280
  { "name": "infoPrimary" },
153
281
  { "name": "infoSecondary" },
154
282
  { "name": "positive" },
155
283
  { "name": "warning" },
156
- { "name": "negative" },
157
- { "name": "inverse" },
158
- { "name": "secondaryInverse" }
284
+ { "name": "negative" }
159
285
  ]
160
286
  },
161
287
  {
162
- "name": "emphasis",
163
- "description": "Specify the emphasis of the BadgeDot",
164
- "values": [{ "name": "Emphasis" }]
288
+ "name": "hidden",
289
+ "description": "Specify if the Alert is hidden",
290
+ "values": []
165
291
  },
166
292
  {
167
- "name": "overrideDotColor",
168
- "description": "Overrides default dot color",
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",
169
310
  "values": []
170
311
  }
171
312
  ],
172
313
  "references": [
173
314
  {
174
315
  "name": "Storybook",
175
- "url": "https://web-components.beam.viasat.com/?path=/docs/components-badgedot"
316
+ "url": "https://web-components.beam.viasat.com/?path=/docs/components-alert"
176
317
  }
177
318
  ]
178
319
  },
@@ -640,49 +781,6 @@
640
781
  }
641
782
  ]
642
783
  },
643
- {
644
- "name": "bm-badge",
645
- "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",
646
- "attributes": [
647
- {
648
- "name": "appearance",
649
- "description": "Specify the appearance of the Badge",
650
- "values": [
651
- { "name": "infoPrimary" },
652
- { "name": "infoSecondary" },
653
- { "name": "positive" },
654
- { "name": "warning" },
655
- { "name": "negative" }
656
- ]
657
- },
658
- {
659
- "name": "theme",
660
- "description": "Theme of the Badge",
661
- "values": [{ "name": "light" }, { "name": "dark" }]
662
- },
663
- {
664
- "name": "size",
665
- "description": "Specify the size of the Badge",
666
- "values": [{ "name": "sm" }, { "name": "md" }]
667
- },
668
- {
669
- "name": "emphasis",
670
- "description": "Specify the emphasis of the Badge",
671
- "values": [
672
- { "name": "strong" },
673
- { "name": "medium" },
674
- { "name": "subtle" }
675
- ]
676
- },
677
- { "name": "hideIcon", "description": "Hides Badge icon", "values": [] }
678
- ],
679
- "references": [
680
- {
681
- "name": "Storybook",
682
- "url": "https://web-components.beam.viasat.com/?path=/docs/components-badge"
683
- }
684
- ]
685
- },
686
784
  {
687
785
  "name": "bm-button",
688
786
  "description": "`bm-button`\n\n### Attributes:\n- **appearance** - Specify the appearance of a Button\n- **kind** - Specify the kind of Button\n- **size** - Specify the size of a Button\n- **disabled** - Specify if the Button is disabled\n- **fluid** - Specify if Button is fluid\n- **width** - Specify the width of a Button\n- **height** - Specify the height of a Button\n- **theme** - Specify the theme of the Button\n- **iconOnly** - Specify if the icon displays without text\n- **type** \n---\n\n\n### **Slots:**\n - **default** - Provide content for the Button\n- **iconBefore** - Specify if the Button displays icon before the text\n- **iconAfter** - Specify if the Button displays icon after the text",
@@ -751,104 +849,6 @@
751
849
  }
752
850
  ]
753
851
  },
754
- {
755
- "name": "bm-avatar",
756
- "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",
757
- "attributes": [
758
- {
759
- "name": "appearance",
760
- "description": "Specify the appearance of the Avatar",
761
- "values": [{ "name": "accent" }, { "name": "neutral" }]
762
- },
763
- {
764
- "name": "name",
765
- "description": "Specify a name to display initials in the Avatar",
766
- "values": []
767
- },
768
- {
769
- "name": "src",
770
- "description": "Pass an image to the Avatar",
771
- "values": []
772
- },
773
- { "name": "alt", "description": "Specify alt for image", "values": [] },
774
- {
775
- "name": "size",
776
- "description": "Specify the size of the Avatar",
777
- "values": [
778
- { "name": "xs" },
779
- { "name": "sm" },
780
- { "name": "md" },
781
- { "name": "lg" },
782
- { "name": "xl" }
783
- ]
784
- },
785
- {
786
- "name": "disabled",
787
- "description": "Specify if the Avatar is disabled",
788
- "values": []
789
- },
790
- {
791
- "name": "shape",
792
- "description": "Specify the shape of the Avatar",
793
- "values": [{ "name": "circle" }, { "name": "square" }]
794
- },
795
- {
796
- "name": "isInteractive",
797
- "description": "If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer",
798
- "values": []
799
- },
800
- {
801
- "name": "isFocusable",
802
- "description": "If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable",
803
- "values": []
804
- },
805
- { "name": "withBorder", "values": [] }
806
- ],
807
- "references": [
808
- {
809
- "name": "Storybook",
810
- "url": "https://web-components.beam.viasat.com/?path=/docs/components-avatar"
811
- }
812
- ]
813
- },
814
- {
815
- "name": "bm-avatar-group",
816
- "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",
817
- "attributes": [
818
- {
819
- "name": "wrapping",
820
- "description": "Specify if the AvatarGroup wraps",
821
- "values": []
822
- },
823
- {
824
- "name": "maxCount",
825
- "description": "Specify the max number of avatars displayed in the group.",
826
- "values": []
827
- },
828
- {
829
- "name": "size",
830
- "description": "Specify the size of all Avatars",
831
- "values": [
832
- { "name": "xs" },
833
- { "name": "sm" },
834
- { "name": "md" },
835
- { "name": "lg" },
836
- { "name": "xl" }
837
- ]
838
- },
839
- {
840
- "name": "layout",
841
- "description": "Specify the kind of the group.",
842
- "values": [{ "name": "stacked" }, { "name": "spaced" }]
843
- }
844
- ],
845
- "references": [
846
- {
847
- "name": "Storybook",
848
- "url": "https://web-components.beam.viasat.com/?path=/docs/components-avatar"
849
- }
850
- ]
851
- },
852
852
  {
853
853
  "name": "bm-close-button",
854
854
  "description": "`bm-close-button`\n\n### Attributes:\n- **size** - Specify the size of the CloseButton\n- **disabled** - Specify if the CloseButton is disabled\n---\n",
@@ -2264,58 +2264,6 @@
2264
2264
  }
2265
2265
  ]
2266
2266
  },
2267
- {
2268
- "name": "bm-radio-button",
2269
- "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",
2270
- "attributes": [
2271
- {
2272
- "name": "label",
2273
- "description": "Specify the text for the label",
2274
- "values": []
2275
- },
2276
- {
2277
- "name": "error",
2278
- "description": "Specify error text and display error state of a RadioButton",
2279
- "values": []
2280
- },
2281
- {
2282
- "name": "readOnly",
2283
- "description": "Specify if RadioButton displays in a read-only state",
2284
- "values": []
2285
- },
2286
- {
2287
- "name": "disabled",
2288
- "description": "Specify if RadioButton displays in a disabled state",
2289
- "values": []
2290
- },
2291
- {
2292
- "name": "theme",
2293
- "description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
2294
- "values": [{ "name": "light" }, { "name": "dark" }]
2295
- },
2296
- {
2297
- "name": "value",
2298
- "description": "The value attribute for the input element",
2299
- "values": []
2300
- },
2301
- {
2302
- "name": "checked",
2303
- "description": "The checked attribute for the input element",
2304
- "values": []
2305
- },
2306
- {
2307
- "name": "onKeyDown",
2308
- "description": "A user-defined function to handle keydown events",
2309
- "values": [{ "name": "(event: KeyboardEvent) => void" }]
2310
- }
2311
- ],
2312
- "references": [
2313
- {
2314
- "name": "Storybook",
2315
- "url": "https://web-components.beam.viasat.com/?path=/docs/forms-radiobutton"
2316
- }
2317
- ]
2318
- },
2319
2267
  {
2320
2268
  "name": "bm-text-area",
2321
2269
  "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",
@@ -2484,6 +2432,58 @@
2484
2432
  }
2485
2433
  ]
2486
2434
  },
2435
+ {
2436
+ "name": "bm-radio-button",
2437
+ "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",
2438
+ "attributes": [
2439
+ {
2440
+ "name": "label",
2441
+ "description": "Specify the text for the label",
2442
+ "values": []
2443
+ },
2444
+ {
2445
+ "name": "error",
2446
+ "description": "Specify error text and display error state of a RadioButton",
2447
+ "values": []
2448
+ },
2449
+ {
2450
+ "name": "readOnly",
2451
+ "description": "Specify if RadioButton displays in a read-only state",
2452
+ "values": []
2453
+ },
2454
+ {
2455
+ "name": "disabled",
2456
+ "description": "Specify if RadioButton displays in a disabled state",
2457
+ "values": []
2458
+ },
2459
+ {
2460
+ "name": "theme",
2461
+ "description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
2462
+ "values": [{ "name": "light" }, { "name": "dark" }]
2463
+ },
2464
+ {
2465
+ "name": "value",
2466
+ "description": "The value attribute for the input element",
2467
+ "values": []
2468
+ },
2469
+ {
2470
+ "name": "checked",
2471
+ "description": "The checked attribute for the input element",
2472
+ "values": []
2473
+ },
2474
+ {
2475
+ "name": "onKeyDown",
2476
+ "description": "A user-defined function to handle keydown events",
2477
+ "values": [{ "name": "(event: KeyboardEvent) => void" }]
2478
+ }
2479
+ ],
2480
+ "references": [
2481
+ {
2482
+ "name": "Storybook",
2483
+ "url": "https://web-components.beam.viasat.com/?path=/docs/forms-radiobutton"
2484
+ }
2485
+ ]
2486
+ },
2487
2487
  {
2488
2488
  "name": "bm-checkbox-group",
2489
2489
  "description": "\n---\n\n\n### **Slots:**\n - **label** - Add label text to the InputChoiceGroup\n- **helperText** - Add helper text to the InputChoiceGroup",