@viasat/beam-web-components 2.43.2 → 2.45.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/custom-elements.json +2125 -2125
- package/package.json +6 -6
- package/vscode.html-custom-data.json +248 -248
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@viasat/beam-web-components",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.45.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.
|
|
68
|
-
"@viasat/beam-shared": "2.
|
|
69
|
-
"@viasat/beam-styles": "2.
|
|
70
|
-
"@viasat/beam-tokens": "2.
|
|
71
|
-
"@viasat/beam-icons": "2.
|
|
67
|
+
"@viasat/beam-fonts": "2.45.0",
|
|
68
|
+
"@viasat/beam-shared": "2.45.0",
|
|
69
|
+
"@viasat/beam-styles": "2.45.0",
|
|
70
|
+
"@viasat/beam-tokens": "2.45.0",
|
|
71
|
+
"@viasat/beam-icons": "2.45.0",
|
|
72
72
|
"clsx": "^1.2.1",
|
|
73
73
|
"lit": "^3.1.0",
|
|
74
74
|
"@lit/context": "^1.1.1",
|
|
@@ -62,75 +62,100 @@
|
|
|
62
62
|
]
|
|
63
63
|
},
|
|
64
64
|
{
|
|
65
|
-
"name": "bm-
|
|
66
|
-
"description": "`bm-
|
|
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
67
|
"attributes": [
|
|
68
68
|
{
|
|
69
|
-
"name": "
|
|
70
|
-
"description": "Specify the
|
|
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",
|
|
71
76
|
"values": []
|
|
72
77
|
},
|
|
73
78
|
{
|
|
74
|
-
"name": "
|
|
75
|
-
"description": "
|
|
79
|
+
"name": "src",
|
|
80
|
+
"description": "Pass an image to the Avatar",
|
|
76
81
|
"values": []
|
|
77
82
|
},
|
|
83
|
+
{ "name": "alt", "description": "Specify alt for image", "values": [] },
|
|
78
84
|
{
|
|
79
85
|
"name": "size",
|
|
80
|
-
"description": "Specify the size of the
|
|
81
|
-
"values": [
|
|
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
|
+
]
|
|
82
94
|
},
|
|
83
95
|
{
|
|
84
|
-
"name": "
|
|
85
|
-
"description": "Specify if the
|
|
96
|
+
"name": "disabled",
|
|
97
|
+
"description": "Specify if the Avatar is disabled",
|
|
86
98
|
"values": []
|
|
87
99
|
},
|
|
88
100
|
{
|
|
89
|
-
"name": "
|
|
90
|
-
"description": "Specify the
|
|
91
|
-
"values": [{ "name": "
|
|
101
|
+
"name": "shape",
|
|
102
|
+
"description": "Specify the shape of the Avatar",
|
|
103
|
+
"values": [{ "name": "circle" }, { "name": "square" }]
|
|
92
104
|
},
|
|
93
105
|
{
|
|
94
|
-
"name": "
|
|
95
|
-
"description": "
|
|
96
|
-
"values": [
|
|
97
|
-
{ "name": "infoPrimary" },
|
|
98
|
-
{ "name": "infoSecondary" },
|
|
99
|
-
{ "name": "positive" },
|
|
100
|
-
{ "name": "warning" },
|
|
101
|
-
{ "name": "negative" }
|
|
102
|
-
]
|
|
106
|
+
"name": "isInteractive",
|
|
107
|
+
"description": "If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer",
|
|
108
|
+
"values": []
|
|
103
109
|
},
|
|
104
110
|
{
|
|
105
|
-
"name": "
|
|
106
|
-
"description": "
|
|
111
|
+
"name": "isFocusable",
|
|
112
|
+
"description": "If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable",
|
|
107
113
|
"values": []
|
|
108
114
|
},
|
|
115
|
+
{ "name": "withBorder", "values": [] }
|
|
116
|
+
],
|
|
117
|
+
"references": [
|
|
109
118
|
{
|
|
110
|
-
"name": "
|
|
111
|
-
"
|
|
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",
|
|
112
131
|
"values": []
|
|
113
132
|
},
|
|
114
133
|
{
|
|
115
|
-
"name": "
|
|
116
|
-
"description": "Specify
|
|
134
|
+
"name": "maxCount",
|
|
135
|
+
"description": "Specify the max number of avatars displayed in the group.",
|
|
117
136
|
"values": []
|
|
118
137
|
},
|
|
119
138
|
{
|
|
120
|
-
"name": "
|
|
121
|
-
"description": "
|
|
122
|
-
"values": [
|
|
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
|
+
]
|
|
123
148
|
},
|
|
124
149
|
{
|
|
125
|
-
"name": "
|
|
126
|
-
"description": "
|
|
127
|
-
"values": []
|
|
150
|
+
"name": "layout",
|
|
151
|
+
"description": "Specify the kind of the group.",
|
|
152
|
+
"values": [{ "name": "stacked" }, { "name": "spaced" }]
|
|
128
153
|
}
|
|
129
154
|
],
|
|
130
155
|
"references": [
|
|
131
156
|
{
|
|
132
157
|
"name": "Storybook",
|
|
133
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-
|
|
158
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-avatar"
|
|
134
159
|
}
|
|
135
160
|
]
|
|
136
161
|
},
|
|
@@ -177,6 +202,79 @@
|
|
|
177
202
|
}
|
|
178
203
|
]
|
|
179
204
|
},
|
|
205
|
+
{
|
|
206
|
+
"name": "bm-alert",
|
|
207
|
+
"description": "`bm-alert`\n\n### Attributes:\n- **heading** - Specify the heading text for Alert\n- **body** - Specify the body text for Alert\n- **size** - Specify the size of the Alert\n- **fullWidth** - Specify if the Alert has no border radius\n- **theme** - Specify the theme of the Alert. By default it inherits the theme from the parent\n- **appearance** - Specify the appearance of the Alert\n- **hidden** - Specify if the Alert is hidden\n- **hideIcon** - Specify if the icon displays on the Alert\n- **dismissible** - Specify if the Alert can be dismissed\n- **disableAutoFocus** - Prevent autofocus on show\n- **disableCloseOnEscape** - Prevent Escape from closing\n---\n\n\n### **Events:**\n - **bm-dismiss** - Dispatched when the Alert has been dismissed\n\n### **Slots:**\n - **icon** - Specify a different icon for the Alert\n- **heading** - Specify the heading text for Alert or pass the `heading` attribute to set the heading\n- **body** - Specify the body text for Alert or pass the `body` attribute to set the body\n- **actions** - Specify if actions display on the Alert",
|
|
208
|
+
"attributes": [
|
|
209
|
+
{
|
|
210
|
+
"name": "heading",
|
|
211
|
+
"description": "Specify the heading text for Alert",
|
|
212
|
+
"values": []
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"name": "body",
|
|
216
|
+
"description": "Specify the body text for Alert",
|
|
217
|
+
"values": []
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"name": "size",
|
|
221
|
+
"description": "Specify the size of the Alert",
|
|
222
|
+
"values": [{ "name": "sm" }, { "name": "md" }]
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"name": "fullWidth",
|
|
226
|
+
"description": "Specify if the Alert has no border radius",
|
|
227
|
+
"values": []
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"name": "theme",
|
|
231
|
+
"description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
|
|
232
|
+
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"name": "appearance",
|
|
236
|
+
"description": "Specify the appearance of the Alert",
|
|
237
|
+
"values": [
|
|
238
|
+
{ "name": "infoPrimary" },
|
|
239
|
+
{ "name": "infoSecondary" },
|
|
240
|
+
{ "name": "positive" },
|
|
241
|
+
{ "name": "warning" },
|
|
242
|
+
{ "name": "negative" }
|
|
243
|
+
]
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"name": "hidden",
|
|
247
|
+
"description": "Specify if the Alert is hidden",
|
|
248
|
+
"values": []
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"name": "hideIcon",
|
|
252
|
+
"description": "Specify if the icon displays on the Alert",
|
|
253
|
+
"values": []
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"name": "dismissible",
|
|
257
|
+
"description": "Specify if the Alert can be dismissed",
|
|
258
|
+
"values": []
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"name": "disableAutoFocus",
|
|
262
|
+
"description": "Prevent autofocus on show",
|
|
263
|
+
"values": []
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"name": "disableCloseOnEscape",
|
|
267
|
+
"description": "Prevent Escape from closing",
|
|
268
|
+
"values": []
|
|
269
|
+
}
|
|
270
|
+
],
|
|
271
|
+
"references": [
|
|
272
|
+
{
|
|
273
|
+
"name": "Storybook",
|
|
274
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-alert"
|
|
275
|
+
}
|
|
276
|
+
]
|
|
277
|
+
},
|
|
180
278
|
{
|
|
181
279
|
"name": "bm-badge-dot",
|
|
182
280
|
"description": "`bm-badge-dot`\n\n### Attributes:\n- **theme** - Specify the theme of the BadgeDot. By default it inherits the theme from the parent\n- **appearance** - Specify the appearance of the BadgeDot\n- **emphasis** - Specify the emphasis of the BadgeDot\n- **overrideDotColor** - Overrides default dot color\n---\n\n\n### **Slots:**\n - **default** - Provide text for the BadgeDot",
|
|
@@ -618,104 +716,6 @@
|
|
|
618
716
|
}
|
|
619
717
|
]
|
|
620
718
|
},
|
|
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": [
|
|
685
|
-
{
|
|
686
|
-
"name": "wrapping",
|
|
687
|
-
"description": "Specify if the AvatarGroup wraps",
|
|
688
|
-
"values": []
|
|
689
|
-
},
|
|
690
|
-
{
|
|
691
|
-
"name": "maxCount",
|
|
692
|
-
"description": "Specify the max number of avatars displayed in the group.",
|
|
693
|
-
"values": []
|
|
694
|
-
},
|
|
695
|
-
{
|
|
696
|
-
"name": "size",
|
|
697
|
-
"description": "Specify the size of all Avatars",
|
|
698
|
-
"values": [
|
|
699
|
-
{ "name": "xs" },
|
|
700
|
-
{ "name": "sm" },
|
|
701
|
-
{ "name": "md" },
|
|
702
|
-
{ "name": "lg" },
|
|
703
|
-
{ "name": "xl" }
|
|
704
|
-
]
|
|
705
|
-
},
|
|
706
|
-
{
|
|
707
|
-
"name": "layout",
|
|
708
|
-
"description": "Specify the kind of the group.",
|
|
709
|
-
"values": [{ "name": "stacked" }, { "name": "spaced" }]
|
|
710
|
-
}
|
|
711
|
-
],
|
|
712
|
-
"references": [
|
|
713
|
-
{
|
|
714
|
-
"name": "Storybook",
|
|
715
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-avatar"
|
|
716
|
-
}
|
|
717
|
-
]
|
|
718
|
-
},
|
|
719
719
|
{
|
|
720
720
|
"name": "bm-breadcrumb",
|
|
721
721
|
"description": "`bm-breadcrumb`\n\n### Attributes:\n- **wrap** - Specify if items wrap or collapse to an ellipsis\n- **itemsBeforeCollapse** - Specify how many items show before ellipsis\n- **itemsAfterCollapse** - Specify how many items show after ellipsis\n- **theme** - Specify the theme of the Breadcrumbs. By default, it inherits the theme from the parent\n---\n\n\n### **Slots:**\n - **default** - Pass items to the Breadcrumb",
|
|
@@ -1852,6 +1852,63 @@
|
|
|
1852
1852
|
}
|
|
1853
1853
|
]
|
|
1854
1854
|
},
|
|
1855
|
+
{
|
|
1856
|
+
"name": "bm-checkbox",
|
|
1857
|
+
"description": "`bm-checkbox`\n\n### Attributes:\n- **theme** - Specify the theme of the CloseButton. By default it inherits the theme from the parent\n- **label** - Specify the text for the label\n- **name** - Specify the checkbox name\n- **value** - Specify the checkbox value\n- **error** - Specify error text and display error state of a Checkbox\n- **readOnly** - Specify if Checkbox displays in a read-only state\n- **indeterminate** - Specify if Checkbox displays in an indeterminate state\n- **disabled** - Specify if Checkbox displays in disabled state\n- **checked** - Specify if Checkbox is checked\n---\n",
|
|
1858
|
+
"attributes": [
|
|
1859
|
+
{
|
|
1860
|
+
"name": "theme",
|
|
1861
|
+
"description": "Specify the theme of the CloseButton. By default it inherits the theme from the parent",
|
|
1862
|
+
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
1863
|
+
},
|
|
1864
|
+
{
|
|
1865
|
+
"name": "label",
|
|
1866
|
+
"description": "Specify the text for the label",
|
|
1867
|
+
"values": []
|
|
1868
|
+
},
|
|
1869
|
+
{
|
|
1870
|
+
"name": "name",
|
|
1871
|
+
"description": "Specify the checkbox name",
|
|
1872
|
+
"values": []
|
|
1873
|
+
},
|
|
1874
|
+
{
|
|
1875
|
+
"name": "value",
|
|
1876
|
+
"description": "Specify the checkbox value",
|
|
1877
|
+
"values": []
|
|
1878
|
+
},
|
|
1879
|
+
{
|
|
1880
|
+
"name": "error",
|
|
1881
|
+
"description": "Specify error text and display error state of a Checkbox",
|
|
1882
|
+
"values": []
|
|
1883
|
+
},
|
|
1884
|
+
{
|
|
1885
|
+
"name": "readOnly",
|
|
1886
|
+
"description": "Specify if Checkbox displays in a read-only state",
|
|
1887
|
+
"values": []
|
|
1888
|
+
},
|
|
1889
|
+
{
|
|
1890
|
+
"name": "indeterminate",
|
|
1891
|
+
"description": "Specify if Checkbox displays in an indeterminate state",
|
|
1892
|
+
"values": []
|
|
1893
|
+
},
|
|
1894
|
+
{
|
|
1895
|
+
"name": "disabled",
|
|
1896
|
+
"description": "Specify if Checkbox displays in disabled state",
|
|
1897
|
+
"values": []
|
|
1898
|
+
},
|
|
1899
|
+
{
|
|
1900
|
+
"name": "checked",
|
|
1901
|
+
"description": "Specify if Checkbox is checked",
|
|
1902
|
+
"values": []
|
|
1903
|
+
}
|
|
1904
|
+
],
|
|
1905
|
+
"references": [
|
|
1906
|
+
{
|
|
1907
|
+
"name": "Storybook",
|
|
1908
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-checkbox"
|
|
1909
|
+
}
|
|
1910
|
+
]
|
|
1911
|
+
},
|
|
1855
1912
|
{
|
|
1856
1913
|
"name": "bm-file-upload-button",
|
|
1857
1914
|
"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",
|
|
@@ -2159,63 +2216,6 @@
|
|
|
2159
2216
|
}
|
|
2160
2217
|
]
|
|
2161
2218
|
},
|
|
2162
|
-
{
|
|
2163
|
-
"name": "bm-checkbox",
|
|
2164
|
-
"description": "`bm-checkbox`\n\n### Attributes:\n- **theme** - Specify the theme of the CloseButton. By default it inherits the theme from the parent\n- **label** - Specify the text for the label\n- **name** - Specify the checkbox name\n- **value** - Specify the checkbox value\n- **error** - Specify error text and display error state of a Checkbox\n- **readOnly** - Specify if Checkbox displays in a read-only state\n- **indeterminate** - Specify if Checkbox displays in an indeterminate state\n- **disabled** - Specify if Checkbox displays in disabled state\n- **checked** - Specify if Checkbox is checked\n---\n",
|
|
2165
|
-
"attributes": [
|
|
2166
|
-
{
|
|
2167
|
-
"name": "theme",
|
|
2168
|
-
"description": "Specify the theme of the CloseButton. By default it inherits the theme from the parent",
|
|
2169
|
-
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
2170
|
-
},
|
|
2171
|
-
{
|
|
2172
|
-
"name": "label",
|
|
2173
|
-
"description": "Specify the text for the label",
|
|
2174
|
-
"values": []
|
|
2175
|
-
},
|
|
2176
|
-
{
|
|
2177
|
-
"name": "name",
|
|
2178
|
-
"description": "Specify the checkbox name",
|
|
2179
|
-
"values": []
|
|
2180
|
-
},
|
|
2181
|
-
{
|
|
2182
|
-
"name": "value",
|
|
2183
|
-
"description": "Specify the checkbox value",
|
|
2184
|
-
"values": []
|
|
2185
|
-
},
|
|
2186
|
-
{
|
|
2187
|
-
"name": "error",
|
|
2188
|
-
"description": "Specify error text and display error state of a Checkbox",
|
|
2189
|
-
"values": []
|
|
2190
|
-
},
|
|
2191
|
-
{
|
|
2192
|
-
"name": "readOnly",
|
|
2193
|
-
"description": "Specify if Checkbox displays in a read-only state",
|
|
2194
|
-
"values": []
|
|
2195
|
-
},
|
|
2196
|
-
{
|
|
2197
|
-
"name": "indeterminate",
|
|
2198
|
-
"description": "Specify if Checkbox displays in an indeterminate state",
|
|
2199
|
-
"values": []
|
|
2200
|
-
},
|
|
2201
|
-
{
|
|
2202
|
-
"name": "disabled",
|
|
2203
|
-
"description": "Specify if Checkbox displays in disabled state",
|
|
2204
|
-
"values": []
|
|
2205
|
-
},
|
|
2206
|
-
{
|
|
2207
|
-
"name": "checked",
|
|
2208
|
-
"description": "Specify if Checkbox is checked",
|
|
2209
|
-
"values": []
|
|
2210
|
-
}
|
|
2211
|
-
],
|
|
2212
|
-
"references": [
|
|
2213
|
-
{
|
|
2214
|
-
"name": "Storybook",
|
|
2215
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-checkbox"
|
|
2216
|
-
}
|
|
2217
|
-
]
|
|
2218
|
-
},
|
|
2219
2219
|
{
|
|
2220
2220
|
"name": "bm-form",
|
|
2221
2221
|
"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",
|
|
@@ -2261,58 +2261,6 @@
|
|
|
2261
2261
|
}
|
|
2262
2262
|
]
|
|
2263
2263
|
},
|
|
2264
|
-
{
|
|
2265
|
-
"name": "bm-radio-button",
|
|
2266
|
-
"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",
|
|
2267
|
-
"attributes": [
|
|
2268
|
-
{
|
|
2269
|
-
"name": "label",
|
|
2270
|
-
"description": "Specify the text for the label",
|
|
2271
|
-
"values": []
|
|
2272
|
-
},
|
|
2273
|
-
{
|
|
2274
|
-
"name": "error",
|
|
2275
|
-
"description": "Specify error text and display error state of a RadioButton",
|
|
2276
|
-
"values": []
|
|
2277
|
-
},
|
|
2278
|
-
{
|
|
2279
|
-
"name": "readOnly",
|
|
2280
|
-
"description": "Specify if RadioButton displays in a read-only state",
|
|
2281
|
-
"values": []
|
|
2282
|
-
},
|
|
2283
|
-
{
|
|
2284
|
-
"name": "disabled",
|
|
2285
|
-
"description": "Specify if RadioButton displays in a disabled state",
|
|
2286
|
-
"values": []
|
|
2287
|
-
},
|
|
2288
|
-
{
|
|
2289
|
-
"name": "theme",
|
|
2290
|
-
"description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
|
|
2291
|
-
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
2292
|
-
},
|
|
2293
|
-
{
|
|
2294
|
-
"name": "value",
|
|
2295
|
-
"description": "The value attribute for the input element",
|
|
2296
|
-
"values": []
|
|
2297
|
-
},
|
|
2298
|
-
{
|
|
2299
|
-
"name": "checked",
|
|
2300
|
-
"description": "The checked attribute for the input element",
|
|
2301
|
-
"values": []
|
|
2302
|
-
},
|
|
2303
|
-
{
|
|
2304
|
-
"name": "onKeyDown",
|
|
2305
|
-
"description": "A user-defined function to handle keydown events",
|
|
2306
|
-
"values": [{ "name": "(event: KeyboardEvent) => void" }]
|
|
2307
|
-
}
|
|
2308
|
-
],
|
|
2309
|
-
"references": [
|
|
2310
|
-
{
|
|
2311
|
-
"name": "Storybook",
|
|
2312
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-radiobutton"
|
|
2313
|
-
}
|
|
2314
|
-
]
|
|
2315
|
-
},
|
|
2316
2264
|
{
|
|
2317
2265
|
"name": "bm-native-select",
|
|
2318
2266
|
"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",
|
|
@@ -2516,6 +2464,58 @@
|
|
|
2516
2464
|
}
|
|
2517
2465
|
]
|
|
2518
2466
|
},
|
|
2467
|
+
{
|
|
2468
|
+
"name": "bm-radio-button",
|
|
2469
|
+
"description": "`bm-radio-button`\n\n### Attributes:\n- **label** - Specify the text for the label\n- **error** - Specify error text and display error state of a RadioButton\n- **readOnly** - Specify if RadioButton displays in a read-only state\n- **disabled** - Specify if RadioButton displays in a disabled state\n- **theme** - Specify the theme of the RadioButton. By default it inherits the theme from the parent\n- **value** - The value attribute for the input element\n- **checked** - The checked attribute for the input element\n- **onKeyDown** - A user-defined function to handle keydown events\n---\n",
|
|
2470
|
+
"attributes": [
|
|
2471
|
+
{
|
|
2472
|
+
"name": "label",
|
|
2473
|
+
"description": "Specify the text for the label",
|
|
2474
|
+
"values": []
|
|
2475
|
+
},
|
|
2476
|
+
{
|
|
2477
|
+
"name": "error",
|
|
2478
|
+
"description": "Specify error text and display error state of a RadioButton",
|
|
2479
|
+
"values": []
|
|
2480
|
+
},
|
|
2481
|
+
{
|
|
2482
|
+
"name": "readOnly",
|
|
2483
|
+
"description": "Specify if RadioButton displays in a read-only state",
|
|
2484
|
+
"values": []
|
|
2485
|
+
},
|
|
2486
|
+
{
|
|
2487
|
+
"name": "disabled",
|
|
2488
|
+
"description": "Specify if RadioButton displays in a disabled state",
|
|
2489
|
+
"values": []
|
|
2490
|
+
},
|
|
2491
|
+
{
|
|
2492
|
+
"name": "theme",
|
|
2493
|
+
"description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
|
|
2494
|
+
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
2495
|
+
},
|
|
2496
|
+
{
|
|
2497
|
+
"name": "value",
|
|
2498
|
+
"description": "The value attribute for the input element",
|
|
2499
|
+
"values": []
|
|
2500
|
+
},
|
|
2501
|
+
{
|
|
2502
|
+
"name": "checked",
|
|
2503
|
+
"description": "The checked attribute for the input element",
|
|
2504
|
+
"values": []
|
|
2505
|
+
},
|
|
2506
|
+
{
|
|
2507
|
+
"name": "onKeyDown",
|
|
2508
|
+
"description": "A user-defined function to handle keydown events",
|
|
2509
|
+
"values": [{ "name": "(event: KeyboardEvent) => void" }]
|
|
2510
|
+
}
|
|
2511
|
+
],
|
|
2512
|
+
"references": [
|
|
2513
|
+
{
|
|
2514
|
+
"name": "Storybook",
|
|
2515
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-radiobutton"
|
|
2516
|
+
}
|
|
2517
|
+
]
|
|
2518
|
+
},
|
|
2519
2519
|
{
|
|
2520
2520
|
"name": "bm-checkbox-group",
|
|
2521
2521
|
"description": "\n---\n\n\n### **Slots:**\n - **label** - Add label text to the InputChoiceGroup\n- **helperText** - Add helper text to the InputChoiceGroup",
|
|
@@ -2586,8 +2586,8 @@
|
|
|
2586
2586
|
]
|
|
2587
2587
|
},
|
|
2588
2588
|
{
|
|
2589
|
-
"name": "bm-
|
|
2590
|
-
"description": "
|
|
2589
|
+
"name": "bm-switch-group",
|
|
2590
|
+
"description": "`bm-switch-group`\n---\n\n\n### **Slots:**\n - **label** - Slot for the label of the SwitchGroup\n- **helperText** - Slot for the helper text of the SwitchGroup",
|
|
2591
2591
|
"attributes": [
|
|
2592
2592
|
{
|
|
2593
2593
|
"name": "theme",
|
|
@@ -2650,13 +2650,13 @@
|
|
|
2650
2650
|
"references": [
|
|
2651
2651
|
{
|
|
2652
2652
|
"name": "Storybook",
|
|
2653
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-
|
|
2653
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-switch"
|
|
2654
2654
|
}
|
|
2655
2655
|
]
|
|
2656
2656
|
},
|
|
2657
2657
|
{
|
|
2658
|
-
"name": "bm-
|
|
2659
|
-
"description": "
|
|
2658
|
+
"name": "bm-radio-button-group",
|
|
2659
|
+
"description": "\n---\n\n\n### **Slots:**\n - **label** - Add label text to the InputChoiceGroup\n- **helperText** - Add helper text to the InputChoiceGroup",
|
|
2660
2660
|
"attributes": [
|
|
2661
2661
|
{
|
|
2662
2662
|
"name": "theme",
|
|
@@ -2719,7 +2719,7 @@
|
|
|
2719
2719
|
"references": [
|
|
2720
2720
|
{
|
|
2721
2721
|
"name": "Storybook",
|
|
2722
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-
|
|
2722
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-radiobutton"
|
|
2723
2723
|
}
|
|
2724
2724
|
]
|
|
2725
2725
|
}
|