@viasat/beam-web-components 2.8.0 → 2.9.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.
@@ -104,6 +104,177 @@
104
104
  }
105
105
  ]
106
106
  },
107
+ {
108
+ "name": "bm-avatar",
109
+ "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",
110
+ "attributes": [
111
+ {
112
+ "name": "appearance",
113
+ "description": "Specify the appearance of the Avatar",
114
+ "values": [{ "name": "accent" }, { "name": "neutral" }]
115
+ },
116
+ {
117
+ "name": "name",
118
+ "description": "Specify a name to display initials in the Avatar",
119
+ "values": []
120
+ },
121
+ {
122
+ "name": "src",
123
+ "description": "Pass an image to the Avatar",
124
+ "values": []
125
+ },
126
+ { "name": "alt", "description": "Specify alt for image", "values": [] },
127
+ {
128
+ "name": "size",
129
+ "description": "Specify the size of the Avatar",
130
+ "values": [
131
+ { "name": "xs" },
132
+ { "name": "sm" },
133
+ { "name": "md" },
134
+ { "name": "lg" },
135
+ { "name": "xl" }
136
+ ]
137
+ },
138
+ {
139
+ "name": "disabled",
140
+ "description": "Specify if the Avatar is disabled",
141
+ "values": []
142
+ },
143
+ {
144
+ "name": "shape",
145
+ "description": "Specify the shape of the Avatar",
146
+ "values": [{ "name": "circle" }, { "name": "square" }]
147
+ },
148
+ {
149
+ "name": "isInteractive",
150
+ "description": "If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer",
151
+ "values": []
152
+ },
153
+ {
154
+ "name": "isFocusable",
155
+ "description": "If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable",
156
+ "values": []
157
+ },
158
+ { "name": "withBorder", "values": [] }
159
+ ],
160
+ "references": [
161
+ {
162
+ "name": "Storybook",
163
+ "url": "https://web-components.beam.viasat.com/?path=/docs/components-avatar"
164
+ }
165
+ ]
166
+ },
167
+ {
168
+ "name": "bm-avatar-group",
169
+ "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",
170
+ "attributes": [
171
+ {
172
+ "name": "wrapping",
173
+ "description": "Specify if the AvatarGroup wraps",
174
+ "values": []
175
+ },
176
+ {
177
+ "name": "maxCount",
178
+ "description": "Specify the max number of avatars displayed in the group.",
179
+ "values": []
180
+ },
181
+ {
182
+ "name": "size",
183
+ "description": "Specify the size of all Avatars",
184
+ "values": [
185
+ { "name": "xs" },
186
+ { "name": "sm" },
187
+ { "name": "md" },
188
+ { "name": "lg" },
189
+ { "name": "xl" }
190
+ ]
191
+ },
192
+ {
193
+ "name": "layout",
194
+ "description": "Specify the kind of the group.",
195
+ "values": [{ "name": "stacked" }, { "name": "spaced" }]
196
+ }
197
+ ],
198
+ "references": [
199
+ {
200
+ "name": "Storybook",
201
+ "url": "https://web-components.beam.viasat.com/?path=/docs/components-avatar"
202
+ }
203
+ ]
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
+ },
107
278
  {
108
279
  "name": "bm-badge-dot",
109
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",
@@ -597,255 +768,84 @@
597
768
  "values": []
598
769
  },
