@viasat/beam-web-components 2.26.1 → 2.27.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/custom-elements.json +2232 -2232
- package/package.json +6 -6
- package/vscode.html-custom-data.json +191 -191
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@viasat/beam-web-components",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.27.0",
|
|
4
4
|
"description": "Framework-agnostic web components for the Beam Design System built with Lit, compatible with Angular, Vue, Svelte, and vanilla JavaScript",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Viasat",
|
|
@@ -64,11 +64,11 @@
|
|
|
64
64
|
"access": "public"
|
|
65
65
|
},
|
|
66
66
|
"dependencies": {
|
|
67
|
-
"@viasat/beam-fonts": "2.
|
|
68
|
-
"@viasat/beam-shared": "2.
|
|
69
|
-
"@viasat/beam-styles": "2.
|
|
70
|
-
"@viasat/beam-tokens": "2.
|
|
71
|
-
"@viasat/beam-icons": "2.
|
|
67
|
+
"@viasat/beam-fonts": "2.27.0",
|
|
68
|
+
"@viasat/beam-shared": "2.27.0",
|
|
69
|
+
"@viasat/beam-styles": "2.27.0",
|
|
70
|
+
"@viasat/beam-tokens": "2.27.0",
|
|
71
|
+
"@viasat/beam-icons": "2.27.0",
|
|
72
72
|
"clsx": "^1.2.1",
|
|
73
73
|
"lit": "^3.1.0",
|
|
74
74
|
"@lit/context": "^1.1.1",
|
|
@@ -142,6 +142,79 @@
|
|
|
142
142
|
}
|
|
143
143
|
]
|
|
144
144
|
},
|
|
145
|
+
{
|
|
146
|
+
"name": "bm-alert",
|
|
147
|
+
"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",
|
|
148
|
+
"attributes": [
|
|
149
|
+
{
|
|
150
|
+
"name": "heading",
|
|
151
|
+
"description": "Specify the heading text for Alert",
|
|
152
|
+
"values": []
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"name": "body",
|
|
156
|
+
"description": "Specify the body text for Alert",
|
|
157
|
+
"values": []
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"name": "size",
|
|
161
|
+
"description": "Specify the size of the Alert",
|
|
162
|
+
"values": [{ "name": "sm" }, { "name": "md" }]
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"name": "fullWidth",
|
|
166
|
+
"description": "Specify if the Alert has no border radius",
|
|
167
|
+
"values": []
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"name": "theme",
|
|
171
|
+
"description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
|
|
172
|
+
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"name": "appearance",
|
|
176
|
+
"description": "Specify the appearance of the Alert",
|
|
177
|
+
"values": [
|
|
178
|
+
{ "name": "infoPrimary" },
|
|
179
|
+
{ "name": "infoSecondary" },
|
|
180
|
+
{ "name": "positive" },
|
|
181
|
+
{ "name": "warning" },
|
|
182
|
+
{ "name": "negative" }
|
|
183
|
+
]
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"name": "hidden",
|
|
187
|
+
"description": "Specify if the Alert is hidden",
|
|
188
|
+
"values": []
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"name": "hideIcon",
|
|
192
|
+
"description": "Specify if the icon displays on the Alert",
|
|
193
|
+
"values": []
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"name": "dismissible",
|
|
197
|
+
"description": "Specify if the Alert can be dismissed",
|
|
198
|
+
"values": []
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"name": "disableAutoFocus",
|
|
202
|
+
"description": "Prevent autofocus on show",
|
|
203
|
+
"values": []
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"name": "disableCloseOnEscape",
|
|
207
|
+
"description": "Prevent Escape from closing",
|
|
208
|
+
"values": []
|
|
209
|
+
}
|
|
210
|
+
],
|
|
211
|
+
"references": [
|
|
212
|
+
{
|
|
213
|
+
"name": "Storybook",
|
|
214
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-alert"
|
|
215
|
+
}
|
|
216
|
+
]
|
|
217
|
+
},
|
|
145
218
|
{
|
|
146
219
|
"name": "bm-box",
|
|
147
220
|
"description": "`bm-box`\n\n### Attributes:\n- **backgroundColor** - Specify the background color of a Box\n- **borderColor** - Specify the border color of a Box\n- **borderWidth** - Specify the border width of a Box\n- **borderRadius** - Specify the border radius of a Box\n- **px** - Specify before and after padding of a Box\n- **py** - Specify top and bottom padding of a Box\n- **pTop** - Specify top padding of a Box\n- **pBottom** - Specify bottom padding of a Box\n- **pBefore** - Specify before padding of a Box\n- **pAfter** - Specify after padding of a Box\n- **mx** - Specify before and after margin of a Box\n- **my** - Specify top and bottom margin of a Box\n- **mTop** - Specify top margin of a Box\n- **mBottom** - Specify bottom margin of a Box\n- **mBefore** - Specify before margin of a Box\n- **mAfter** - Specify after margin of a Box\n- **m** - Specify all margin\n- **p** - Specify all padding\n- **gap** - Specify gap between child elements\n- **shadow** - Specify if a Box has a shadow\n---\n\n\n### **Slots:**\n - **default** - Provide content for the Box",
|
|
@@ -546,75 +619,63 @@
|
|
|
546
619
|
]
|
|
547
620
|
},
|
|
548
621
|
{
|
|
549
|
-
"name": "bm-
|
|
550
|
-
"description": "`bm-
|
|
622
|
+
"name": "bm-breadcrumb",
|
|
623
|
+
"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",
|
|
551
624
|
"attributes": [
|
|
552
625
|
{
|
|
553
|
-
"name": "
|
|
554
|
-
"description": "Specify
|
|
626
|
+
"name": "wrap",
|
|
627
|
+
"description": "Specify if items wrap or collapse to an ellipsis",
|
|
555
628
|
"values": []
|
|
556
629
|
},
|
|
557
630
|
{
|
|
558
|
-
"name": "
|
|
559
|
-
"description": "Specify
|
|
631
|
+
"name": "itemsBeforeCollapse",
|
|
632
|
+
"description": "Specify how many items show before ellipsis",
|
|
560
633
|
"values": []
|
|
561
634
|
},
|
|
562
635
|
{
|
|
563
|
-
"name": "
|
|
564
|
-
"description": "Specify
|
|
565
|
-
"values": [{ "name": "sm" }, { "name": "md" }]
|
|
566
|
-
},
|
|
567
|
-
{
|
|
568
|
-
"name": "fullWidth",
|
|
569
|
-
"description": "Specify if the Alert has no border radius",
|
|
636
|
+
"name": "itemsAfterCollapse",
|
|
637
|
+
"description": "Specify how many items show after ellipsis",
|
|
570
638
|
"values": []
|
|
571
639
|
},
|
|
572
640
|
{
|
|
573
641
|
"name": "theme",
|
|
574
|
-
"description": "Specify the theme of the
|
|
642
|
+
"description": "Specify the theme of the Breadcrumbs. By default, it inherits the theme from the parent",
|
|
575
643
|
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
576
|
-
}
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
"description": "Specify the appearance of the Alert",
|
|
580
|
-
"values": [
|
|
581
|
-
{ "name": "infoPrimary" },
|
|
582
|
-
{ "name": "infoSecondary" },
|
|
583
|
-
{ "name": "positive" },
|
|
584
|
-
{ "name": "warning" },
|
|
585
|
-
{ "name": "negative" }
|
|
586
|
-
]
|
|
587
|
-
},
|
|
644
|
+
}
|
|
645
|
+
],
|
|
646
|
+
"references": [
|
|
588
647
|
{
|
|
589
|
-
"name": "
|
|
590
|
-
"
|
|
591
|
-
|
|
592
|
-
|
|
648
|
+
"name": "Storybook",
|
|
649
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-breadcrumb"
|
|
650
|
+
}
|
|
651
|
+
]
|
|
652
|
+
},
|
|
653
|
+
{
|
|
654
|
+
"name": "bm-breadcrumb-item",
|
|
655
|
+
"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",
|
|
656
|
+
"attributes": [
|
|
657
|
+
{ "name": "href", "description": "Pass href to an item", "values": [] },
|
|
593
658
|
{
|
|
594
|
-
"name": "
|
|
595
|
-
"description": "Specify if the
|
|
659
|
+
"name": "clickable",
|
|
660
|
+
"description": "Specify if the item is interactive without an href",
|
|
596
661
|
"values": []
|
|
597
662
|
},
|
|
598
663
|
{
|
|
599
|
-
"name": "
|
|
600
|
-
"description": "Specify
|
|
664
|
+
"name": "truncationWidth",
|
|
665
|
+
"description": "Specify truncation width of the items. Sets max-width for all items but the last.",
|
|
601
666
|
"values": []
|
|
602
667
|
},
|
|
603
668
|
{
|
|
604
|
-
"name": "
|
|
605
|
-
"description": "
|
|
669
|
+
"name": "isCurrent",
|
|
670
|
+
"description": "Specify explicitly if the item is the last one",
|
|
606
671
|
"values": []
|
|
607
672
|
},
|
|
608
|
-
{
|
|
609
|
-
"name": "disableCloseOnEscape",
|
|
610
|
-
"description": "Prevent Escape from closing",
|
|
611
|
-
"values": []
|
|
612
|
-
}
|
|
673
|
+
{ "name": "isCollapsed", "values": [] }
|
|
613
674
|
],
|
|
614
675
|
"references": [
|
|
615
676
|
{
|
|
616
677
|
"name": "Storybook",
|
|
617
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-
|
|
678
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-breadcrumb"
|
|
618
679
|
}
|
|
619
680
|
]
|
|
620
681
|
},
|
|
@@ -716,67 +777,6 @@
|
|
|
716
777
|
}
|
|
717
778
|
]
|
|
718
779
|
},
|
|
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": []
|
|
727
|
-
},
|
|
728
|
-
{
|
|
729
|
-
"name": "itemsBeforeCollapse",
|
|
730
|
-
"description": "Specify how many items show before ellipsis",
|
|
731
|
-
"values": []
|
|
732
|
-
},
|
|
733
|
-
{
|
|
734
|
-
"name": "itemsAfterCollapse",
|
|
735
|
-
"description": "Specify how many items show after ellipsis",
|
|
736
|
-
"values": []
|
|
737
|
-
},
|
|
738
|
-
{
|
|
739
|
-
"name": "theme",
|
|
740
|
-
"description": "Specify the theme of the Breadcrumbs. By default, it inherits the theme from the parent",
|
|
741
|
-
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
742
|
-
}
|
|
743
|
-
],
|
|
744
|
-
"references": [
|
|
745
|
-
{
|
|
746
|
-
"name": "Storybook",
|
|
747
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-breadcrumb"
|
|
748
|
-
}
|
|
749
|
-
]
|
|
750
|
-
},
|
|
751
|
-
{
|
|
752
|
-
"name": "bm-breadcrumb-item",
|
|
753
|
-
"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",
|
|
754
|
-
"attributes": [
|
|
755
|
-
{ "name": "href", "description": "Pass href to an item", "values": [] },
|
|
756
|
-
{
|
|
757
|
-
"name": "clickable",
|
|
758
|
-
"description": "Specify if the item is interactive without an href",
|
|
759
|
-
"values": []
|
|
760
|
-
},
|
|
761
|
-
{
|
|
762
|
-
"name": "truncationWidth",
|
|
763
|
-
"description": "Specify truncation width of the items. Sets max-width for all items but the last.",
|
|
764
|
-
"values": []
|
|
765
|
-
},
|
|
766
|
-
{
|
|
767
|
-
"name": "isCurrent",
|
|
768
|
-
"description": "Specify explicitly if the item is the last one",
|
|
769
|
-
"values": []
|
|
770
|
-
},
|
|
771
|
-
{ "name": "isCollapsed", "values": [] }
|
|
772
|
-
],
|
|
773
|
-
"references": [
|
|
774
|
-
{
|
|
775
|
-
"name": "Storybook",
|
|
776
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-breadcrumb"
|
|
777
|
-
}
|
|
778
|
-
]
|
|
779
|
-
},
|
|
780
780
|
{
|
|
781
781
|
"name": "bm-button",
|
|
782
782
|
"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",
|
|
@@ -1904,51 +1904,6 @@
|
|
|
1904
1904
|
}
|
|
1905
1905
|
]
|
|
1906
1906
|
},
|
|
1907
|
-
{
|
|
1908
|
-
"name": "bm-form",
|
|
1909
|
-
"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",
|
|
1910
|
-
"attributes": [
|
|
1911
|
-
{
|
|
1912
|
-
"name": "validationMode",
|
|
1913
|
-
"description": "Specify if validation runs on change or when loosing focus",
|
|
1914
|
-
"values": [
|
|
1915
|
-
{ "name": "onChange" },
|
|
1916
|
-
{ "name": "onBlur" },
|
|
1917
|
-
{ "name": "onSubmit" }
|
|
1918
|
-
]
|
|
1919
|
-
},
|
|
1920
|
-
{
|
|
1921
|
-
"name": "initialValues",
|
|
1922
|
-
"description": "Specify initial values on Form controls based on their names",
|
|
1923
|
-
"values": [{ "name": "Record<string" }, { "name": "FormValue>" }]
|
|
1924
|
-
},
|
|
1925
|
-
{
|
|
1926
|
-
"name": "required",
|
|
1927
|
-
"description": "Specify if input is a required",
|
|
1928
|
-
"values": []
|
|
1929
|
-
},
|
|
1930
|
-
{
|
|
1931
|
-
"name": "disabled",
|
|
1932
|
-
"description": "Specify if input is a disabled",
|
|
1933
|
-
"values": []
|
|
1934
|
-
},
|
|
1935
|
-
{
|
|
1936
|
-
"name": "readOnly",
|
|
1937
|
-
"description": "Specify if input is a read only",
|
|
1938
|
-
"values": []
|
|
1939
|
-
},
|
|
1940
|
-
{ "name": "action", "values": [] },
|
|
1941
|
-
{ "name": "method", "values": [] },
|
|
1942
|
-
{ "name": "target", "values": [] },
|
|
1943
|
-
{ "name": "enctype", "values": [] }
|
|
1944
|
-
],
|
|
1945
|
-
"references": [
|
|
1946
|
-
{
|
|
1947
|
-
"name": "Storybook",
|
|
1948
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-form"
|
|
1949
|
-
}
|
|
1950
|
-
]
|
|
1951
|
-
},
|
|
1952
1907
|
{
|
|
1953
1908
|
"name": "bm-file-upload-button",
|
|
1954
1909
|
"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",
|
|
@@ -2257,67 +2212,47 @@
|
|
|
2257
2212
|
]
|
|
2258
2213
|
},
|
|
2259
2214
|
{
|
|
2260
|
-
"name": "bm-
|
|
2261
|
-
"description": "`bm-
|
|
2215
|
+
"name": "bm-form",
|
|
2216
|
+
"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",
|
|
2262
2217
|
"attributes": [
|
|
2263
2218
|
{
|
|
2264
|
-
"name": "
|
|
2265
|
-
"description": "Specify if
|
|
2266
|
-
"values": [
|
|
2267
|
-
|
|
2268
|
-
|
|
2269
|
-
|
|
2270
|
-
|
|
2271
|
-
"values": []
|
|
2272
|
-
},
|
|
2273
|
-
{
|
|
2274
|
-
"name": "disabled",
|
|
2275
|
-
"description": "Specify if NativeSelect displays in a disabled state",
|
|
2276
|
-
"values": []
|
|
2277
|
-
},
|
|
2278
|
-
{
|
|
2279
|
-
"name": "error",
|
|
2280
|
-
"description": "Specify error text and display error state of a NativeSelect",
|
|
2281
|
-
"values": []
|
|
2219
|
+
"name": "validationMode",
|
|
2220
|
+
"description": "Specify if validation runs on change or when loosing focus",
|
|
2221
|
+
"values": [
|
|
2222
|
+
{ "name": "onChange" },
|
|
2223
|
+
{ "name": "onBlur" },
|
|
2224
|
+
{ "name": "onSubmit" }
|
|
2225
|
+
]
|
|
2282
2226
|
},
|
|
2283
2227
|
{
|
|
2284
|
-
"name": "
|
|
2285
|
-
"description": "Specify
|
|
2286
|
-
"values": []
|
|
2228
|
+
"name": "initialValues",
|
|
2229
|
+
"description": "Specify initial values on Form controls based on their names",
|
|
2230
|
+
"values": [{ "name": "Record<string" }, { "name": "FormValue>" }]
|
|
2287
2231
|
},
|
|
2288
2232
|
{
|
|
2289
|
-
"name": "
|
|
2290
|
-
"description": "Specify
|
|
2233
|
+
"name": "required",
|
|
2234
|
+
"description": "Specify if input is a required",
|
|
2291
2235
|
"values": []
|
|
2292
2236
|
},
|
|
2293
2237
|
{
|
|
2294
|
-
"name": "
|
|
2295
|
-
"description": "Specify if
|
|
2238
|
+
"name": "disabled",
|
|
2239
|
+
"description": "Specify if input is a disabled",
|
|
2296
2240
|
"values": []
|
|
2297
2241
|
},
|
|
2298
2242
|
{
|
|
2299
|
-
"name": "
|
|
2300
|
-
"description": "Specify if
|
|
2243
|
+
"name": "readOnly",
|
|
2244
|
+
"description": "Specify if input is a read only",
|
|
2301
2245
|
"values": []
|
|
2302
2246
|
},
|
|
2303
|
-
{
|
|
2304
|
-
|
|
2305
|
-
|
|
2306
|
-
|
|
2307
|
-
},
|
|
2308
|
-
{ "name": "id", "values": [] },
|
|
2309
|
-
{ "name": "name", "values": [] },
|
|
2310
|
-
{ "name": "value", "values": [] },
|
|
2311
|
-
{
|
|
2312
|
-
"name": "validationRules",
|
|
2313
|
-
"values": [{ "name": "Array<FormValidator>" }]
|
|
2314
|
-
},
|
|
2315
|
-
{ "name": "input-aria-label", "values": [] }
|
|
2247
|
+
{ "name": "action", "values": [] },
|
|
2248
|
+
{ "name": "method", "values": [] },
|
|
2249
|
+
{ "name": "target", "values": [] },
|
|
2250
|
+
{ "name": "enctype", "values": [] }
|
|
2316
2251
|
],
|
|
2317
2252
|
"references": [
|
|
2318
2253
|
{
|
|
2319
2254
|
"name": "Storybook",
|
|
2320
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-
|
|
2255
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-form"
|
|
2321
2256
|
}
|
|
2322
2257
|
]
|
|
2323
2258
|
},
|
|
@@ -2373,6 +2308,71 @@
|
|
|
2373
2308
|
}
|
|
2374
2309
|
]
|
|
2375
2310
|
},
|
|
2311
|
+
{
|
|
2312
|
+
"name": "bm-native-select",
|
|
2313
|
+
"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",
|
|
2314
|
+
"attributes": [
|
|
2315
|
+
{
|
|
2316
|
+
"name": "required",
|
|
2317
|
+
"description": "Specify if NativeSelect is a required input",
|
|
2318
|
+
"values": []
|
|
2319
|
+
},
|
|
2320
|
+
{
|
|
2321
|
+
"name": "readOnly",
|
|
2322
|
+
"description": "Specify if NativeSelect displays in a read-only state",
|
|
2323
|
+
"values": []
|
|
2324
|
+
},
|
|
2325
|
+
{
|
|
2326
|
+
"name": "disabled",
|
|
2327
|
+
"description": "Specify if NativeSelect displays in a disabled state",
|
|
2328
|
+
"values": []
|
|
2329
|
+
},
|
|
2330
|
+
{
|
|
2331
|
+
"name": "error",
|
|
2332
|
+
"description": "Specify error text and display error state of a NativeSelect",
|
|
2333
|
+
"values": []
|
|
2334
|
+
},
|
|
2335
|
+
{
|
|
2336
|
+
"name": "fluid",
|
|
2337
|
+
"description": "Specify if NativeSelect is fluid",
|
|
2338
|
+
"values": []
|
|
2339
|
+
},
|
|
2340
|
+
{
|
|
2341
|
+
"name": "width",
|
|
2342
|
+
"description": "Specify the width of NativeSelect",
|
|
2343
|
+
"values": []
|
|
2344
|
+
},
|
|
2345
|
+
{
|
|
2346
|
+
"name": "ellipse",
|
|
2347
|
+
"description": "Specify if overflow displays ellipsis",
|
|
2348
|
+
"values": []
|
|
2349
|
+
},
|
|
2350
|
+
{
|
|
2351
|
+
"name": "hideRequiredMarker",
|
|
2352
|
+
"description": "Specify if the NativeSelect displays with an asterisk",
|
|
2353
|
+
"values": []
|
|
2354
|
+
},
|
|
2355
|
+
{
|
|
2356
|
+
"name": "theme",
|
|
2357
|
+
"description": "Specify the theme of the NativeSelect. By default it inherits the theme from the parent",
|
|
2358
|
+
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
2359
|
+
},
|
|
2360
|
+
{ "name": "id", "values": [] },
|
|
2361
|
+
{ "name": "name", "values": [] },
|
|
2362
|
+
{ "name": "value", "values": [] },
|
|
2363
|
+
{
|
|
2364
|
+
"name": "validationRules",
|
|
2365
|
+
"values": [{ "name": "Array<FormValidator>" }]
|
|
2366
|
+
},
|
|
2367
|
+
{ "name": "input-aria-label", "values": [] }
|
|
2368
|
+
],
|
|
2369
|
+
"references": [
|
|
2370
|
+
{
|
|
2371
|
+
"name": "Storybook",
|
|
2372
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-nativeselect"
|
|
2373
|
+
}
|
|
2374
|
+
]
|
|
2375
|
+
},
|
|
2376
2376
|
{
|
|
2377
2377
|
"name": "bm-switch",
|
|
2378
2378
|
"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.",
|