@viasat/beam-web-components 2.38.0 → 2.39.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/InputChoiceGroup/InputChoiceGroup.js +49 -49
- package/TextField/TextField.js +40 -40
- package/custom-elements.json +1775 -1775
- package/local/InputChoiceGroup/InputChoiceGroup.js +48 -48
- package/local/TextField/TextField.js +36 -36
- package/local/wip/Checkbox/Checkbox.js +11 -11
- package/local/wip/NativeSelect/NativeSelect.js +58 -58
- package/local/wip/RadioButton/RadioButton.js +40 -40
- package/local/wip/Switch/Switch.js +41 -41
- package/local/wip/TextArea/TextArea.js +98 -98
- package/package.json +6 -6
- package/vscode.html-custom-data.json +217 -217
- package/wip/Checkbox/Checkbox.js +32 -32
- package/wip/NativeSelect/NativeSelect.js +55 -55
- package/wip/RadioButton/RadioButton.js +25 -25
- package/wip/Switch/Switch.js +40 -40
- package/wip/TextArea/TextArea.js +100 -100
|
@@ -62,17 +62,37 @@
|
|
|
62
62
|
]
|
|
63
63
|
},
|
|
64
64
|
{
|
|
65
|
-
"name": "bm-
|
|
66
|
-
"description": "`bm-
|
|
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
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
|
+
},
|
|
68
88
|
{
|
|
69
89
|
"name": "theme",
|
|
70
|
-
"description": "Specify the theme of the
|
|
90
|
+
"description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
|
|
71
91
|
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
72
92
|
},
|
|
73
93
|
{
|
|
74
94
|
"name": "appearance",
|
|
75
|
-
"description": "Specify the appearance of the
|
|
95
|
+
"description": "Specify the appearance of the Alert",
|
|
76
96
|
"values": [
|
|
77
97
|
{ "name": "infoPrimary" },
|
|
78
98
|
{ "name": "infoSecondary" },
|
|
@@ -82,20 +102,35 @@
|
|
|
82
102
|
]
|
|
83
103
|
},
|
|
84
104
|
{
|
|
85
|
-
"name": "
|
|
86
|
-
"description": "Specify the
|
|
87
|
-
"values": [
|
|
105
|
+
"name": "hidden",
|
|
106
|
+
"description": "Specify if the Alert is hidden",
|
|
107
|
+
"values": []
|
|
88
108
|
},
|
|
89
109
|
{
|
|
90
|
-
"name": "
|
|
91
|
-
"description": "
|
|
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",
|
|
92
127
|
"values": []
|
|
93
128
|
}
|
|
94
129
|
],
|
|
95
130
|
"references": [
|
|
96
131
|
{
|
|
97
132
|
"name": "Storybook",
|
|
98
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-
|
|
133
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-alert"
|
|
99
134
|
}
|
|
100
135
|
]
|
|
101
136
|
},
|
|
@@ -142,6 +177,44 @@
|
|
|
142
177
|
}
|
|
143
178
|
]
|
|
144
179
|
},
|
|
180
|
+
{
|
|
181
|
+
"name": "bm-badge-dot",
|
|
182
|
+
"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",
|
|
183
|
+
"attributes": [
|
|
184
|
+
{
|
|
185
|
+
"name": "theme",
|
|
186
|
+
"description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
|
|
187
|
+
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"name": "appearance",
|
|
191
|
+
"description": "Specify the appearance of the BadgeDot",
|
|
192
|
+
"values": [
|
|
193
|
+
{ "name": "infoPrimary" },
|
|
194
|
+
{ "name": "infoSecondary" },
|
|
195
|
+
{ "name": "positive" },
|
|
196
|
+
{ "name": "warning" },
|
|
197
|
+
{ "name": "negative" }
|
|
198
|
+
]
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"name": "emphasis",
|
|
202
|
+
"description": "Specify the emphasis of the BadgeDot",
|
|
203
|
+
"values": [{ "name": "strong" }, { "name": "subtle" }]
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"name": "overrideDotColor",
|
|
207
|
+
"description": "Overrides default dot color",
|
|
208
|
+
"values": []
|
|
209
|
+
}
|
|
210
|
+
],
|
|
211
|
+
"references": [
|
|
212
|
+
{
|
|
213
|
+
"name": "Storybook",
|
|
214
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-badgedot"
|
|
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",
|
|
@@ -606,6 +679,74 @@
|
|
|
606
679
|
}
|
|
607
680
|
]
|
|
608
681
|
},
|
|
682
|
+
{
|
|
683
|
+
"name": "bm-button",
|
|
684
|
+
"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",
|
|
685
|
+
"attributes": [
|
|
686
|
+
{
|
|
687
|
+
"name": "appearance",
|
|
688
|
+
"description": "Specify the appearance of a Button",
|
|
689
|
+
"values": [
|
|
690
|
+
{ "name": "accent" },
|
|
691
|
+
{ "name": "neutral" },
|
|
692
|
+
{ "name": "neutral-subtle" },
|
|
693
|
+
{ "name": "destructive" }
|
|
694
|
+
]
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
"name": "kind",
|
|
698
|
+
"description": "Specify the kind of Button",
|
|
699
|
+
"values": [
|
|
700
|
+
{ "name": "filled" },
|
|
701
|
+
{ "name": "outline" },
|
|
702
|
+
{ "name": "ghost" },
|
|
703
|
+
{ "name": "bare" }
|
|
704
|
+
]
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
"name": "size",
|
|
708
|
+
"description": "Specify the size of a Button",
|
|
709
|
+
"values": [{ "name": "sm" }, { "name": "md" }, { "name": "lg" }]
|
|
710
|
+
},
|
|
711
|
+
{
|
|
712
|
+
"name": "disabled",
|
|
713
|
+
"description": "Specify if the Button is disabled",
|
|
714
|
+
"values": []
|
|
715
|
+
},
|
|
716
|
+
{
|
|
717
|
+
"name": "fluid",
|
|
718
|
+
"description": "Specify if Button is fluid",
|
|
719
|
+
"values": []
|
|
720
|
+
},
|
|
721
|
+
{
|
|
722
|
+
"name": "width",
|
|
723
|
+
"description": "Specify the width of a Button",
|
|
724
|
+
"values": []
|
|
725
|
+
},
|
|
726
|
+
{
|
|
727
|
+
"name": "height",
|
|
728
|
+
"description": "Specify the height of a Button",
|
|
729
|
+
"values": []
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
"name": "theme",
|
|
733
|
+
"description": "Specify the theme of the Button",
|
|
734
|
+
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
735
|
+
},
|
|
736
|
+
{
|
|
737
|
+
"name": "iconOnly",
|
|
738
|
+
"description": "Specify if the icon displays without text",
|
|
739
|
+
"values": []
|
|
740
|
+
},
|
|
741
|
+
{ "name": "type", "values": [] }
|
|
742
|
+
],
|
|
743
|
+
"references": [
|
|
744
|
+
{
|
|
745
|
+
"name": "Storybook",
|
|
746
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-button"
|
|
747
|
+
}
|
|
748
|
+
]
|
|
749
|
+
},
|
|
609
750
|
{
|
|
610
751
|
"name": "bm-avatar",
|
|
611
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",
|
|
@@ -705,171 +846,62 @@
|
|
|
705
846
|
]
|
|
706
847
|
},
|
|
707
848
|
{
|
|
708
|
-
"name": "bm-button",
|
|
709
|
-
"description": "`bm-button`\n\n### Attributes:\n- **
|
|
849
|
+
"name": "bm-close-button",
|
|
850
|
+
"description": "`bm-close-button`\n\n### Attributes:\n- **size** - Specify the size of the CloseButton\n- **disabled** - Specify if the CloseButton is disabled\n---\n",
|
|
710
851
|
"attributes": [
|
|
711
852
|
{
|
|
712
|
-
"name": "
|
|
713
|
-
"description": "Specify the
|
|
714
|
-
"values": [
|
|
715
|
-
{ "name": "accent" },
|
|
716
|
-
{ "name": "neutral" },
|
|
717
|
-
{ "name": "neutral-subtle" },
|
|
718
|
-
{ "name": "destructive" }
|
|
719
|
-
]
|
|
720
|
-
},
|
|
721
|
-
{
|
|
722
|
-
"name": "kind",
|
|
723
|
-
"description": "Specify the kind of Button",
|
|
853
|
+
"name": "size",
|
|
854
|
+
"description": "Specify the size of the CloseButton",
|
|
724
855
|
"values": [
|
|
725
|
-
{ "name": "
|
|
726
|
-
{ "name": "
|
|
727
|
-
{ "name": "
|
|
728
|
-
{ "name": "
|
|
856
|
+
{ "name": "xs" },
|
|
857
|
+
{ "name": "sm" },
|
|
858
|
+
{ "name": "md" },
|
|
859
|
+
{ "name": "lg" },
|
|
860
|
+
{ "name": "xl" }
|
|
729
861
|
]
|
|
730
862
|
},
|
|
731
|
-
{
|
|
732
|
-
"name": "size",
|
|
733
|
-
"description": "Specify the size of a Button",
|
|
734
|
-
"values": [{ "name": "sm" }, { "name": "md" }, { "name": "lg" }]
|
|
735
|
-
},
|
|
736
863
|
{
|
|
737
864
|
"name": "disabled",
|
|
738
|
-
"description": "Specify if the
|
|
739
|
-
"values": []
|
|
740
|
-
},
|
|
741
|
-
{
|
|
742
|
-
"name": "fluid",
|
|
743
|
-
"description": "Specify if Button is fluid",
|
|
744
|
-
"values": []
|
|
745
|
-
},
|
|
746
|
-
{
|
|
747
|
-
"name": "width",
|
|
748
|
-
"description": "Specify the width of a Button",
|
|
749
|
-
"values": []
|
|
750
|
-
},
|
|
751
|
-
{
|
|
752
|
-
"name": "height",
|
|
753
|
-
"description": "Specify the height of a Button",
|
|
754
|
-
"values": []
|
|
755
|
-
},
|
|
756
|
-
{
|
|
757
|
-
"name": "theme",
|
|
758
|
-
"description": "Specify the theme of the Button",
|
|
759
|
-
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
760
|
-
},
|
|
761
|
-
{
|
|
762
|
-
"name": "iconOnly",
|
|
763
|
-
"description": "Specify if the icon displays without text",
|
|
865
|
+
"description": "Specify if the CloseButton is disabled",
|
|
764
866
|
"values": []
|
|
765
|
-
}
|
|
766
|
-
{ "name": "type", "values": [] }
|
|
867
|
+
}
|
|
767
868
|
],
|
|
768
869
|
"references": [
|
|
769
870
|
{
|
|
770
871
|
"name": "Storybook",
|
|
771
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-
|
|
872
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-closebutton"
|
|
772
873
|
}
|
|
773
874
|
]
|
|
774
875
|
},
|
|
775
876
|
{
|
|
776
|
-
"name": "bm-
|
|
777
|
-
"description": "`bm-
|
|
877
|
+
"name": "bm-empty-state",
|
|
878
|
+
"description": "`bm-empty-state`\n\n### Attributes:\n- **heading** - Specify heading text for EmptyState\n- **body** - Specify body text for EmptyState\n- **actions** - Specify action for EmptyState\n- **theme** - Specify the theme of EmptyState. By default it inherits the theme from the parent\n---\n\n\n### **Slots:**\n - **icon** - Specify an icon for EmptyState\n- **heading** - Specify heading text for EmptyState\n- **body** - Specify body text for EmptyState\n- **actions** - Add actions to EmptyState",
|
|
778
879
|
"attributes": [
|
|
779
880
|
{
|
|
780
881
|
"name": "heading",
|
|
781
|
-
"description": "Specify
|
|
882
|
+
"description": "Specify heading text for EmptyState",
|
|
782
883
|
"values": []
|
|
783
884
|
},
|
|
784
885
|
{
|
|
785
886
|
"name": "body",
|
|
786
|
-
"description": "Specify
|
|
887
|
+
"description": "Specify body text for EmptyState",
|
|
787
888
|
"values": []
|
|
788
889
|
},
|
|
789
890
|
{
|
|
790
|
-
"name": "
|
|
791
|
-
"description": "Specify
|
|
792
|
-
"values": [{ "name": "
|
|
793
|
-
},
|
|
794
|
-
{
|
|
795
|
-
"name": "fullWidth",
|
|
796
|
-
"description": "Specify if the Alert has no border radius",
|
|
797
|
-
"values": []
|
|
891
|
+
"name": "actions",
|
|
892
|
+
"description": "Specify action for EmptyState",
|
|
893
|
+
"values": [{ "name": "HTMLSlotElement" }]
|
|
798
894
|
},
|
|
799
895
|
{
|
|
800
896
|
"name": "theme",
|
|
801
|
-
"description": "Specify the theme of
|
|
897
|
+
"description": "Specify the theme of EmptyState. By default it inherits the theme from the parent",
|
|
802
898
|
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
803
|
-
},
|
|
804
|
-
{
|
|
805
|
-
"name": "appearance",
|
|
806
|
-
"description": "Specify the appearance of the Alert",
|
|
807
|
-
"values": [
|
|
808
|
-
{ "name": "infoPrimary" },
|
|
809
|
-
{ "name": "infoSecondary" },
|
|
810
|
-
{ "name": "positive" },
|
|
811
|
-
{ "name": "warning" },
|
|
812
|
-
{ "name": "negative" }
|
|
813
|
-
]
|
|
814
|
-
},
|
|
815
|
-
{
|
|
816
|
-
"name": "hidden",
|
|
817
|
-
"description": "Specify if the Alert is hidden",
|
|
818
|
-
"values": []
|
|
819
|
-
},
|
|
820
|
-
{
|
|
821
|
-
"name": "hideIcon",
|
|
822
|
-
"description": "Specify if the icon displays on the Alert",
|
|
823
|
-
"values": []
|
|
824
|
-
},
|
|
825
|
-
{
|
|
826
|
-
"name": "dismissible",
|
|
827
|
-
"description": "Specify if the Alert can be dismissed",
|
|
828
|
-
"values": []
|
|
829
|
-
},
|
|
830
|
-
{
|
|
831
|
-
"name": "disableAutoFocus",
|
|
832
|
-
"description": "Prevent autofocus on show",
|
|
833
|
-
"values": []
|
|
834
|
-
},
|
|
835
|
-
{
|
|
836
|
-
"name": "disableCloseOnEscape",
|
|
837
|
-
"description": "Prevent Escape from closing",
|
|
838
|
-
"values": []
|
|
839
|
-
}
|
|
840
|
-
],
|
|
841
|
-
"references": [
|
|
842
|
-
{
|
|
843
|
-
"name": "Storybook",
|
|
844
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-alert"
|
|
845
|
-
}
|
|
846
|
-
]
|
|
847
|
-
},
|
|
848
|
-
{
|
|
849
|
-
"name": "bm-close-button",
|
|
850
|
-
"description": "`bm-close-button`\n\n### Attributes:\n- **size** - Specify the size of the CloseButton\n- **disabled** - Specify if the CloseButton is disabled\n---\n",
|
|
851
|
-
"attributes": [
|
|
852
|
-
{
|
|
853
|
-
"name": "size",
|
|
854
|
-
"description": "Specify the size of the CloseButton",
|
|
855
|
-
"values": [
|
|
856
|
-
{ "name": "xs" },
|
|
857
|
-
{ "name": "sm" },
|
|
858
|
-
{ "name": "md" },
|
|
859
|
-
{ "name": "lg" },
|
|
860
|
-
{ "name": "xl" }
|
|
861
|
-
]
|
|
862
|
-
},
|
|
863
|
-
{
|
|
864
|
-
"name": "disabled",
|
|
865
|
-
"description": "Specify if the CloseButton is disabled",
|
|
866
|
-
"values": []
|
|
867
899
|
}
|
|
868
900
|
],
|
|
869
901
|
"references": [
|
|
870
902
|
{
|
|
871
903
|
"name": "Storybook",
|
|
872
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-
|
|
904
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-emptystate"
|
|
873
905
|
}
|
|
874
906
|
]
|
|
875
907
|
},
|
|
@@ -957,38 +989,6 @@
|
|
|
957
989
|
}
|
|
958
990
|
]
|
|
959
991
|
},
|
|
960
|
-
{
|
|
961
|
-
"name": "bm-empty-state",
|
|
962
|
-
"description": "`bm-empty-state`\n\n### Attributes:\n- **heading** - Specify heading text for EmptyState\n- **body** - Specify body text for EmptyState\n- **actions** - Specify action for EmptyState\n- **theme** - Specify the theme of EmptyState. By default it inherits the theme from the parent\n---\n\n\n### **Slots:**\n - **icon** - Specify an icon for EmptyState\n- **heading** - Specify heading text for EmptyState\n- **body** - Specify body text for EmptyState\n- **actions** - Add actions to EmptyState",
|
|
963
|
-
"attributes": [
|
|
964
|
-
{
|
|
965
|
-
"name": "heading",
|
|
966
|
-
"description": "Specify heading text for EmptyState",
|
|
967
|
-
"values": []
|
|
968
|
-
},
|
|
969
|
-
{
|
|
970
|
-
"name": "body",
|
|
971
|
-
"description": "Specify body text for EmptyState",
|
|
972
|
-
"values": []
|
|
973
|
-
},
|
|
974
|
-
{
|
|
975
|
-
"name": "actions",
|
|
976
|
-
"description": "Specify action for EmptyState",
|
|
977
|
-
"values": [{ "name": "HTMLSlotElement" }]
|
|
978
|
-
},
|
|
979
|
-
{
|
|
980
|
-
"name": "theme",
|
|
981
|
-
"description": "Specify the theme of EmptyState. By default it inherits the theme from the parent",
|
|
982
|
-
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
983
|
-
}
|
|
984
|
-
],
|
|
985
|
-
"references": [
|
|
986
|
-
{
|
|
987
|
-
"name": "Storybook",
|
|
988
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-emptystate"
|
|
989
|
-
}
|
|
990
|
-
]
|
|
991
|
-
},
|
|
992
992
|
{
|
|
993
993
|
"name": "bm-helper-text",
|
|
994
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",
|
|
@@ -1909,6 +1909,51 @@
|
|
|
1909
1909
|
}
|
|
1910
1910
|
]
|
|
1911
1911
|
},
|
|
1912
|
+
{
|
|
1913
|
+
"name": "bm-form",
|
|
1914
|
+
"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",
|
|
1915
|
+
"attributes": [
|
|
1916
|
+
{
|
|
1917
|
+
"name": "validationMode",
|
|
1918
|
+
"description": "Specify if validation runs on change or when loosing focus",
|
|
1919
|
+
"values": [
|
|
1920
|
+
{ "name": "onChange" },
|
|
1921
|
+
{ "name": "onBlur" },
|
|
1922
|
+
{ "name": "onSubmit" }
|
|
1923
|
+
]
|
|
1924
|
+
},
|
|
1925
|
+
{
|
|
1926
|
+
"name": "initialValues",
|
|
1927
|
+
"description": "Specify initial values on Form controls based on their names",
|
|
1928
|
+
"values": [{ "name": "Record<string" }, { "name": "FormValue>" }]
|
|
1929
|
+
},
|
|
1930
|
+
{
|
|
1931
|
+
"name": "required",
|
|
1932
|
+
"description": "Specify if input is a required",
|
|
1933
|
+
"values": []
|
|
1934
|
+
},
|
|
1935
|
+
{
|
|
1936
|
+
"name": "disabled",
|
|
1937
|
+
"description": "Specify if input is a disabled",
|
|
1938
|
+
"values": []
|
|
1939
|
+
},
|
|
1940
|
+
{
|
|
1941
|
+
"name": "readOnly",
|
|
1942
|
+
"description": "Specify if input is a read only",
|
|
1943
|
+
"values": []
|
|
1944
|
+
},
|
|
1945
|
+
{ "name": "action", "values": [] },
|
|
1946
|
+
{ "name": "method", "values": [] },
|
|
1947
|
+
{ "name": "target", "values": [] },
|
|
1948
|
+
{ "name": "enctype", "values": [] }
|
|
1949
|
+
],
|
|
1950
|
+
"references": [
|
|
1951
|
+
{
|
|
1952
|
+
"name": "Storybook",
|
|
1953
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-form"
|
|
1954
|
+
}
|
|
1955
|
+
]
|
|
1956
|
+
},
|
|
1912
1957
|
{
|
|
1913
1958
|
"name": "bm-file-upload-button",
|
|
1914
1959
|
"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",
|
|
@@ -2216,51 +2261,6 @@
|
|
|
2216
2261
|
}
|
|
2217
2262
|
]
|
|
2218
2263
|
},
|
|
2219
|
-
{
|
|
2220
|
-
"name": "bm-form",
|
|
2221
|
-
"description": "`bm-form`\n---\n\n\n### **Events:**\n - **submit** - Validates the inputs and submits the form\n\n### **Slots:**\n - **slot** - Add controls to the Form",
|
|
2222
|
-
"attributes": [
|
|
2223
|
-
{
|
|
2224
|
-
"name": "validationMode",
|
|
2225
|
-
"description": "Specify if validation runs on change or when loosing focus",
|
|
2226
|
-
"values": [
|
|
2227
|
-
{ "name": "onChange" },
|
|
2228
|
-
{ "name": "onBlur" },
|
|
2229
|
-
{ "name": "onSubmit" }
|
|
2230
|
-
]
|
|
2231
|
-
},
|
|
2232
|
-
{
|
|
2233
|
-
"name": "initialValues",
|
|
2234
|
-
"description": "Specify initial values on Form controls based on their names",
|
|
2235
|
-
"values": [{ "name": "Record<string" }, { "name": "FormValue>" }]
|
|
2236
|
-
},
|
|
2237
|
-
{
|
|
2238
|
-
"name": "required",
|
|
2239
|
-
"description": "Specify if input is a required",
|
|
2240
|
-
"values": []
|
|
2241
|
-
},
|
|
2242
|
-
{
|
|
2243
|
-
"name": "disabled",
|
|
2244
|
-
"description": "Specify if input is a disabled",
|
|
2245
|
-
"values": []
|
|
2246
|
-
},
|
|
2247
|
-
{
|
|
2248
|
-
"name": "readOnly",
|
|
2249
|
-
"description": "Specify if input is a read only",
|
|
2250
|
-
"values": []
|
|
2251
|
-
},
|
|
2252
|
-
{ "name": "action", "values": [] },
|
|
2253
|
-
{ "name": "method", "values": [] },
|
|
2254
|
-
{ "name": "target", "values": [] },
|
|
2255
|
-
{ "name": "enctype", "values": [] }
|
|
2256
|
-
],
|
|
2257
|
-
"references": [
|
|
2258
|
-
{
|
|
2259
|
-
"name": "Storybook",
|
|
2260
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-form"
|
|
2261
|
-
}
|
|
2262
|
-
]
|
|
2263
|
-
},
|
|
2264
2264
|
{
|
|
2265
2265
|
"name": "bm-native-select",
|
|
2266
2266
|
"description": "`bm-native-select`\n---\n\n\n### **Slots:**\n - **slot** - Specify Options for NativeSelect\n- **label** - Specify Label for NativeSelect\n- **helper-text** - Specify HelperText for NativeSelect",
|