599
770
  {
600
- "name": "isCurrent",
601
- "description": "Specify explicitly if the item is the last one",
602
- "values": []
603
- },
604
- { "name": "isCollapsed", "values": [] }
605
- ],
606
- "references": [
607
- {
608
- "name": "Storybook",
609
- "url": "https://web-components.beam.viasat.com/?path=/docs/components-breadcrumb"
610
- }
611
- ]
612
- },
613
- {
614
- "name": "bm-alert",
615
- "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",
616
- "attributes": [
617
- {
618
- "name": "heading",
619
- "description": "Specify the heading text for Alert",
620
- "values": []
621
- },
622
- {
623
- "name": "body",
624
- "description": "Specify the body text for Alert",
625
- "values": []
626
- },
627
- {
628
- "name": "size",
629
- "description": "Specify the size of the Alert",
630
- "values": [{ "name": "sm" }, { "name": "md" }]
631
- },
632
- {
633
- "name": "fullWidth",
634
- "description": "Specify if the Alert has no border radius",
635
- "values": []
636
- },
637
- {
638
- "name": "theme",
639
- "description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
640
- "values": [{ "name": "light" }, { "name": "dark" }]
641
- },
642
- {
643
- "name": "appearance",
644
- "description": "Specify the appearance of the Alert",
645
- "values": [
646
- { "name": "infoPrimary" },
647
- { "name": "infoSecondary" },
648
- { "name": "positive" },
649
- { "name": "warning" },
650
- { "name": "negative" }
651
- ]
652
- },
653
- {
654
- "name": "hidden",
655
- "description": "Specify if the Alert is hidden",
656
- "values": []
657
- },
658
- {
659
- "name": "hideIcon",
660
- "description": "Specify if the icon displays on the Alert",
661
- "values": []
662
- },
663
- {
664
- "name": "dismissible",
665
- "description": "Specify if the Alert can be dismissed",
666
- "values": []
667
- },
668
- {
669
- "name": "disableAutoFocus",
670
- "description": "Prevent autofocus on show",
671
- "values": []
672
- },
673
- {
674
- "name": "disableCloseOnEscape",
675
- "description": "Prevent Escape from closing",
676
- "values": []
677
- }
678
- ],
679
- "references": [
680
- {
681
- "name": "Storybook",
682
- "url": "https://web-components.beam.viasat.com/?path=/docs/components-alert"
683
- }
684
- ]
685
- },
686
- {
687
- "name": "bm-button",
688
- "description": "`bm-button`\n\n### Attributes:\n- **appearance** - Specify the appearance of a Button\n- **kind** - Specify the kind of Button\n- **size** - Specify the size of a Button\n- **disabled** - Specify if the Button is disabled\n- **fluid** - Specify if Button is fluid\n- **width** - Specify the width of a Button\n- **height** - Specify the height of a Button\n- **theme** - Specify the theme of the Button\n- **iconOnly** - Specify if the icon displays without text\n- **type** \n---\n\n\n### **Slots:**\n - **default** - Provide content for the Button\n- **iconBefore** - Specify if the Button displays icon before the text\n- **iconAfter** - Specify if the Button displays icon after the text",
689
- "attributes": [
690
- {
691
- "name": "appearance",
692
- "description": "Specify the appearance of a Button",
693
- "values": [
694
- { "name": "accent" },
695
- { "name": "neutral" },
696
- { "name": "destructive" },
697
- { "name": "neutral-subtle" }
698
- ]
699
- },
700
- {
701
- "name": "kind",
702
- "description": "Specify the kind of Button",
703
- "values": [
704
- { "name": "filled" },
705
- { "name": "outline" },
706
- { "name": "ghost" },
707
- { "name": "bare" }
708
- ]
709
- },
710
- {
711
- "name": "size",
712
- "description": "Specify the size of a Button",
713
- "values": [{ "name": "sm" }, { "name": "md" }, { "name": "lg" }]
714
- },
715
- {
716
- "name": "disabled",
717
- "description": "Specify if the Button is disabled",
718
- "values": []
719
- },
720
- {
721
- "name": "fluid",
722
- "description": "Specify if Button is fluid",
723
- "values": []
724
- },
725
- {
726
- "name": "width",
727
- "description": "Specify the width of a Button",
728
- "values": []
729
- },
730
- {
731
- "name": "height",
732
- "description": "Specify the height of a Button",
733
- "values": []
734
- },
735
- {
736
- "name": "theme",
737
- "description": "Specify the theme of the Button",
738
- "values": [{ "name": "light" }, { "name": "dark" }]
739
- },
740
- {
741
- "name": "iconOnly",
742
- "description": "Specify if the icon displays without text",
743
- "values": []
744
- },
745
- { "name": "type", "values": [] }
746
- ],
747
- "references": [
748
- {
749
- "name": "Storybook",
750
- "url": "https://web-components.beam.viasat.com/?path=/docs/components-button"
751
- }
752
- ]
753
- },
754
- {
755
- "name": "bm-avatar",
756
- "description": "`bm-avatar`\n\n### Attributes:\n- **appearance** - Specify the appearance of the Avatar\n- **name** - Specify a name to display initials in the Avatar\n- **src** - Pass an image to the Avatar\n- **alt** - Specify alt for image\n- **size** - Specify the size of the Avatar\n- **disabled** - Specify if the Avatar is disabled\n- **shape** - Specify the shape of the Avatar\n- **isInteractive** - If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer\n- **isFocusable** - If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable\n- **withBorder** \n---\n\n\n### **Slots:**\n - **icon** - Customize the default icon",
757
- "attributes": [
758
- {
759
- "name": "appearance",
760
- "description": "Specify the appearance of the Avatar",
761
- "values": [{ "name": "accent" }, { "name": "neutral" }]
762
- },
763
- {
764
- "name": "name",
765
- "description": "Specify a name to display initials in the Avatar",
766
- "values": []
767
- },
768
- {
769
- "name": "src",
770
- "description": "Pass an image to the Avatar",
771
- "values": []
772
- },
773
- { "name": "alt", "description": "Specify alt for image", "values": [] },
774
- {
775
- "name": "size",
776
- "description": "Specify the size of the Avatar",
777
- "values": [
778
- { "name": "xs" },
779
- { "name": "sm" },
780
- { "name": "md" },
781
- { "name": "lg" },
782
- { "name": "xl" }
783
- ]
784
- },
785
- {
786
- "name": "disabled",
787
- "description": "Specify if the Avatar is disabled",
788
- "values": []
789
- },
790
- {
791
- "name": "shape",
792
- "description": "Specify the shape of the Avatar",
793
- "values": [{ "name": "circle" }, { "name": "square" }]
794
- },
795
- {
796
- "name": "isInteractive",
797
- "description": "If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer",
798
- "values": []
799
- },
800
- {
801
- "name": "isFocusable",
802
- "description": "If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable",
771
+ "name": "isCurrent",
772
+ "description": "Specify explicitly if the item is the last one",
803
773
  "values": []
804
774
  },
805
- { "name": "withBorder", "values": [] }
775
+ { "name": "isCollapsed", "values": [] }
806
776
  ],
807
777
  "references": [
808
778
  {
809
779
  "name": "Storybook",
810
- "url": "https://web-components.beam.viasat.com/?path=/docs/components-avatar"
780
+ "url": "https://web-components.beam.viasat.com/?path=/docs/components-breadcrumb"
811
781
  }
812
782
  ]
813
783
  },
