@viasat/beam-web-components 2.39.0 → 2.39.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/custom-elements.json +1204 -1204
- package/package.json +6 -6
- package/vscode.html-custom-data.json +174 -174
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@viasat/beam-web-components",
|
|
3
|
-
"version": "2.39.
|
|
3
|
+
"version": "2.39.1",
|
|
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.39.
|
|
68
|
-
"@viasat/beam-shared": "2.39.
|
|
69
|
-
"@viasat/beam-styles": "2.39.
|
|
70
|
-
"@viasat/beam-tokens": "2.39.
|
|
71
|
-
"@viasat/beam-icons": "2.39.
|
|
67
|
+
"@viasat/beam-fonts": "2.39.1",
|
|
68
|
+
"@viasat/beam-shared": "2.39.1",
|
|
69
|
+
"@viasat/beam-styles": "2.39.1",
|
|
70
|
+
"@viasat/beam-tokens": "2.39.1",
|
|
71
|
+
"@viasat/beam-icons": "2.39.1",
|
|
72
72
|
"clsx": "^1.2.1",
|
|
73
73
|
"lit": "^3.1.0",
|
|
74
74
|
"@lit/context": "^1.1.1",
|
|
@@ -61,6 +61,87 @@
|
|
|
61
61
|
}
|
|
62
62
|
]
|
|
63
63
|
},
|
|
64
|
+
{
|
|
65
|
+
"name": "bm-badge",
|
|
66
|
+
"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",
|
|
67
|
+
"attributes": [
|
|
68
|
+
{
|
|
69
|
+
"name": "appearance",
|
|
70
|
+
"description": "Specify the appearance of the Badge",
|
|
71
|
+
"values": [
|
|
72
|
+
{ "name": "infoPrimary" },
|
|
73
|
+
{ "name": "infoSecondary" },
|
|
74
|
+
{ "name": "positive" },
|
|
75
|
+
{ "name": "warning" },
|
|
76
|
+
{ "name": "negative" }
|
|
77
|
+
]
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"name": "theme",
|
|
81
|
+
"description": "Theme of the Badge",
|
|
82
|
+
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"name": "size",
|
|
86
|
+
"description": "Specify the size of the Badge",
|
|
87
|
+
"values": [{ "name": "sm" }, { "name": "md" }]
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"name": "emphasis",
|
|
91
|
+
"description": "Specify the emphasis of the Badge",
|
|
92
|
+
"values": [
|
|
93
|
+
{ "name": "strong" },
|
|
94
|
+
{ "name": "medium" },
|
|
95
|
+
{ "name": "subtle" }
|
|
96
|
+
]
|
|
97
|
+
},
|
|
98
|
+
{ "name": "hideIcon", "description": "Hides Badge icon", "values": [] }
|
|
99
|
+
],
|
|
100
|
+
"references": [
|
|
101
|
+
{
|
|
102
|
+
"name": "Storybook",
|
|
103
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-badge"
|
|
104
|
+
}
|
|
105
|
+
]
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"name": "bm-badge-dot",
|
|
109
|
+
"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",
|
|
110
|
+
"attributes": [
|
|
111
|
+
{
|
|
112
|
+
"name": "theme",
|
|
113
|
+
"description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
|
|
114
|
+
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"name": "appearance",
|
|
118
|
+
"description": "Specify the appearance of the BadgeDot",
|
|
119
|
+
"values": [
|
|
120
|
+
{ "name": "infoPrimary" },
|
|
121
|
+
{ "name": "infoSecondary" },
|
|
122
|
+
{ "name": "positive" },
|
|
123
|
+
{ "name": "warning" },
|
|
124
|
+
{ "name": "negative" }
|
|
125
|
+
]
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"name": "emphasis",
|
|
129
|
+
"description": "Specify the emphasis of the BadgeDot",
|
|
130
|
+
"values": [{ "name": "strong" }, { "name": "subtle" }]
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"name": "overrideDotColor",
|
|
134
|
+
"description": "Overrides default dot color",
|
|
135
|
+
"values": []
|
|
136
|
+
}
|
|
137
|
+
],
|
|
138
|
+
"references": [
|
|
139
|
+
{
|
|
140
|
+
"name": "Storybook",
|
|
141
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-badgedot"
|
|
142
|
+
}
|
|
143
|
+
]
|
|
144
|
+
},
|
|
64
145
|
{
|
|
65
146
|
"name": "bm-alert",
|
|
66
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",
|
|
@@ -135,83 +216,100 @@
|
|
|
135
216
|
]
|
|
136
217
|
},
|
|
137
218
|
{
|
|
138
|
-
"name": "bm-
|
|
139
|
-
"description": "`bm-
|
|
219
|
+
"name": "bm-avatar",
|
|
220
|
+
"description": "`bm-avatar`\n\n### Attributes:\n- **appearance** - Specify the appearance of the Avatar\n- **name** - Specify a name to display initials in the Avatar\n- **src** - Pass an image to the Avatar\n- **alt** - Specify alt for image\n- **size** - Specify the size of the Avatar\n- **disabled** - Specify if the Avatar is disabled\n- **shape** - Specify the shape of the Avatar\n- **isInteractive** - If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer\n- **isFocusable** - If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable\n- **withBorder** \n---\n\n\n### **Slots:**\n - **icon** - Customize the default icon",
|
|
140
221
|
"attributes": [
|
|
141
222
|
{
|
|
142
223
|
"name": "appearance",
|
|
143
|
-
"description": "Specify the appearance of the
|
|
144
|
-
"values": [
|
|
145
|
-
{ "name": "infoPrimary" },
|
|
146
|
-
{ "name": "infoSecondary" },
|
|
147
|
-
{ "name": "positive" },
|
|
148
|
-
{ "name": "warning" },
|
|
149
|
-
{ "name": "negative" }
|
|
150
|
-
]
|
|
224
|
+
"description": "Specify the appearance of the Avatar",
|
|
225
|
+
"values": [{ "name": "accent" }, { "name": "neutral" }]
|
|
151
226
|
},
|
|
152
227
|
{
|
|
153
|
-
"name": "
|
|
154
|
-
"description": "
|
|
155
|
-
"values": [
|
|
228
|
+
"name": "name",
|
|
229
|
+
"description": "Specify a name to display initials in the Avatar",
|
|
230
|
+
"values": []
|
|
156
231
|
},
|
|
157
232
|
{
|
|
158
|
-
"name": "
|
|
159
|
-
"description": "
|
|
160
|
-
"values": [
|
|
233
|
+
"name": "src",
|
|
234
|
+
"description": "Pass an image to the Avatar",
|
|
235
|
+
"values": []
|
|
161
236
|
},
|
|
237
|
+
{ "name": "alt", "description": "Specify alt for image", "values": [] },
|
|
162
238
|
{
|
|
163
|
-
"name": "
|
|
164
|
-
"description": "Specify the
|
|
239
|
+
"name": "size",
|
|
240
|
+
"description": "Specify the size of the Avatar",
|
|
165
241
|
"values": [
|
|
166
|
-
{ "name": "
|
|
167
|
-
{ "name": "
|
|
168
|
-
{ "name": "
|
|
242
|
+
{ "name": "xs" },
|
|
243
|
+
{ "name": "sm" },
|
|
244
|
+
{ "name": "md" },
|
|
245
|
+
{ "name": "lg" },
|
|
246
|
+
{ "name": "xl" }
|
|
169
247
|
]
|
|
170
248
|
},
|
|
171
|
-
{
|
|
249
|
+
{
|
|
250
|
+
"name": "disabled",
|
|
251
|
+
"description": "Specify if the Avatar is disabled",
|
|
252
|
+
"values": []
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"name": "shape",
|
|
256
|
+
"description": "Specify the shape of the Avatar",
|
|
257
|
+
"values": [{ "name": "circle" }, { "name": "square" }]
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"name": "isInteractive",
|
|
261
|
+
"description": "If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer",
|
|
262
|
+
"values": []
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"name": "isFocusable",
|
|
266
|
+
"description": "If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable",
|
|
267
|
+
"values": []
|
|
268
|
+
},
|
|
269
|
+
{ "name": "withBorder", "values": [] }
|
|
172
270
|
],
|
|
173
271
|
"references": [
|
|
174
272
|
{
|
|
175
273
|
"name": "Storybook",
|
|
176
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-
|
|
274
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-avatar"
|
|
177
275
|
}
|
|
178
276
|
]
|
|
179
277
|
},
|
|
180
278
|
{
|
|
181
|
-
"name": "bm-
|
|
182
|
-
"description": "`bm-
|
|
279
|
+
"name": "bm-avatar-group",
|
|
280
|
+
"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",
|
|
183
281
|
"attributes": [
|
|
184
282
|
{
|
|
185
|
-
"name": "
|
|
186
|
-
"description": "Specify
|
|
187
|
-
"values": [
|
|
283
|
+
"name": "wrapping",
|
|
284
|
+
"description": "Specify if the AvatarGroup wraps",
|
|
285
|
+
"values": []
|
|
188
286
|
},
|
|
189
287
|
{
|
|
190
|
-
"name": "
|
|
191
|
-
"description": "Specify the
|
|
192
|
-
"values": [
|
|
193
|
-
{ "name": "infoPrimary" },
|
|
194
|
-
{ "name": "infoSecondary" },
|
|
195
|
-
{ "name": "positive" },
|
|
196
|
-
{ "name": "warning" },
|
|
197
|
-
{ "name": "negative" }
|
|
198
|
-
]
|
|
288
|
+
"name": "maxCount",
|
|
289
|
+
"description": "Specify the max number of avatars displayed in the group.",
|
|
290
|
+
"values": []
|
|
199
291
|
},
|
|
200
292
|
{
|
|
201
|
-
"name": "
|
|
202
|
-
"description": "Specify the
|
|
203
|
-
"values": [
|
|
293
|
+
"name": "size",
|
|
294
|
+
"description": "Specify the size of all Avatars",
|
|
295
|
+
"values": [
|
|
296
|
+
{ "name": "xs" },
|
|
297
|
+
{ "name": "sm" },
|
|
298
|
+
{ "name": "md" },
|
|
299
|
+
{ "name": "lg" },
|
|
300
|
+
{ "name": "xl" }
|
|
301
|
+
]
|
|
204
302
|
},
|
|
205
303
|
{
|
|
206
|
-
"name": "
|
|
207
|
-
"description": "
|
|
208
|
-
"values": []
|
|
304
|
+
"name": "layout",
|
|
305
|
+
"description": "Specify the kind of the group.",
|
|
306
|
+
"values": [{ "name": "stacked" }, { "name": "spaced" }]
|
|
209
307
|
}
|
|
210
308
|
],
|
|
211
309
|
"references": [
|
|
212
310
|
{
|
|
213
311
|
"name": "Storybook",
|
|
214
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-
|
|
312
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-avatar"
|
|
215
313
|
}
|
|
216
314
|
]
|
|
217
315
|
},
|
|
@@ -747,104 +845,6 @@
|
|
|
747
845
|
}
|
|
748
846
|
]
|
|
749
847
|
},
|
|
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" }]
|
|
790
|
-
},
|
|
791
|
-
{
|
|
792
|
-
"name": "isInteractive",
|
|
793
|
-
"description": "If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer",
|
|
794
|
-
"values": []
|
|
795
|
-
},
|
|
796
|
-
{
|
|
797
|
-
"name": "isFocusable",
|
|
798
|
-
"description": "If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable",
|
|
799
|
-
"values": []
|
|
800
|
-
},
|
|
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
|
-
{
|
|
815
|
-
"name": "wrapping",
|
|
816
|
-
"description": "Specify if the AvatarGroup wraps",
|
|
817
|
-
"values": []
|
|
818
|
-
},
|
|
819
|
-
{
|
|
820
|
-
"name": "maxCount",
|
|
821
|
-
"description": "Specify the max number of avatars displayed in the group.",
|
|
822
|
-
"values": []
|
|
823
|
-
},
|
|
824
|
-
{
|
|
825
|
-
"name": "size",
|
|
826
|
-
"description": "Specify the size of all Avatars",
|
|
827
|
-
"values": [
|
|
828
|
-
{ "name": "xs" },
|
|
829
|
-
{ "name": "sm" },
|
|
830
|
-
{ "name": "md" },
|
|
831
|
-
{ "name": "lg" },
|
|
832
|
-
{ "name": "xl" }
|
|
833
|
-
]
|
|
834
|
-
},
|
|
835
|
-
{
|
|
836
|
-
"name": "layout",
|
|
837
|
-
"description": "Specify the kind of the group.",
|
|
838
|
-
"values": [{ "name": "stacked" }, { "name": "spaced" }]
|
|
839
|
-
}
|
|
840
|
-
],
|
|
841
|
-
"references": [
|
|
842
|
-
{
|
|
843
|
-
"name": "Storybook",
|
|
844
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-avatar"
|
|
845
|
-
}
|
|
846
|
-
]
|
|
847
|
-
},
|
|
848
848
|
{
|
|
849
849
|
"name": "bm-close-button",
|
|
850
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",
|
|
@@ -873,38 +873,6 @@
|
|
|
873
873
|
}
|
|
874
874
|
]
|
|
875
875
|
},
|
|
876
|
-
{
|
|
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",
|
|
879
|
-
"attributes": [
|
|
880
|
-
{
|
|
881
|
-
"name": "heading",
|
|
882
|
-
"description": "Specify heading text for EmptyState",
|
|
883
|
-
"values": []
|
|
884
|
-
},
|
|
885
|
-
{
|
|
886
|
-
"name": "body",
|
|
887
|
-
"description": "Specify body text for EmptyState",
|
|
888
|
-
"values": []
|
|
889
|
-
},
|
|
890
|
-
{
|
|
891
|
-
"name": "actions",
|
|
892
|
-
"description": "Specify action for EmptyState",
|
|
893
|
-
"values": [{ "name": "HTMLSlotElement" }]
|
|
894
|
-
},
|
|
895
|
-
{
|
|
896
|
-
"name": "theme",
|
|
897
|
-
"description": "Specify the theme of EmptyState. By default it inherits the theme from the parent",
|
|
898
|
-
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
899
|
-
}
|
|
900
|
-
],
|
|
901
|
-
"references": [
|
|
902
|
-
{
|
|
903
|
-
"name": "Storybook",
|
|
904
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-emptystate"
|
|
905
|
-
}
|
|
906
|
-
]
|
|
907
|
-
},
|
|
908
876
|
{
|
|
909
877
|
"name": "bm-divider",
|
|
910
878
|
"description": "`bm-divider`\n\n### Attributes:\n- **orientation** - Specify the direction of the Divider\n- **borderColor** - Specify the border color of the divider line\n- **borderWidth** - Specify the width of the divider line\n- **borderStyle** - Specify the style of the divider line\n- **alignContent** - Align content to the divider line\n- **length** \n- **inset** - Add equal padding to each side of the Divider\n---\n\n\n### **Slots:**\n - **default** - Add text to the Divider\n- **icon** - Add an icon to the Divider",
|
|
@@ -989,6 +957,38 @@
|
|
|
989
957
|
}
|
|
990
958
|
]
|
|
991
959
|
},
|
|
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",
|