@viasat/beam-web-components 2.55.0 → 2.55.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.
- package/custom-elements.json +1344 -1344
- package/package.json +6 -6
- package/vscode.html-custom-data.json +385 -385
|
@@ -61,6 +61,177 @@
|
|
|
61
61
|
}
|
|
62
62
|
]
|
|
63
63
|
},
|
|
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",
|
|
67
|
+
"attributes": [
|
|
68
|
+
{
|
|
69
|
+
"name": "heading",
|
|
70
|
+
"description": "Specify the heading text for Alert",
|
|
71
|
+
"values": []
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"name": "body",
|
|
75
|
+
"description": "Specify the body text for Alert",
|
|
76
|
+
"values": []
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "size",
|
|
80
|
+
"description": "Specify the size of the Alert",
|
|
81
|
+
"values": [{ "name": "sm" }, { "name": "md" }]
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"name": "fullWidth",
|
|
85
|
+
"description": "Specify if the Alert has no border radius",
|
|
86
|
+
"values": []
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"name": "theme",
|
|
90
|
+
"description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
|
|
91
|
+
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"name": "appearance",
|
|
95
|
+
"description": "Specify the appearance of the Alert",
|
|
96
|
+
"values": [
|
|
97
|
+
{ "name": "infoPrimary" },
|
|
98
|
+
{ "name": "infoSecondary" },
|
|
99
|
+
{ "name": "positive" },
|
|
100
|
+
{ "name": "warning" },
|
|
101
|
+
{ "name": "negative" }
|
|
102
|
+
]
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"name": "hidden",
|
|
106
|
+
"description": "Specify if the Alert is hidden",
|
|
107
|
+
"values": []
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"name": "hideIcon",
|
|
111
|
+
"description": "Specify if the icon displays on the Alert",
|
|
112
|
+
"values": []
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"name": "dismissible",
|
|
116
|
+
"description": "Specify if the Alert can be dismissed",
|
|
117
|
+
"values": []
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"name": "disableAutoFocus",
|
|
121
|
+
"description": "Prevent autofocus on show",
|
|
122
|
+
"values": []
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"name": "disableCloseOnEscape",
|
|
126
|
+
"description": "Prevent Escape from closing",
|
|
127
|
+
"values": []
|
|
128
|
+
}
|
|
129
|
+
],
|
|
130
|
+
"references": [
|
|
131
|
+
{
|
|
132
|
+
"name": "Storybook",
|
|
133
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-alert"
|
|
134
|
+
}
|
|
135
|
+
]
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"name": "bm-avatar",
|
|
139
|
+
"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",
|
|
140
|
+
"attributes": [
|
|
141
|
+
{
|
|
142
|
+
"name": "appearance",
|
|
143
|
+
"description": "Specify the appearance of the Avatar",
|
|
144
|
+
"values": [{ "name": "accent" }, { "name": "neutral" }]
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"name": "name",
|
|
148
|
+
"description": "Specify a name to display initials in the Avatar",
|
|
149
|
+
"values": []
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"name": "src",
|
|
153
|
+
"description": "Pass an image to the Avatar",
|
|
154
|
+
"values": []
|
|
155
|
+
},
|
|
156
|
+
{ "name": "alt", "description": "Specify alt for image", "values": [] },
|
|
157
|
+
{
|
|
158
|
+
"name": "size",
|
|
159
|
+
"description": "Specify the size of the Avatar",
|
|
160
|
+
"values": [
|
|
161
|
+
{ "name": "xs" },
|
|
162
|
+
{ "name": "sm" },
|
|
163
|
+
{ "name": "md" },
|
|
164
|
+
{ "name": "lg" },
|
|
165
|
+
{ "name": "xl" }
|
|
166
|
+
]
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"name": "disabled",
|
|
170
|
+
"description": "Specify if the Avatar is disabled",
|
|
171
|
+
"values": []
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"name": "shape",
|
|
175
|
+
"description": "Specify the shape of the Avatar",
|
|
176
|
+
"values": [{ "name": "circle" }, { "name": "square" }]
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"name": "isInteractive",
|
|
180
|
+
"description": "If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer",
|
|
181
|
+
"values": []
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"name": "isFocusable",
|
|
185
|
+
"description": "If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable",
|
|
186
|
+
"values": []
|
|
187
|
+
},
|
|
188
|
+
{ "name": "withBorder", "values": [] }
|
|
189
|
+
],
|
|
190
|
+
"references": [
|
|
191
|
+
{
|
|
192
|
+
"name": "Storybook",
|
|
193
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-avatar"
|
|
194
|
+
}
|
|
195
|
+
]
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"name": "bm-avatar-group",
|
|
199
|
+
"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",
|
|
200
|
+
"attributes": [
|
|
201
|
+
{
|
|
202
|
+
"name": "wrapping",
|
|
203
|
+
"description": "Specify if the AvatarGroup wraps",
|
|
204
|
+
"values": []
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"name": "maxCount",
|
|
208
|
+
"description": "Specify the max number of avatars displayed in the group.",
|
|
209
|
+
"values": []
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"name": "size",
|
|
213
|
+
"description": "Specify the size of all Avatars",
|
|
214
|
+
"values": [
|
|
215
|
+
{ "name": "xs" },
|
|
216
|
+
{ "name": "sm" },
|
|
217
|
+
{ "name": "md" },
|
|
218
|
+
{ "name": "lg" },
|
|
219
|
+
{ "name": "xl" }
|
|
220
|
+
]
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"name": "layout",
|
|
224
|
+
"description": "Specify the kind of the group.",
|
|
225
|
+
"values": [{ "name": "stacked" }, { "name": "spaced" }]
|
|
226
|
+
}
|
|
227
|
+
],
|
|
228
|
+
"references": [
|
|
229
|
+
{
|
|
230
|
+
"name": "Storybook",
|
|
231
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-avatar"
|
|
232
|
+
}
|
|
233
|
+
]
|
|
234
|
+
},
|
|
64
235
|
{
|
|
65
236
|
"name": "bm-badge",
|
|
66
237
|
"description": "`bm-badge`\n\n### Attributes:\n- **appearance** - Specify the appearance of the Badge\n- **theme** - Theme of the Badge\n- **size** - Specify the size of the Badge\n- **emphasis** - Specify the emphasis of the Badge\n- **hideIcon** - Hides Badge icon\n---\n\n\n### **Slots:**\n - **default** - Provide text for the Badge\n- **icon** - Specify a different icon for the Badge",
|
|
@@ -104,6 +275,67 @@
|
|
|
104
275
|
}
|
|
105
276
|
]
|
|
106
277
|
},
|
|
278
|
+
{
|
|
279
|
+
"name": "bm-breadcrumb",
|
|
280
|
+
"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",
|
|
281
|
+
"attributes": [
|
|
282
|
+
{
|
|
283
|
+
"name": "wrap",
|
|
284
|
+
"description": "Specify if items wrap or collapse to an ellipsis",
|
|
285
|
+
"values": []
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"name": "itemsBeforeCollapse",
|
|
289
|
+
"description": "Specify how many items show before ellipsis",
|
|
290
|
+
"values": []
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"name": "itemsAfterCollapse",
|
|
294
|
+
"description": "Specify how many items show after ellipsis",
|
|
295
|
+
"values": []
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"name": "theme",
|
|
299
|
+
"description": "Specify the theme of the Breadcrumbs. By default, it inherits the theme from the parent",
|
|
300
|
+
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
301
|
+
}
|
|
302
|
+
],
|
|
303
|
+
"references": [
|
|
304
|
+
{
|
|
305
|
+
"name": "Storybook",
|
|
306
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-breadcrumb"
|
|
307
|
+
}
|
|
308
|
+
]
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"name": "bm-breadcrumb-item",
|
|
312
|
+
"description": "`bm-breadcrumb-item`\n\n### Attributes:\n- **href** - Pass href to an item\n- **clickable** - Specify if the item is interactive without an href\n- **truncationWidth** - Specify truncation width of the items. Sets max-width for all items but the last.\n- **isCurrent** - Specify explicitly if the item is the last one\n- **isCollapsed** \n---\n\n\n### **Slots:**\n - **default** - Pass text to an item\n- **icon** - Pass icon to an item",
|
|
313
|
+
"attributes": [
|
|
314
|
+
{ "name": "href", "description": "Pass href to an item", "values": [] },
|
|
315
|
+
{
|
|
316
|
+
"name": "clickable",
|
|
317
|
+
"description": "Specify if the item is interactive without an href",
|
|
318
|
+
"values": []
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
"name": "truncationWidth",
|
|
322
|
+
"description": "Specify truncation width of the items. Sets max-width for all items but the last.",
|
|
323
|
+
"values": []
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"name": "isCurrent",
|
|
327
|
+
"description": "Specify explicitly if the item is the last one",
|
|
328
|
+
"values": []
|
|
329
|
+
},
|
|
330
|
+
{ "name": "isCollapsed", "values": [] }
|
|
331
|
+
],
|
|
332
|
+
"references": [
|
|
333
|
+
{
|
|
334
|
+
"name": "Storybook",
|
|
335
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-breadcrumb"
|
|
336
|
+
}
|
|
337
|
+
]
|
|
338
|
+
},
|
|
107
339
|
{
|
|
108
340
|
"name": "bm-badge-dot",
|
|
109
341
|
"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",
|
|
@@ -442,338 +674,106 @@
|
|
|
442
674
|
{ "name": "300" },
|
|
443
675
|
{ "name": "400" },
|
|
444
676
|
{ "name": "500" },
|
|
445
|
-
{ "name": "700" },
|
|
446
|
-
{ "name": "800" }
|
|
447
|
-
]
|
|
448
|
-
},
|
|
449
|
-
{
|
|
450
|
-
"name": "mAfter",
|
|
451
|
-
"description": "Specify after margin of a Box",
|
|
452
|
-
"values": [
|
|
453
|
-
{ "name": "0" },
|
|
454
|
-
{ "name": "12" },
|
|
455
|
-
{ "name": "25" },
|
|
456
|
-
{ "name": "50" },
|
|
457
|
-
{ "name": "75" },
|
|
458
|
-
{ "name": "100" },
|
|
459
|
-
{ "name": "125" },
|
|
460
|
-
{ "name": "150" },
|
|
461
|
-
{ "name": "200" },
|
|
462
|
-
{ "name": "300" },
|
|
463
|
-
{ "name": "400" },
|
|
464
|
-
{ "name": "500" },
|
|
465
|
-
{ "name": "700" },
|
|
466
|
-
{ "name": "800" }
|
|
467
|
-
]
|
|
468
|
-
},
|
|
469
|
-
{
|
|
470
|
-
"name": "m",
|
|
471
|
-
"description": "Specify all margin",
|
|
472
|
-
"values": [
|
|
473
|
-
{ "name": "0" },
|
|
474
|
-
{ "name": "12" },
|
|
475
|
-
{ "name": "25" },
|
|
476
|
-
{ "name": "50" },
|
|
477
|
-
{ "name": "75" },
|
|
478
|
-
{ "name": "100" },
|
|
479
|
-
{ "name": "125" },
|
|
480
|
-
{ "name": "150" },
|
|
481
|
-
{ "name": "200" },
|
|
482
|
-
{ "name": "300" },
|
|
483
|
-
{ "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-avatar",
|
|
550
|
-
"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",
|
|
551
|
-
"attributes": [
|
|
552
|
-
{
|
|
553
|
-
"name": "appearance",
|
|
554
|
-
"description": "Specify the appearance of the Avatar",
|
|
555
|
-
"values": [{ "name": "accent" }, { "name": "neutral" }]
|
|
556
|
-
},
|
|
557
|
-
{
|
|
558
|
-
"name": "name",
|
|
559
|
-
"description": "Specify a name to display initials in the Avatar",
|
|
560
|
-
"values": []
|
|
561
|
-
},
|
|
562
|
-
{
|
|
563
|
-
"name": "src",
|
|
564
|
-
"description": "Pass an image to the Avatar",
|
|
565
|
-
"values": []
|
|
566
|
-
},
|
|
567
|
-
{ "name": "alt", "description": "Specify alt for image", "values": [] },
|
|
568
|
-
{
|
|
569
|
-
"name": "size",
|
|
570
|
-
"description": "Specify the size of the Avatar",
|
|
571
|
-
"values": [
|
|
572
|
-
{ "name": "xs" },
|
|
573
|
-
{ "name": "sm" },
|
|
574
|
-
{ "name": "md" },
|
|
575
|
-
{ "name": "lg" },
|
|
576
|
-
{ "name": "xl" }
|
|
577
|
-
]
|
|
578
|
-
},
|
|
579
|
-
{
|
|
580
|
-
"name": "disabled",
|
|
581
|
-
"description": "Specify if the Avatar is disabled",
|
|
582
|
-
"values": []
|
|
583
|
-
},
|
|
584
|
-
{
|
|
585
|
-
"name": "shape",
|
|
586
|
-
"description": "Specify the shape of the Avatar",
|
|
587
|
-
"values": [{ "name": "circle" }, { "name": "square" }]
|
|
588
|
-
},
|
|
589
|
-
{
|
|
590
|
-
"name": "isInteractive",
|
|
591
|
-
"description": "If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer",
|
|
592
|
-
"values": []
|
|
593
|
-
},
|
|
594
|
-
{
|
|
595
|
-
"name": "isFocusable",
|
|
596
|
-
"description": "If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable",
|
|
597
|
-
"values": []
|
|
598
|
-
},
|
|
599
|
-
{ "name": "withBorder", "values": [] }
|
|
600
|
-
],
|
|
601
|
-
"references": [
|
|
602
|
-
{
|
|
603
|
-
"name": "Storybook",
|
|
604
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-avatar"
|
|
605
|
-
}
|
|
606
|
-
]
|
|
607
|
-
},
|
|
608
|
-
{
|
|
609
|
-
"name": "bm-avatar-group",
|
|
610
|
-
"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",
|
|
611
|
-
"attributes": [
|
|
612
|
-
{
|
|
613
|
-
"name": "wrapping",
|
|
614
|
-
"description": "Specify if the AvatarGroup wraps",
|
|
615
|
-
"values": []
|
|
616
|
-
},
|
|
617
|
-
{
|
|
618
|
-
"name": "maxCount",
|
|
619
|
-
"description": "Specify the max number of avatars displayed in the group.",
|
|
620
|
-
"values": []
|
|
621
|
-
},
|
|
622
|
-
{
|
|
623
|
-
"name": "size",
|
|
624
|
-
"description": "Specify the size of all Avatars",
|
|
625
|
-
"values": [
|
|
626
|
-
{ "name": "xs" },
|
|
627
|
-
{ "name": "sm" },
|
|
628
|
-
{ "name": "md" },
|
|
629
|
-
{ "name": "lg" },
|
|
630
|
-
{ "name": "xl" }
|
|
631
|
-
]
|
|
632
|
-
},
|
|
633
|
-
{
|
|
634
|
-
"name": "layout",
|
|
635
|
-
"description": "Specify the kind of the group.",
|
|
636
|
-
"values": [{ "name": "stacked" }, { "name": "spaced" }]
|
|
637
|
-
}
|
|
638
|
-
],
|
|
639
|
-
"references": [
|
|
640
|
-
{
|
|
641
|
-
"name": "Storybook",
|
|
642
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-avatar"
|
|
643
|
-
}
|
|
644
|
-
]
|
|
645
|
-
},
|
|
646
|
-
{
|
|
647
|
-
"name": "bm-alert",
|
|
648
|
-
"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",
|
|
649
|
-
"attributes": [
|
|
650
|
-
{
|
|
651
|
-
"name": "heading",
|
|
652
|
-
"description": "Specify the heading text for Alert",
|
|
653
|
-
"values": []
|
|
654
|
-
},
|
|
655
|
-
{
|
|
656
|
-
"name": "body",
|
|
657
|
-
"description": "Specify the body text for Alert",
|
|
658
|
-
"values": []
|
|
659
|
-
},
|
|
660
|
-
{
|
|
661
|
-
"name": "size",
|
|
662
|
-
"description": "Specify the size of the Alert",
|
|
663
|
-
"values": [{ "name": "sm" }, { "name": "md" }]
|
|
664
|
-
},
|
|
665
|
-
{
|
|
666
|
-
"name": "fullWidth",
|
|
667
|
-
"description": "Specify if the Alert has no border radius",
|
|
668
|
-
"values": []
|
|
669
|
-
},
|
|
670
|
-
{
|
|
671
|
-
"name": "theme",
|
|
672
|
-
"description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
|
|
673
|
-
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
674
|
-
},
|
|
675
|
-
{
|
|
676
|
-
"name": "appearance",
|
|
677
|
-
"description": "Specify the appearance of the Alert",
|
|
678
|
-
"values": [
|
|
679
|
-
{ "name": "infoPrimary" },
|
|
680
|
-
{ "name": "infoSecondary" },
|
|
681
|
-
{ "name": "positive" },
|
|
682
|
-
{ "name": "warning" },
|
|
683
|
-
{ "name": "negative" }
|
|
684
|
-
]
|
|
685
|
-
},
|
|
686
|
-
{
|
|
687
|
-
"name": "hidden",
|
|
688
|
-
"description": "Specify if the Alert is hidden",
|
|
689
|
-
"values": []
|
|
690
|
-
},
|
|
691
|
-
{
|
|
692
|
-
"name": "hideIcon",
|
|
693
|
-
"description": "Specify if the icon displays on the Alert",
|
|
694
|
-
"values": []
|
|
695
|
-
},
|
|
696
|
-
{
|
|
697
|
-
"name": "dismissible",
|
|
698
|
-
"description": "Specify if the Alert can be dismissed",
|
|
699
|
-
"values": []
|
|
700
|
-
},
|
|
701
|
-
{
|
|
702
|
-
"name": "disableAutoFocus",
|
|
703
|
-
"description": "Prevent autofocus on show",
|
|
704
|
-
"values": []
|
|
705
|
-
},
|
|
706
|
-
{
|
|
707
|
-
"name": "disableCloseOnEscape",
|
|
708
|
-
"description": "Prevent Escape from closing",
|
|
709
|
-
"values": []
|
|
710
|
-
}
|
|
711
|
-
],
|
|
712
|
-
"references": [
|
|
713
|
-
{
|
|
714
|
-
"name": "Storybook",
|
|
715
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-alert"
|
|
716
|
-
}
|
|
717
|
-
]
|
|
718
|
-
},
|
|
719
|
-
{
|
|
720
|
-
"name": "bm-breadcrumb",
|
|
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",
|
|
722
|
-
"attributes": [
|
|
723
|
-
{
|
|
724
|
-
"name": "wrap",
|
|
725
|
-
"description": "Specify if items wrap or collapse to an ellipsis",
|
|
726
|
-
"values": []
|
|
677
|
+
{ "name": "700" },
|
|
678
|
+
{ "name": "800" }
|
|
679
|
+
]
|
|
727
680
|
},
|
|
728
681
|
{
|
|
729
|
-
"name": "
|
|
730
|
-
"description": "Specify
|
|
731
|
-
"values": [
|
|
682
|
+
"name": "mAfter",
|
|
683
|
+
"description": "Specify after margin of a Box",
|
|
684
|
+
"values": [
|
|
685
|
+
{ "name": "0" },
|
|
686
|
+
{ "name": "12" },
|
|
687
|
+
{ "name": "25" },
|
|
688
|
+
{ "name": "50" },
|
|
689
|
+
{ "name": "75" },
|
|
690
|
+
{ "name": "100" },
|
|
691
|
+
{ "name": "125" },
|
|
692
|
+
{ "name": "150" },
|
|
693
|
+
{ "name": "200" },
|
|
694
|
+
{ "name": "300" },
|
|
695
|
+
{ "name": "400" },
|
|
696
|
+
{ "name": "500" },
|
|
697
|
+
{ "name": "700" },
|
|
698
|
+
{ "name": "800" }
|
|
699
|
+
]
|
|
732
700
|
},
|
|
733
701
|
{
|
|
734
|
-
"name": "
|
|
735
|
-
"description": "Specify
|
|
736
|
-
"values": [
|
|
702
|
+
"name": "m",
|
|
703
|
+
"description": "Specify all margin",
|
|
704
|
+
"values": [
|
|
705
|
+
{ "name": "0" },
|
|
706
|
+
{ "name": "12" },
|
|
707
|
+
{ "name": "25" },
|
|
708
|
+
{ "name": "50" },
|
|
709
|
+
{ "name": "75" },
|
|
710
|
+
{ "name": "100" },
|
|
711
|
+
{ "name": "125" },
|
|
712
|
+
{ "name": "150" },
|
|
713
|
+
{ "name": "200" },
|
|
714
|
+
{ "name": "300" },
|
|
715
|
+
{ "name": "400" },
|
|
716
|
+
{ "name": "500" },
|
|
717
|
+
{ "name": "700" },
|
|
718
|
+
{ "name": "800" }
|
|
719
|
+
]
|
|
737
720
|
},
|
|
738
721
|
{
|
|
739
|
-
"name": "
|
|
740
|
-
"description": "Specify
|
|
741
|
-
"values": [
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
"name": "clickable",
|
|
758
|
-
"description": "Specify if the item is interactive without an href",
|
|
759
|
-
"values": []
|
|
722
|
+
"name": "p",
|
|
723
|
+
"description": "Specify all padding",
|
|
724
|
+
"values": [
|
|
725
|
+
{ "name": "0" },
|
|
726
|
+
{ "name": "12" },
|
|
727
|
+
{ "name": "25" },
|
|
728
|
+
{ "name": "50" },
|
|
729
|
+
{ "name": "75" },
|
|
730
|
+
{ "name": "100" },
|
|
731
|
+
{ "name": "125" },
|
|
732
|
+
{ "name": "150" },
|
|
733
|
+
{ "name": "200" },
|
|
734
|
+
{ "name": "300" },
|
|
735
|
+
{ "name": "400" },
|
|
736
|
+
{ "name": "500" },
|
|
737
|
+
{ "name": "700" },
|
|
738
|
+
{ "name": "800" }
|
|
739
|
+
]
|
|
760
740
|
},
|
|
761
741
|
{
|
|
762
|
-
"name": "
|
|
763
|
-
"description": "Specify
|
|
764
|
-
"values": [
|
|
742
|
+
"name": "gap",
|
|
743
|
+
"description": "Specify gap between child elements",
|
|
744
|
+
"values": [
|
|
745
|
+
{ "name": "0" },
|
|
746
|
+
{ "name": "12" },
|
|
747
|
+
{ "name": "25" },
|
|
748
|
+
{ "name": "50" },
|
|
749
|
+
{ "name": "75" },
|
|
750
|
+
{ "name": "100" },
|
|
751
|
+
{ "name": "125" },
|
|
752
|
+
{ "name": "150" },
|
|
753
|
+
{ "name": "200" },
|
|
754
|
+
{ "name": "300" },
|
|
755
|
+
{ "name": "400" },
|
|
756
|
+
{ "name": "500" },
|
|
757
|
+
{ "name": "700" },
|
|
758
|
+
{ "name": "800" }
|
|
759
|
+
]
|
|
765
760
|
},
|
|
766
761
|
{
|
|
767
|
-
"name": "
|
|
768
|
-
"description": "Specify
|
|
769
|
-
"values": [
|
|
770
|
-
|
|
771
|
-
|
|
762
|
+
"name": "shadow",
|
|
763
|
+
"description": "Specify if a Box has a shadow",
|
|
764
|
+
"values": [
|
|
765
|
+
{ "name": "sm" },
|
|
766
|
+
{ "name": "md" },
|
|
767
|
+
{ "name": "lg" },
|
|
768
|
+
{ "name": "none" },
|
|
769
|
+
{ "name": "overlay" }
|
|
770
|
+
]
|
|
771
|
+
}
|
|
772
772
|
],
|
|
773
773
|
"references": [
|
|
774
774
|
{
|
|
775
775
|
"name": "Storybook",
|
|
776
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-
|
|
776
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-box"
|
|
777
777
|
}
|
|
778
778
|
]
|
|
779
779
|
},
|
|
@@ -2286,58 +2286,6 @@
|
|
|
2286
2286
|
}
|
|
2287
2287
|
]
|
|
2288
2288
|
},
|
|
2289
|
-
{
|
|
2290
|
-
"name": "bm-radio-button",
|
|
2291
|
-
"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",
|
|
2292
|
-
"attributes": [
|
|
2293
|
-
{
|
|
2294
|
-
"name": "label",
|
|
2295
|
-
"description": "Specify the text for the label",
|
|
2296
|
-
"values": []
|
|
2297
|
-
},
|
|
2298
|
-
{
|
|
2299
|
-
"name": "error",
|
|
2300
|
-
"description": "Specify error text and display error state of a RadioButton",
|
|
2301
|
-
"values": []
|
|
2302
|
-
},
|
|
2303
|
-
{
|
|
2304
|
-
"name": "readOnly",
|
|
2305
|
-
"description": "Specify if RadioButton displays in a read-only state",
|
|
2306
|
-
"values": []
|
|
2307
|
-
},
|
|
2308
|
-
{
|
|
2309
|
-
"name": "disabled",
|
|
2310
|
-
"description": "Specify if RadioButton displays in a disabled state",
|
|
2311
|
-
"values": []
|
|
2312
|
-
},
|
|
2313
|
-
{
|
|
2314
|
-
"name": "theme",
|
|
2315
|
-
"description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
|
|
2316
|
-
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
2317
|
-
},
|
|
2318
|
-
{
|
|
2319
|
-
"name": "value",
|
|
2320
|
-
"description": "The value attribute for the input element",
|
|
2321
|
-
"values": []
|
|
2322
|
-
},
|
|
2323
|
-
{
|
|
2324
|
-
"name": "checked",
|
|
2325
|
-
"description": "The checked attribute for the input element",
|
|
2326
|
-
"values": []
|
|
2327
|
-
},
|
|
2328
|
-
{
|
|
2329
|
-
"name": "onKeyDown",
|
|
2330
|
-
"description": "A user-defined function to handle keydown events",
|
|
2331
|
-
"values": [{ "name": "(event: KeyboardEvent) => void" }]
|
|
2332
|
-
}
|
|
2333
|
-
],
|
|
2334
|
-
"references": [
|
|
2335
|
-
{
|
|
2336
|
-
"name": "Storybook",
|
|
2337
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-radiobutton"
|
|
2338
|
-
}
|
|
2339
|
-
]
|
|
2340
|
-
},
|
|
2341
2289
|
{
|
|
2342
2290
|
"name": "bm-form",
|
|
2343
2291
|
"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",
|
|
@@ -2384,45 +2332,54 @@
|
|
|
2384
2332
|
]
|
|
2385
2333
|
},
|
|
2386
2334
|
{
|
|
2387
|
-
"name": "bm-
|
|
2388
|
-
"description": "`bm-
|
|
2335
|
+
"name": "bm-radio-button",
|
|
2336
|
+
"description": "`bm-radio-button`\n\n### Attributes:\n- **label** - Specify the text for the label\n- **error** - Specify error text and display error state of a RadioButton\n- **readOnly** - Specify if RadioButton displays in a read-only state\n- **disabled** - Specify if RadioButton displays in a disabled state\n- **theme** - Specify the theme of the RadioButton. By default it inherits the theme from the parent\n- **value** - The value attribute for the input element\n- **checked** - The checked attribute for the input element\n- **onKeyDown** - A user-defined function to handle keydown events\n---\n",
|
|
2389
2337
|
"attributes": [
|
|
2390
2338
|
{
|
|
2391
|
-
"name": "
|
|
2392
|
-
"description": "Specify
|
|
2339
|
+
"name": "label",
|
|
2340
|
+
"description": "Specify the text for the label",
|
|
2393
2341
|
"values": []
|
|
2394
2342
|
},
|
|
2395
2343
|
{
|
|
2396
|
-
"name": "
|
|
2397
|
-
"description": "Specify
|
|
2344
|
+
"name": "error",
|
|
2345
|
+
"description": "Specify error text and display error state of a RadioButton",
|
|
2398
2346
|
"values": []
|
|
2399
2347
|
},
|
|
2400
|
-
{
|
|
2401
|
-
"name": "textPosition",
|
|
2402
|
-
"description": "Specify the position of the side label",
|
|
2403
|
-
"values": [{ "name": "before" }, { "name": "after" }]
|
|
2404
|
-
},
|
|
2405
2348
|
{
|
|
2406
2349
|
"name": "readOnly",
|
|
2407
|
-
"description": "Specify if
|
|
2350
|
+
"description": "Specify if RadioButton displays in a read-only state",
|
|
2408
2351
|
"values": []
|
|
2409
2352
|
},
|
|
2410
2353
|
{
|
|
2411
2354
|
"name": "disabled",
|
|
2412
|
-
"description": "Specify if
|
|
2355
|
+
"description": "Specify if RadioButton displays in a disabled state",
|
|
2413
2356
|
"values": []
|
|
2414
2357
|
},
|
|
2415
|
-
{
|
|
2358
|
+
{
|
|
2359
|
+
"name": "theme",
|
|
2360
|
+
"description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
|
|
2361
|
+
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
2362
|
+
},
|
|
2416
2363
|
{
|
|
2417
2364
|
"name": "value",
|
|
2418
2365
|
"description": "The value attribute for the input element",
|
|
2419
2366
|
"values": []
|
|
2367
|
+
},
|
|
2368
|
+
{
|
|
2369
|
+
"name": "checked",
|
|
2370
|
+
"description": "The checked attribute for the input element",
|
|
2371
|
+
"values": []
|
|
2372
|
+
},
|
|
2373
|
+
{
|
|
2374
|
+
"name": "onKeyDown",
|
|
2375
|
+
"description": "A user-defined function to handle keydown events",
|
|
2376
|
+
"values": [{ "name": "(event: KeyboardEvent) => void" }]
|
|
2420
2377
|
}
|
|
2421
2378
|
],
|
|
2422
2379
|
"references": [
|
|
2423
2380
|
{
|
|
2424
2381
|
"name": "Storybook",
|
|
2425
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-
|
|
2382
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-radiobutton"
|
|
2426
2383
|
}
|
|
2427
2384
|
]
|
|
2428
2385
|
},
|
|
@@ -2516,6 +2473,49 @@
|
|
|
2516
2473
|
}
|
|
2517
2474
|
]
|
|
2518
2475
|
},
|
|
2476
|
+
{
|
|
2477
|
+
"name": "bm-switch",
|
|
2478
|
+
"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.",
|
|
2479
|
+
"attributes": [
|
|
2480
|
+
{
|
|
2481
|
+
"name": "onText",
|
|
2482
|
+
"description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
|
|
2483
|
+
"values": []
|
|
2484
|
+
},
|
|
2485
|
+
{
|
|
2486
|
+
"name": "offText",
|
|
2487
|
+
"description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
|
|
2488
|
+
"values": []
|
|
2489
|
+
},
|
|
2490
|
+
{
|
|
2491
|
+
"name": "textPosition",
|
|
2492
|
+
"description": "Specify the position of the side label",
|
|
2493
|
+
"values": [{ "name": "before" }, { "name": "after" }]
|
|
2494
|
+
},
|
|
2495
|
+
{
|
|
2496
|
+
"name": "readOnly",
|
|
2497
|
+
"description": "Specify if Switch displays in a read-only state",
|
|
2498
|
+
"values": []
|
|
2499
|
+
},
|
|
2500
|
+
{
|
|
2501
|
+
"name": "disabled",
|
|
2502
|
+
"description": "Specify if Switch displays in a disabled state",
|
|
2503
|
+
"values": []
|
|
2504
|
+
},
|
|
2505
|
+
{ "name": "checked", "values": [] },
|
|
2506
|
+
{
|
|
2507
|
+
"name": "value",
|
|
2508
|
+
"description": "The value attribute for the input element",
|
|
2509
|
+
"values": []
|
|
2510
|
+
}
|
|
2511
|
+
],
|
|
2512
|
+
"references": [
|
|
2513
|
+
{
|
|
2514
|
+
"name": "Storybook",
|
|
2515
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-switch"
|
|
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",
|