814
784
  {
815
- "name": "bm-avatar-group",
816
- "description": "`bm-avatar-group`\n\n### Attributes:\n- **wrapping** - Specify if the AvatarGroup wraps\n- **maxCount** - Specify the max number of avatars displayed in the group.\n- **size** - Specify the size of all Avatars\n- **layout** - Specify the kind of the group.\n---\n\n\n### **Slots:**\n - **default** - Add Avatars to create a group",
785
+ "name": "bm-button",
786
+ "description": "`bm-button`\n\n### Attributes:\n- **appearance** - Specify the appearance of a Button\n- **kind** - Specify the kind of Button\n- **size** - Specify the size of a Button\n- **disabled** - Specify if the Button is disabled\n- **fluid** - Specify if Button is fluid\n- **width** - Specify the width of a Button\n- **height** - Specify the height of a Button\n- **theme** - Specify the theme of the Button\n- **iconOnly** - Specify if the icon displays without text\n- **type** \n---\n\n\n### **Slots:**\n - **default** - Provide content for the Button\n- **iconBefore** - Specify if the Button displays icon before the text\n- **iconAfter** - Specify if the Button displays icon after the text",
817
787
  "attributes": [
818
788
  {
819
- "name": "wrapping",
820
- "description": "Specify if the AvatarGroup wraps",
789
+ "name": "appearance",
790
+ "description": "Specify the appearance of a Button",
791
+ "values": [
792
+ { "name": "accent" },
793
+ { "name": "neutral" },
794
+ { "name": "destructive" },
795
+ { "name": "neutral-subtle" }
796
+ ]
797
+ },
798
+ {
799
+ "name": "kind",
800
+ "description": "Specify the kind of Button",
801
+ "values": [
802
+ { "name": "filled" },
803
+ { "name": "outline" },
804
+ { "name": "ghost" },
805
+ { "name": "bare" }
806
+ ]
807
+ },
808
+ {
809
+ "name": "size",
810
+ "description": "Specify the size of a Button",
811
+ "values": [{ "name": "sm" }, { "name": "md" }, { "name": "lg" }]
812
+ },
813
+ {
814
+ "name": "disabled",
815
+ "description": "Specify if the Button is disabled",
821
816
  "values": []
822
817
  },
823
818
  {
824
- "name": "maxCount",
825
- "description": "Specify the max number of avatars displayed in the group.",
819
+ "name": "fluid",
820
+ "description": "Specify if Button is fluid",
826
821
  "values": []
827
822
  },
828
823
  {
829
- "name": "size",
830
- "description": "Specify the size of all Avatars",
831
- "values": [
832
- { "name": "xs" },
833
- { "name": "sm" },
834
- { "name": "md" },
835
- { "name": "lg" },
836
- { "name": "xl" }
837
- ]
824
+ "name": "width",
825
+ "description": "Specify the width of a Button",
826
+ "values": []
838
827
  },
839
828
  {
840
- "name": "layout",
841
- "description": "Specify the kind of the group.",
842
- "values": [{ "name": "stacked" }, { "name": "spaced" }]
843
- }
829
+ "name": "height",
830
+ "description": "Specify the height of a Button",
831
+ "values": []
832
+ },
833
+ {
834
+ "name": "theme",
835
+ "description": "Specify the theme of the Button",
836
+ "values": [{ "name": "light" }, { "name": "dark" }]
837
+ },
838
+ {
839
+ "name": "iconOnly",
840
+ "description": "Specify if the icon displays without text",
841
+ "values": []
842
+ },
843
+ { "name": "type", "values": [] }
844
844
  ],
