@viasat/beam-web-components 2.70.0 → 2.72.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/Badge/Badge.js +20 -20
- package/custom-elements.json +1394 -1394
- package/local/Badge/Badge.js +19 -19
- package/package.json +6 -6
- package/vscode.html-custom-data.json +300 -300
|
@@ -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",
|
|
@@ -105,17 +203,37 @@
|
|
|
105
203
|
]
|
|
106
204
|
},
|
|
107
205
|
{
|
|
108
|
-
"name": "bm-
|
|
109
|
-
"description": "`bm-
|
|
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",
|
|
110
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
|
+
},
|
|
111
229
|
{
|
|
112
230
|
"name": "theme",
|
|
113
|
-
"description": "Specify the theme of the
|
|
231
|
+
"description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
|
|
114
232
|
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
115
233
|
},
|
|
116
234
|
{
|
|
117
235
|
"name": "appearance",
|
|
118
|
-
"description": "Specify the appearance of the
|
|
236
|
+
"description": "Specify the appearance of the Alert",
|
|
119
237
|
"values": [
|
|
120
238
|
{ "name": "infoPrimary" },
|
|
121
239
|
{ "name": "infoSecondary" },
|
|
@@ -125,20 +243,35 @@
|
|
|
125
243
|
]
|
|
126
244
|
},
|
|
127
245
|
{
|
|
128
|
-
"name": "
|
|
129
|
-
"description": "Specify the
|
|
130
|
-
"values": [
|
|
246
|
+
"name": "hidden",
|
|
247
|
+
"description": "Specify if the Alert is hidden",
|
|
248
|
+
"values": []
|
|
131
249
|
},
|
|
132
250
|
{
|
|
133
|
-
"name": "
|
|
134
|
-
"description": "
|
|
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",
|
|
135
268
|
"values": []
|
|
136
269
|
}
|
|
137
270
|
],
|
|
138
271
|
"references": [
|
|
139
272
|
{
|
|
140
273
|
"name": "Storybook",
|
|
141
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-
|
|
274
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-alert"
|
|
142
275
|
}
|
|
143
276
|
]
|
|
144
277
|
},
|
|
@@ -545,6 +678,44 @@
|
|
|
545
678
|
}
|
|
546
679
|
]
|
|
547
680
|
},
|
|
681
|
+
{
|
|
682
|
+
"name": "bm-badge-dot",
|
|
683
|
+
"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",
|
|
684
|
+
"attributes": [
|
|
685
|
+
{
|
|
686
|
+
"name": "theme",
|
|
687
|
+
"description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
|
|
688
|
+
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
689
|
+
},
|
|
690
|
+
{
|
|
691
|
+
"name": "appearance",
|
|
692
|
+
"description": "Specify the appearance of the BadgeDot",
|
|
693
|
+
"values": [
|
|
694
|
+
{ "name": "infoPrimary" },
|
|
695
|
+
{ "name": "infoSecondary" },
|
|
696
|
+
{ "name": "positive" },
|
|
697
|
+
{ "name": "warning" },
|
|
698
|
+
{ "name": "negative" }
|
|
699
|
+
]
|
|
700
|
+
},
|
|
701
|
+
{
|
|
702
|
+
"name": "emphasis",
|
|
703
|
+
"description": "Specify the emphasis of the BadgeDot",
|
|
704
|
+
"values": [{ "name": "strong" }, { "name": "subtle" }]
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
"name": "overrideDotColor",
|
|
708
|
+
"description": "Overrides default dot color",
|
|
709
|
+
"values": []
|
|
710
|
+
}
|
|
711
|
+
],
|
|
712
|
+
"references": [
|
|
713
|
+
{
|
|
714
|
+
"name": "Storybook",
|
|
715
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-badgedot"
|
|
716
|
+
}
|
|
717
|
+
]
|
|
718
|
+
},
|
|
548
719
|
{
|
|
549
720
|
"name": "bm-breadcrumb",
|
|
550
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",
|
|
@@ -631,217 +802,46 @@
|
|
|
631
802
|
]
|
|
632
803
|
},
|
|
633
804
|
{
|
|
634
|
-
"name": "size",
|
|
635
|
-
"description": "Specify the size of a Button",
|
|
636
|
-
"values": [{ "name": "sm" }, { "name": "md" }, { "name": "lg" }]
|
|
637
|
-
},
|
|
638
|
-
{
|
|
639
|
-
"name": "disabled",
|
|
640
|
-
"description": "Specify if the Button is disabled",
|
|
641
|
-
"values": []
|
|
642
|
-
},
|
|
643
|
-
{
|
|
644
|
-
"name": "fluid",
|
|
645
|
-
"description": "Specify if Button is fluid",
|
|
646
|
-
"values": []
|
|
647
|
-
},
|
|
648
|
-
{
|
|
649
|
-
"name": "width",
|
|
650
|
-
"description": "Specify the width of a Button",
|
|
651
|
-
"values": []
|
|
652
|
-
},
|
|
653
|
-
{
|
|
654
|
-
"name": "height",
|
|
655
|
-
"description": "Specify the height of a Button",
|
|
656
|
-
"values": []
|
|
657
|
-
},
|
|
658
|
-
{
|
|
659
|
-
"name": "theme",
|
|
660
|
-
"description": "Specify the theme of the Button",
|
|
661
|
-
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
662
|
-
},
|
|
663
|
-
{
|
|
664
|
-
"name": "iconOnly",
|
|
665
|
-
"description": "Specify if the icon displays without text",
|
|
666
|
-
"values": []
|
|
667
|
-
},
|
|
668
|
-
{ "name": "type", "values": [] }
|
|
669
|
-
],
|
|
670
|
-
"references": [
|
|
671
|
-
{
|
|
672
|
-
"name": "Storybook",
|
|
673
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-button"
|
|
674
|
-
}
|
|
675
|
-
]
|
|
676
|
-
},
|
|
677
|
-
{
|
|
678
|
-
"name": "bm-alert",
|
|
679
|
-
"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",
|
|
680
|
-
"attributes": [
|
|
681
|
-
{
|
|
682
|
-
"name": "heading",
|
|
683
|
-
"description": "Specify the heading text for Alert",
|
|
684
|
-
"values": []
|
|
685
|
-
},
|
|
686
|
-
{
|
|
687
|
-
"name": "body",
|
|
688
|
-
"description": "Specify the body text for Alert",
|
|
689
|
-
"values": []
|
|
690
|
-
},
|
|
691
|
-
{
|
|
692
|
-
"name": "size",
|
|
693
|
-
"description": "Specify the size of the Alert",
|
|
694
|
-
"values": [{ "name": "sm" }, { "name": "md" }]
|
|
695
|
-
},
|
|
696
|
-
{
|
|
697
|
-
"name": "fullWidth",
|
|
698
|
-
"description": "Specify if the Alert has no border radius",
|
|
699
|
-
"values": []
|
|
700
|
-
},
|
|
701
|
-
{
|
|
702
|
-
"name": "theme",
|
|
703
|
-
"description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
|
|
704
|
-
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
705
|
-
},
|
|
706
|
-
{
|
|
707
|
-
"name": "appearance",
|
|
708
|
-
"description": "Specify the appearance of the Alert",
|
|
709
|
-
"values": [
|
|
710
|
-
{ "name": "infoPrimary" },
|
|
711
|
-
{ "name": "infoSecondary" },
|
|
712
|
-
{ "name": "positive" },
|
|
713
|
-
{ "name": "warning" },
|
|
714
|
-
{ "name": "negative" }
|
|
715
|
-
]
|
|
716
|
-
},
|
|
717
|
-
{
|
|
718
|
-
"name": "hidden",
|
|
719
|
-
"description": "Specify if the Alert is hidden",
|
|
720
|
-
"values": []
|
|
721
|
-
},
|
|
722
|
-
{
|
|
723
|
-
"name": "hideIcon",
|
|
724
|
-
"description": "Specify if the icon displays on the Alert",
|
|
725
|
-
"values": []
|
|
726
|
-
},
|
|
727
|
-
{
|
|
728
|
-
"name": "dismissible",
|
|
729
|
-
"description": "Specify if the Alert can be dismissed",
|
|
730
|
-
"values": []
|
|
731
|
-
},
|
|
732
|
-
{
|
|
733
|
-
"name": "disableAutoFocus",
|
|
734
|
-
"description": "Prevent autofocus on show",
|
|
735
|
-
"values": []
|
|
736
|
-
},
|
|
737
|
-
{
|
|
738
|
-
"name": "disableCloseOnEscape",
|
|
739
|
-
"description": "Prevent Escape from closing",
|
|
740
|
-
"values": []
|
|
741
|
-
}
|
|
742
|
-
],
|
|
743
|
-
"references": [
|
|
744
|
-
{
|
|
745
|
-
"name": "Storybook",
|
|
746
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-alert"
|
|
747
|
-
}
|
|
748
|
-
]
|
|
749
|
-
},
|
|
750
|
-
{
|
|
751
|
-
"name": "bm-avatar",
|
|
752
|
-
"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",
|
|
753
|
-
"attributes": [
|
|
754
|
-
{
|
|
755
|
-
"name": "appearance",
|
|
756
|
-
"description": "Specify the appearance of the Avatar",
|
|
757
|
-
"values": [{ "name": "accent" }, { "name": "neutral" }]
|
|
758
|
-
},
|
|
759
|
-
{
|
|
760
|
-
"name": "name",
|
|
761
|
-
"description": "Specify a name to display initials in the Avatar",
|
|
762
|
-
"values": []
|
|
763
|
-
},
|
|
764
|
-
{
|
|
765
|
-
"name": "src",
|
|
766
|
-
"description": "Pass an image to the Avatar",
|
|
767
|
-
"values": []
|
|
768
|
-
},
|
|
769
|
-
{ "name": "alt", "description": "Specify alt for image", "values": [] },
|
|
770
|
-
{
|
|
771
|
-
"name": "size",
|
|
772
|
-
"description": "Specify the size of the Avatar",
|
|
773
|
-
"values": [
|
|
774
|
-
{ "name": "xs" },
|
|
775
|
-
{ "name": "sm" },
|
|
776
|
-
{ "name": "md" },
|
|
777
|
-
{ "name": "lg" },
|
|
778
|
-
{ "name": "xl" }
|
|
779
|
-
]
|
|
780
|
-
},
|
|
781
|
-
{
|
|
782
|
-
"name": "disabled",
|
|
783
|
-
"description": "Specify if the Avatar is disabled",
|
|
784
|
-
"values": []
|
|
785
|
-
},
|
|
786
|
-
{
|
|
787
|
-
"name": "shape",
|
|
788
|
-
"description": "Specify the shape of the Avatar",
|
|
789
|
-
"values": [{ "name": "circle" }, { "name": "square" }]
|
|
805
|
+
"name": "size",
|
|
806
|
+
"description": "Specify the size of a Button",
|
|
807
|
+
"values": [{ "name": "sm" }, { "name": "md" }, { "name": "lg" }]
|
|
790
808
|
},
|
|
791
809
|
{
|
|
792
|
-
"name": "
|
|
793
|
-
"description": "
|
|
810
|
+
"name": "disabled",
|
|
811
|
+
"description": "Specify if the Button is disabled",
|
|
794
812
|
"values": []
|
|
795
813
|
},
|
|
796
814
|
{
|
|
797
|
-
"name": "
|
|
798
|
-
"description": "
|
|
815
|
+
"name": "fluid",
|
|
816
|
+
"description": "Specify if Button is fluid",
|
|
799
817
|
"values": []
|
|
800
818
|
},
|
|
801
|
-
{ "name": "withBorder", "values": [] }
|
|
802
|
-
],
|
|
803
|
-
"references": [
|
|
804
|
-
{
|
|
805
|
-
"name": "Storybook",
|
|
806
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-avatar"
|
|
807
|
-
}
|
|
808
|
-
]
|
|
809
|
-
},
|
|
810
|
-
{
|
|
811
|
-
"name": "bm-avatar-group",
|
|
812
|
-
"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",
|
|
813
|
-
"attributes": [
|
|
814
819
|
{
|
|
815
|
-
"name": "
|
|
816
|
-
"description": "Specify
|
|
820
|
+
"name": "width",
|
|
821
|
+
"description": "Specify the width of a Button",
|
|
817
822
|
"values": []
|
|
818
823
|
},
|
|
819
824
|
{
|
|
820
|
-
"name": "
|
|
821
|
-
"description": "Specify the
|
|
825
|
+
"name": "height",
|
|
826
|
+
"description": "Specify the height of a Button",
|
|
822
827
|
"values": []
|
|
823
828
|
},
|
|
824
829
|
{
|
|
825
|
-
"name": "
|
|
826
|
-
"description": "Specify the
|
|
827
|
-
"values": [
|
|
828
|
-
{ "name": "xs" },
|
|
829
|
-
{ "name": "sm" },
|
|
830
|
-
{ "name": "md" },
|
|
831
|
-
{ "name": "lg" },
|
|
832
|
-
{ "name": "xl" }
|
|
833
|
-
]
|
|
830
|
+
"name": "theme",
|
|
831
|
+
"description": "Specify the theme of the Button",
|
|
832
|
+
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
834
833
|
},
|
|
835
834
|
{
|
|
836
|
-
"name": "
|
|
837
|
-
"description": "Specify the
|
|
838
|
-
"values": [
|
|
839
|
-
}
|
|
835
|
+
"name": "iconOnly",
|
|
836
|
+
"description": "Specify if the icon displays without text",
|
|
837
|
+
"values": []
|
|
838
|
+
},
|
|
839
|
+
{ "name": "type", "values": [] }
|
|
840
840
|
],
|
|
841
841
|
"references": [
|
|
842
842
|
{
|
|
843
843
|
"name": "Storybook",
|
|
844
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-
|
|
844
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-button"
|
|
845
845
|
}
|
|
846
846
|
]
|
|
847
847
|
},
|
|
@@ -989,6 +989,53 @@
|
|
|
989
989
|
}
|
|
990
990
|
]
|
|
991
991
|
},
|
|
992
|
+
{
|
|
993
|
+
"name": "bm-helper-text",
|
|
994
|
+
"description": "### Attributes:\n- **appearance** - Specify the appearance of the HelperText\n- **size** - Specify the size of the HelperText\n- **disabled** - Specify if the message is disabled for HelpText\n- **hideIcon** - Specify if the icon displays on the HelperText\n- **text** - Add or customize content in the HelperText\n- **theme** - Specify the theme of the HelperText. By default it inherits the theme from the parent\n---\n\n\n### **Slots:**\n - **default** - Add or customize content in the HelperText\n- **icon** - Specify a different icon for the HelperText",
|
|
995
|
+
"attributes": [
|
|
996
|
+
{
|
|
997
|
+
"name": "appearance",
|
|
998
|
+
"description": "Specify the appearance of the HelperText",
|
|
999
|
+
"values": [
|
|
1000
|
+
{ "name": "positive" },
|
|
1001
|
+
{ "name": "warning" },
|
|
1002
|
+
{ "name": "negative" },
|
|
1003
|
+
{ "name": "info" }
|
|
1004
|
+
]
|
|
1005
|
+
},
|
|
1006
|
+
{
|
|
1007
|
+
"name": "size",
|
|
1008
|
+
"description": "Specify the size of the HelperText",
|
|
1009
|
+
"values": [{ "name": "sm" }, { "name": "md" }]
|
|
1010
|
+
},
|
|
1011
|
+
{
|
|
1012
|
+
"name": "disabled",
|
|
1013
|
+
"description": "Specify if the message is disabled for HelpText",
|
|
1014
|
+
"values": []
|
|
1015
|
+
},
|
|
1016
|
+
{
|
|
1017
|
+
"name": "hideIcon",
|
|
1018
|
+
"description": "Specify if the icon displays on the HelperText",
|
|
1019
|
+
"values": []
|
|
1020
|
+
},
|
|
1021
|
+
{
|
|
1022
|
+
"name": "text",
|
|
1023
|
+
"description": "Add or customize content in the HelperText",
|
|
1024
|
+
"values": []
|
|
1025
|
+
},
|
|
1026
|
+
{
|
|
1027
|
+
"name": "theme",
|
|
1028
|
+
"description": "Specify the theme of the HelperText. By default it inherits the theme from the parent",
|
|
1029
|
+
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
1030
|
+
}
|
|
1031
|
+
],
|
|
1032
|
+
"references": [
|
|
1033
|
+
{
|
|
1034
|
+
"name": "Storybook",
|
|
1035
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-helpertext"
|
|
1036
|
+
}
|
|
1037
|
+
]
|
|
1038
|
+
},
|
|
992
1039
|
{
|
|
993
1040
|
"name": "bm-icon",
|
|
994
1041
|
"description": "`bm-icon`\n\n### Attributes:\n- **color** - Specify the color of Icon\n- **size** - Specify the size of Icon\n- **customIconSize** - Specify a custom size for the Icon\n- **customIconColor** - Specify a custom color for the Icon\n---\n\n\n### **Slots:**\n - **default** - Specify which Icon to display",
|
|
@@ -1042,53 +1089,6 @@
|
|
|
1042
1089
|
}
|
|
1043
1090
|
]
|
|
1044
1091
|
},
|
|
1045
|
-
{
|
|
1046
|
-
"name": "bm-helper-text",
|
|
1047
|
-
"description": "### Attributes:\n- **appearance** - Specify the appearance of the HelperText\n- **size** - Specify the size of the HelperText\n- **disabled** - Specify if the message is disabled for HelpText\n- **hideIcon** - Specify if the icon displays on the HelperText\n- **text** - Add or customize content in the HelperText\n- **theme** - Specify the theme of the HelperText. By default it inherits the theme from the parent\n---\n\n\n### **Slots:**\n - **default** - Add or customize content in the HelperText\n- **icon** - Specify a different icon for the HelperText",
|
|
1048
|
-
"attributes": [
|
|
1049
|
-
{
|
|
1050
|
-
"name": "appearance",
|
|
1051
|
-
"description": "Specify the appearance of the HelperText",
|
|
1052
|
-
"values": [
|
|
1053
|
-
{ "name": "positive" },
|
|
1054
|
-
{ "name": "warning" },
|
|
1055
|
-
{ "name": "negative" },
|
|
1056
|
-
{ "name": "info" }
|
|
1057
|
-
]
|
|
1058
|
-
},
|
|
1059
|
-
{
|
|
1060
|
-
"name": "size",
|
|
1061
|
-
"description": "Specify the size of the HelperText",
|
|
1062
|
-
"values": [{ "name": "sm" }, { "name": "md" }]
|
|
1063
|
-
},
|
|
1064
|
-
{
|
|
1065
|
-
"name": "disabled",
|
|
1066
|
-
"description": "Specify if the message is disabled for HelpText",
|
|
1067
|
-
"values": []
|
|
1068
|
-
},
|
|
1069
|
-
{
|
|
1070
|
-
"name": "hideIcon",
|
|
1071
|
-
"description": "Specify if the icon displays on the HelperText",
|
|
1072
|
-
"values": []
|
|
1073
|
-
},
|
|
1074
|
-
{
|
|
1075
|
-
"name": "text",
|
|
1076
|
-
"description": "Add or customize content in the HelperText",
|
|
1077
|
-
"values": []
|
|
1078
|
-
},
|
|
1079
|
-
{
|
|
1080
|
-
"name": "theme",
|
|
1081
|
-
"description": "Specify the theme of the HelperText. By default it inherits the theme from the parent",
|
|
1082
|
-
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
1083
|
-
}
|
|
1084
|
-
],
|
|
1085
|
-
"references": [
|
|
1086
|
-
{
|
|
1087
|
-
"name": "Storybook",
|
|
1088
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-helpertext"
|
|
1089
|
-
}
|
|
1090
|
-
]
|
|
1091
|
-
},
|
|
1092
1092
|
{
|
|
1093
1093
|
"name": "bm-input-choice-group",
|
|
1094
1094
|
"description": "`bm-input-choice-group`\n\n### Attributes:\n- **theme** - Specify the theme of the InputChoiceGroup. By default it inherits the theme from the parent\n- **layout** - Specify InputChoiceGroup orientation\n\n**Deprecated**: use `orientation` and `fluid` instead\n- **orientation** - Specify InputChoiceGroup orientation\n- **fluid** - Specify if InputChoiceGroup should take the full width of its container\n- **required** - Specify if InputChoiceGroup is a required input\n- **hideRequiredMarker** - Specify if the InputChoiceGroup displays with an asterisk\n- **error** - Specify error text and display error state of a InputChoiceGroup\n- **readOnly** - Specify if InputChoiceGroup displays in a read-only state\n- **disabled** - Specify if InputChoiceGroup displays in a disabled state\n---\n\n\n### **Slots:**\n - **label** - Add label text to the InputChoiceGroup\n- **helperText** - Add helper text to the InputChoiceGroup",
|
|
@@ -2396,6 +2396,58 @@
|
|
|
2396
2396
|
}
|
|
2397
2397
|
]
|
|
2398
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
|
+
},
|
|
2399
2451
|
{
|
|
2400
2452
|
"name": "bm-native-select",
|
|
2401
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",
|
|
@@ -2466,58 +2518,6 @@
|
|
|
2466
2518
|
}
|
|
2467
2519
|
]
|
|
2468
2520
|
},
|
|
2469
|
-
{
|
|
2470
|
-
"name": "bm-radio-button",
|
|
2471
|
-
"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",
|
|
2472
|
-
"attributes": [
|
|
2473
|
-
{
|
|
2474
|
-
"name": "label",
|
|
2475
|
-
"description": "Specify the text for the label",
|
|
2476
|
-
"values": []
|
|
2477
|
-
},
|
|
2478
|
-
{
|
|
2479
|
-
"name": "error",
|
|
2480
|
-
"description": "Specify error text and display error state of a RadioButton",
|
|
2481
|
-
"values": []
|
|
2482
|
-
},
|
|
2483
|
-
{
|
|
2484
|
-
"name": "readOnly",
|
|
2485
|
-
"description": "Specify if RadioButton displays in a read-only state",
|
|
2486
|
-
"values": []
|
|
2487
|
-
},
|
|
2488
|
-
{
|
|
2489
|
-
"name": "disabled",
|
|
2490
|
-
"description": "Specify if RadioButton displays in a disabled state",
|
|
2491
|
-
"values": []
|
|
2492
|
-
},
|
|
2493
|
-
{
|
|
2494
|
-
"name": "theme",
|
|
2495
|
-
"description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
|
|
2496
|
-
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
2497
|
-
},
|
|
2498
|
-
{
|
|
2499
|
-
"name": "value",
|
|
2500
|
-
"description": "The value attribute for the input element",
|
|
2501
|
-
"values": []
|
|
2502
|
-
},
|
|
2503
|
-
{
|
|
2504
|
-
"name": "checked",
|
|
2505
|
-
"description": "The checked attribute for the input element",
|
|
2506
|
-
"values": []
|
|
2507
|
-
},
|
|
2508
|
-
{
|
|
2509
|
-
"name": "onKeyDown",
|
|
2510
|
-
"description": "A user-defined function to handle keydown events",
|
|
2511
|
-
"values": [{ "name": "(event: KeyboardEvent) => void" }]
|
|
2512
|
-
}
|
|
2513
|
-
],
|
|
2514
|
-
"references": [
|
|
2515
|
-
{
|
|
2516
|
-
"name": "Storybook",
|
|
2517
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-radiobutton"
|
|
2518
|
-
}
|
|
2519
|
-
]
|
|
2520
|
-
},
|
|
2521
2521
|
{
|
|
2522
2522
|
"name": "bm-switch",
|
|
2523
2523
|
"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.",
|