845
845
  "references": [
846
846
  {
847
847
  "name": "Storybook",
848
- "url": "https://web-components.beam.viasat.com/?path=/docs/components-avatar"
848
+ "url": "https://web-components.beam.viasat.com/?path=/docs/components-button"
849
849
  }
850
850
  ]
851
851
  },
@@ -1761,6 +1761,51 @@
1761
1761
  }
1762
1762
  ]
1763
1763
  },
1764
+ {
1765
+ "name": "bm-form",
1766
+ "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",
1767
+ "attributes": [
1768
+ {
1769
+ "name": "validationMode",
1770
+ "description": "Specify if validation runs on change or when loosing focus",
1771
+ "values": [
1772
+ { "name": "onChange" },
1773
+ { "name": "onBlur" },
1774
+ { "name": "onSubmit" }
1775
+ ]
1776
+ },
1777
+ {
1778
+ "name": "initialValues",
1779
+ "description": "Specify initial values on Form controls based on their names",
1780
+ "values": [{ "name": "Record<string" }, { "name": "FormValue>" }]
1781
+ },
1782
+ {
1783
+ "name": "required",
1784
+ "description": "Specify if input is a required",
1785
+ "values": []
1786
+ },
1787
+ {
1788
+ "name": "disabled",
1789
+ "description": "Specify if input is a disabled",
1790
+ "values": []
1791
+ },
1792
+ {
1793
+ "name": "readOnly",
1794
+ "description": "Specify if input is a read only",
1795
+ "values": []
1796
+ },
1797
+ { "name": "action", "values": [{ "name": "Optional<string>" }] },
1798
+ { "name": "method", "values": [{ "name": "Optional<string>" }] },
1799
+ { "name": "target", "values": [{ "name": "Optional<string>" }] },
1800
+ { "name": "enctype", "values": [{ "name": "Optional<string>" }] }
1801
+ ],
1802
+ "references": [
1803
+ {
1804
+ "name": "Storybook",
1805
+ "url": "https://web-components.beam.viasat.com/?path=/docs/forms-form"
1806
+ }
1807
+ ]
1808
+ },
1764
1809
  {
1765
1810
  "name": "bm-file-upload-button",
1766
1811
  "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",
@@ -2071,51 +2116,6 @@
2071
2116
  }
2072
2117
  ]
2073
2118
  },
2074
- {
2075
- "name": "bm-form",
2076
- "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",
2077
- "attributes": [
2078
- {
2079
- "name": "validationMode",
2080
- "description": "Specify if validation runs on change or when loosing focus",
2081
- "values": [
2082
- { "name": "onChange" },
2083
- { "name": "onBlur" },
2084
- { "name": "onSubmit" }
2085
- ]
2086
- },
2087
- {
2088
- "name": "initialValues",
2089
- "description": "Specify initial values on Form controls based on their names",
2090
- "values": [{ "name": "Record<string" }, { "name": "FormValue>" }]
2091
- },
2092
- {
2093
- "name": "required",
2094
- "description": "Specify if input is a required",
2095
- "values": []
2096
- },
2097
- {
2098
- "name": "disabled",
2099
- "description": "Specify if input is a disabled",
2100
- "values": []
2101
- },
2102
- {
2103
- "name": "readOnly",
2104
- "description": "Specify if input is a read only",
2105
- "values": []
2106
- },
2107
- { "name": "action", "values": [{ "name": "Optional<string>" }] },
2108
- { "name": "method", "values": [{ "name": "Optional<string>" }] },
2109
- { "name": "target", "values": [{ "name": "Optional<string>" }] },
2110
- { "name": "enctype", "values": [{ "name": "Optional<string>" }] }
2111
- ],
2112
- "references": [
2113
- {
2114
- "name": "Storybook",
2115
- "url": "https://web-components.beam.viasat.com/?path=/docs/forms-form"
2116
- }
2117
- ]
2118
- },
2119
2119
  {
2120
2120
  "name": "bm-native-select",
2121
2121
  "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",
@@ -2185,45 +2185,39 @@
2185
2185
  ]
2186
2186
  },
2187
2187
  {
2188
- "name": "bm-switch",
2189
- "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.",
2188
+ "name": "bm-label",
2189
+ "description": "`bm-label`\n---\n\n\n### **Slots:**\n - **text** - Specify the text for Label\n- **optional** - Specify if the Label displays as optional\n- **tooltip** - Specify if the icon displays to add a Tooltip",
2190
2190
  "attributes": [
2191
2191
  {
2192
- "name": "onText",
2193
- "description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
2192
+ "name": "disabled",
2193
+ "description": "Specify if the Label displays disabled",
2194
2194
  "values": []
2195
2195
  },
2196
2196
  {
2197
- "name": "offText",
2198
- "description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
2197
+ "name": "required",
2198
+ "description": "Specify if the Label displays as required",
2199
2199
  "values": []
2200
2200
  },
2201
2201
  {
2202
- "name": "textPosition",
2203
- "description": "Specify the position of the side label",
2204
- "values": [{ "name": "before" }, { "name": "after" }]
2205
- },
2206
- {
2207
- "name": "readOnly",
2208
- "description": "Specify if Switch displays in a read-only state",
2209
- "values": []
2202
+ "name": "text",
2203
+ "description": "Specify the text for Label",
2204
+ "values": [{ "name": "Optional<string>" }]
2210
2205
  },
2211
2206
  {
2212
- "name": "disabled",
2213
- "description": "Specify if Switch displays in a disabled state",
2214
- "values": []
2207
+ "name": "optional",
2208
+ "description": "Specify the text for Label",
2209
+ "values": [{ "name": "Optional<string>" }]
2215
2210
  },
2216
- { "name": "checked", "values": [] },
2217
2211
  {
2218
- "name": "value",
2219
- "description": "The value attribute for the input element",
2220
- "values": []
2212
+ "name": "theme",
2213
+ "description": "Specify the theme of the Label. By default it inherits the theme from the parent",
2214
+ "values": [{ "name": "Optional<ThemeTypes>" }]
2221
2215
  }
2222
2216
  ],
2223
2217
  "references": [
2224
2218
  {
2225
2219
  "name": "Storybook",
2226
- "url": "https://web-components.beam.viasat.com/?path=/docs/forms-switch"
2220
+ "url": "https://web-components.beam.viasat.com/?path=/docs/forms-label"
2227
2221
  }
2228
2222
  ]
2229
2223
  },
@@ -2280,39 +2274,45 @@
2280
2274
  ]
2281
2275
  },
2282
2276
  {
2283
- "name": "bm-label",
2284
- "description": "`bm-label`\n---\n\n\n### **Slots:**\n - **text** - Specify the text for Label\n- **optional** - Specify if the Label displays as optional\n- **tooltip** - Specify if the icon displays to add a Tooltip",
2277
+ "name": "bm-switch",
2278
+ "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.",
2285
2279
  "attributes": [
2286
2280
  {
2287
- "name": "disabled",
2288
- "description": "Specify if the Label displays disabled",
2281
+ "name": "onText",
2282
+ "description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
2289
2283
  "values": []
2290
2284
  },
2291
2285
  {
2292
- "name": "required",
2293
- "description": "Specify if the Label displays as required",
2286
+ "name": "offText",
2287
+ "description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
2294
2288
  "values": []
2295
2289
  },
2296
2290
  {
2297
- "name": "text",
2298
- "description": "Specify the text for Label",
2299
- "values": [{ "name": "Optional<string>" }]
2291
+ "name": "textPosition",
2292
+ "description": "Specify the position of the side label",
2293
+ "values": [{ "name": "before" }, { "name": "after" }]
2300
2294
  },
2301
2295
  {
2302
- "name": "optional",
2303
- "description": "Specify the text for Label",
2304
- "values": [{ "name": "Optional<string>" }]
2296
+ "name": "readOnly",
2297
+ "description": "Specify if Switch displays in a read-only state",
2298
+ "values": []
2305
2299
  },
2306
2300
  {
2307
- "name": "theme",
2308
- "description": "Specify the theme of the Label. By default it inherits the theme from the parent",
2309
- "values": [{ "name": "Optional<ThemeTypes>" }]
2301
+ "name": "disabled",
2302
+ "description": "Specify if Switch displays in a disabled state",
2303
+ "values": []
2304
+ },
2305
+ { "name": "checked", "values": [] },
2306
+ {
2307
+ "name": "value",
2308
+ "description": "The value attribute for the input element",
2309
+ "values": []
2310
2310
  }
2311
2311
  ],
2312
2312
  "references": [
2313
2313
  {
2314
2314
  "name": "Storybook",
2315
- "url": "https://web-components.beam.viasat.com/?path=/docs/forms-label"
2315
+ "url": "https://web-components.beam.viasat.com/?path=/docs/forms-switch"
2316
2316
  }
2317
2317
  ]
2318
2318
  },
@@ -2557,8 +2557,8 @@
2557
2557
  ]
2558
2558
  },
2559
2559
  {
2560
- "name": "bm-switch-group",
2561
- "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",
2560
+ "name": "bm-radio-button-group",
2561
+ "description": "\n---\n\n\n### **Slots:**\n - **label** - Add label text to the InputChoiceGroup\n- **helperText** - Add helper text to the InputChoiceGroup",
2562
2562
  "attributes": [
2563
2563
  {
2564
2564
  "name": "theme",
@@ -2624,13 +2624,13 @@
2624
2624
  "references": [
2625
2625
  {
2626
2626
  "name": "Storybook",
2627
- "url": "https://web-components.beam.viasat.com/?path=/docs/forms-switch"
2627
+ "url": "https://web-components.beam.viasat.com/?path=/docs/forms-radiobutton"
2628
2628
  }
2629
2629
  ]
2630
2630
  },
2631
2631
  {
2632
- "name": "bm-radio-button-group",
2633
- "description": "\n---\n\n\n### **Slots:**\n - **label** - Add label text to the InputChoiceGroup\n- **helperText** - Add helper text to the InputChoiceGroup",
2632
+ "name": "bm-switch-group",
2633
+ "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",
2634
2634
  "attributes": [
2635
2635
  {
2636
2636
  "name": "theme",
@@ -2696,7 +2696,7 @@
2696
2696
  "references": [
2697
2697
  {
2698
2698
  "name": "Storybook",
2699
- "url": "https://web-components.beam.viasat.com/?path=/docs/forms-radiobutton"
2699
+ "url": "https://web-components.beam.viasat.com/?path=/docs/forms-switch"
2700
2700
  }
2701
2701
  ]
2702
2702
  }