@viasat/beam-web-components 2.60.0 → 2.62.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 +639 -639
- package/package.json +6 -6
- package/vscode.html-custom-data.json +159 -159
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@viasat/beam-web-components",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.62.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.62.0",
|
|
68
|
+
"@viasat/beam-shared": "2.62.0",
|
|
69
|
+
"@viasat/beam-styles": "2.62.0",
|
|
70
|
+
"@viasat/beam-tokens": "2.62.0",
|
|
71
|
+
"@viasat/beam-icons": "2.62.0",
|
|
72
72
|
"clsx": "^1.2.1",
|
|
73
73
|
"lit": "^3.1.0",
|
|
74
74
|
"@lit/context": "^1.1.1",
|
|
@@ -61,6 +61,79 @@
|
|
|
61
61
|
}
|
|
62
62
|
]
|
|
63
63
|
},
|
|
64
|
+
{
|
|
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
|
+
"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
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"name": "theme",
|
|
90
|
+
"description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
|
|
91
|
+
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"name": "appearance",
|
|
95
|
+
"description": "Specify the appearance of the Alert",
|
|
96
|
+
"values": [
|
|
97
|
+
{ "name": "infoPrimary" },
|
|
98
|
+
{ "name": "infoSecondary" },
|
|
99
|
+
{ "name": "positive" },
|
|
100
|
+
{ "name": "warning" },
|
|
101
|
+
{ "name": "negative" }
|
|
102
|
+
]
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"name": "hidden",
|
|
106
|
+
"description": "Specify if the Alert is hidden",
|
|
107
|
+
"values": []
|
|
108
|
+
},
|
|
109
|
+
{
|
|
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",
|
|
127
|
+
"values": []
|
|
128
|
+
}
|
|
129
|
+
],
|
|
130
|
+
"references": [
|
|
131
|
+
{
|
|
132
|
+
"name": "Storybook",
|
|
133
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-alert"
|
|
134
|
+
}
|
|
135
|
+
]
|
|
136
|
+
},
|
|
64
137
|
{
|
|
65
138
|
"name": "bm-avatar",
|
|
66
139
|
"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",
|
|
@@ -160,12 +233,17 @@
|
|
|
160
233
|
]
|
|
161
234
|
},
|
|
162
235
|
{
|
|
163
|
-
"name": "bm-badge",
|
|
164
|
-
"description": "`bm-badge`\n\n### Attributes:\n- **
|
|
236
|
+
"name": "bm-badge-dot",
|
|
237
|
+
"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",
|
|
165
238
|
"attributes": [
|
|
239
|
+
{
|
|
240
|
+
"name": "theme",
|
|
241
|
+
"description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
|
|
242
|
+
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
243
|
+
},
|
|
166
244
|
{
|
|
167
245
|
"name": "appearance",
|
|
168
|
-
"description": "Specify the appearance of the
|
|
246
|
+
"description": "Specify the appearance of the BadgeDot",
|
|
169
247
|
"values": [
|
|
170
248
|
{ "name": "infoPrimary" },
|
|
171
249
|
{ "name": "infoSecondary" },
|
|
@@ -174,66 +252,31 @@
|
|
|
174
252
|
{ "name": "negative" }
|
|
175
253
|
]
|
|
176
254
|
},
|
|
177
|
-
{
|
|
178
|
-
"name": "theme",
|
|
179
|
-
"description": "Theme of the Badge",
|
|
180
|
-
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
181
|
-
},
|
|
182
|
-
{
|
|
183
|
-
"name": "size",
|
|
184
|
-
"description": "Specify the size of the Badge",
|
|
185
|
-
"values": [{ "name": "sm" }, { "name": "md" }]
|
|
186
|
-
},
|
|
187
255
|
{
|
|
188
256
|
"name": "emphasis",
|
|
189
|
-
"description": "Specify the emphasis of the
|
|
190
|
-
"values": [
|
|
191
|
-
{ "name": "strong" },
|
|
192
|
-
{ "name": "medium" },
|
|
193
|
-
{ "name": "subtle" }
|
|
194
|
-
]
|
|
257
|
+
"description": "Specify the emphasis of the BadgeDot",
|
|
258
|
+
"values": [{ "name": "strong" }, { "name": "subtle" }]
|
|
195
259
|
},
|
|
196
|
-
{
|
|
260
|
+
{
|
|
261
|
+
"name": "overrideDotColor",
|
|
262
|
+
"description": "Overrides default dot color",
|
|
263
|
+
"values": []
|
|
264
|
+
}
|
|
197
265
|
],
|
|
198
266
|
"references": [
|
|
199
267
|
{
|
|
200
268
|
"name": "Storybook",
|
|
201
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-
|
|
269
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-badgedot"
|
|
202
270
|
}
|
|
203
271
|
]
|
|
204
272
|
},
|
|
205
273
|
{
|
|
206
|
-
"name": "bm-
|
|
207
|
-
"description": "`bm-
|
|
274
|
+
"name": "bm-badge",
|
|
275
|
+
"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",
|
|
208
276
|
"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
277
|
{
|
|
235
278
|
"name": "appearance",
|
|
236
|
-
"description": "Specify the appearance of the
|
|
279
|
+
"description": "Specify the appearance of the Badge",
|
|
237
280
|
"values": [
|
|
238
281
|
{ "name": "infoPrimary" },
|
|
239
282
|
{ "name": "infoSecondary" },
|
|
@@ -243,35 +286,30 @@
|
|
|
243
286
|
]
|
|
244
287
|
},
|
|
245
288
|
{
|
|
246
|
-
"name": "
|
|
247
|
-
"description": "
|
|
248
|
-
"values": []
|
|
249
|
-
},
|
|
250
|
-
{
|
|
251
|
-
"name": "hideIcon",
|
|
252
|
-
"description": "Specify if the icon displays on the Alert",
|
|
253
|
-
"values": []
|
|
289
|
+
"name": "theme",
|
|
290
|
+
"description": "Theme of the Badge",
|
|
291
|
+
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
254
292
|
},
|
|
255
293
|
{
|
|
256
|
-
"name": "
|
|
257
|
-
"description": "Specify
|
|
258
|
-
"values": []
|
|
294
|
+
"name": "size",
|
|
295
|
+
"description": "Specify the size of the Badge",
|
|
296
|
+
"values": [{ "name": "sm" }, { "name": "md" }]
|
|
259
297
|
},
|
|
260
298
|
{
|
|
261
|
-
"name": "
|
|
262
|
-
"description": "
|
|
263
|
-
"values": [
|
|
299
|
+
"name": "emphasis",
|
|
300
|
+
"description": "Specify the emphasis of the Badge",
|
|
301
|
+
"values": [
|
|
302
|
+
{ "name": "strong" },
|
|
303
|
+
{ "name": "medium" },
|
|
304
|
+
{ "name": "subtle" }
|
|
305
|
+
]
|
|
264
306
|
},
|
|
265
|
-
{
|
|
266
|
-
"name": "disableCloseOnEscape",
|
|
267
|
-
"description": "Prevent Escape from closing",
|
|
268
|
-
"values": []
|
|
269
|
-
}
|
|
307
|
+
{ "name": "hideIcon", "description": "Hides Badge icon", "values": [] }
|
|
270
308
|
],
|
|
271
309
|
"references": [
|
|
272
310
|
{
|
|
273
311
|
"name": "Storybook",
|
|
274
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-
|
|
312
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-badge"
|
|
275
313
|
}
|
|
276
314
|
]
|
|
277
315
|
},
|
|
@@ -678,44 +716,6 @@
|
|
|
678
716
|
}
|
|
679
717
|
]
|
|
680
718
|
},
|
|
681
|
-
{
|
|
682
|
-
"name": "bm-badge-dot",
|
|
683
|
-
"description": "`bm-badge-dot`\n\n### Attributes:\n- **theme** - Specify the theme of the BadgeDot. By default it inherits the theme from the parent\n- **appearance** - Specify the appearance of the BadgeDot\n- **emphasis** - Specify the emphasis of the BadgeDot\n- **overrideDotColor** - Overrides default dot color\n---\n\n\n### **Slots:**\n - **default** - Provide text for the BadgeDot",
|
|
684
|
-
"attributes": [
|
|
685
|
-
{
|
|
686
|
-
"name": "theme",
|
|
687
|
-
"description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
|
|
688
|
-
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
689
|
-
},
|
|
690
|
-
{
|
|
691
|
-
"name": "appearance",
|
|
692
|
-
"description": "Specify the appearance of the BadgeDot",
|
|
693
|
-
"values": [
|
|
694
|
-
{ "name": "infoPrimary" },
|
|
695
|
-
{ "name": "infoSecondary" },
|
|
696
|
-
{ "name": "positive" },
|
|
697
|
-
{ "name": "warning" },
|
|
698
|
-
{ "name": "negative" }
|
|
699
|
-
]
|
|
700
|
-
},
|
|
701
|
-
{
|
|
702
|
-
"name": "emphasis",
|
|
703
|
-
"description": "Specify the emphasis of the BadgeDot",
|
|
704
|
-
"values": [{ "name": "strong" }, { "name": "subtle" }]
|
|
705
|
-
},
|
|
706
|
-
{
|
|
707
|
-
"name": "overrideDotColor",
|
|
708
|
-
"description": "Overrides default dot color",
|
|
709
|
-
"values": []
|
|
710
|
-
}
|
|
711
|
-
],
|
|
712
|
-
"references": [
|
|
713
|
-
{
|
|
714
|
-
"name": "Storybook",
|
|
715
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-badgedot"
|
|
716
|
-
}
|
|
717
|
-
]
|
|
718
|
-
},
|
|
719
719
|
{
|
|
720
720
|
"name": "bm-breadcrumb",
|
|
721
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",
|
|
@@ -2261,6 +2261,58 @@
|
|
|
2261
2261
|
}
|
|
2262
2262
|
]
|
|
2263
2263
|
},
|
|
2264
|
+
{
|
|
2265
|
+
"name": "bm-radio-button",
|
|
2266
|
+
"description": "`bm-radio-button`\n\n### Attributes:\n- **label** - Specify the text for the label\n- **error** - Specify error text and display error state of a RadioButton\n- **readOnly** - Specify if RadioButton displays in a read-only state\n- **disabled** - Specify if RadioButton displays in a disabled state\n- **theme** - Specify the theme of the RadioButton. By default it inherits the theme from the parent\n- **value** - The value attribute for the input element\n- **checked** - The checked attribute for the input element\n- **onKeyDown** - A user-defined function to handle keydown events\n---\n",
|
|
2267
|
+
"attributes": [
|
|
2268
|
+
{
|
|
2269
|
+
"name": "label",
|
|
2270
|
+
"description": "Specify the text for the label",
|
|
2271
|
+
"values": []
|
|
2272
|
+
},
|
|
2273
|
+
{
|
|
2274
|
+
"name": "error",
|
|
2275
|
+
"description": "Specify error text and display error state of a RadioButton",
|
|
2276
|
+
"values": []
|
|
2277
|
+
},
|
|
2278
|
+
{
|
|
2279
|
+
"name": "readOnly",
|
|
2280
|
+
"description": "Specify if RadioButton displays in a read-only state",
|
|
2281
|
+
"values": []
|
|
2282
|
+
},
|
|
2283
|
+
{
|
|
2284
|
+
"name": "disabled",
|
|
2285
|
+
"description": "Specify if RadioButton displays in a disabled state",
|
|
2286
|
+
"values": []
|
|
2287
|
+
},
|
|
2288
|
+
{
|
|
2289
|
+
"name": "theme",
|
|
2290
|
+
"description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
|
|
2291
|
+
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
2292
|
+
},
|
|
2293
|
+
{
|
|
2294
|
+
"name": "value",
|
|
2295
|
+
"description": "The value attribute for the input element",
|
|
2296
|
+
"values": []
|
|
2297
|
+
},
|
|
2298
|
+
{
|
|
2299
|
+
"name": "checked",
|
|
2300
|
+
"description": "The checked attribute for the input element",
|
|
2301
|
+
"values": []
|
|
2302
|
+
},
|
|
2303
|
+
{
|
|
2304
|
+
"name": "onKeyDown",
|
|
2305
|
+
"description": "A user-defined function to handle keydown events",
|
|
2306
|
+
"values": [{ "name": "(event: KeyboardEvent) => void" }]
|
|
2307
|
+
}
|
|
2308
|
+
],
|
|
2309
|
+
"references": [
|
|
2310
|
+
{
|
|
2311
|
+
"name": "Storybook",
|
|
2312
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-radiobutton"
|
|
2313
|
+
}
|
|
2314
|
+
]
|
|
2315
|
+
},
|
|
2264
2316
|
{
|
|
2265
2317
|
"name": "bm-native-select",
|
|
2266
2318
|
"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",
|
|
@@ -2331,58 +2383,6 @@
|
|
|
2331
2383
|
}
|
|
2332
2384
|
]
|
|
2333
2385
|
},
|
|
2334
|
-
{
|
|
2335
|
-
"name": "bm-radio-button",
|
|
2336
|
-
"description": "`bm-radio-button`\n\n### Attributes:\n- **label** - Specify the text for the label\n- **error** - Specify error text and display error state of a RadioButton\n- **readOnly** - Specify if RadioButton displays in a read-only state\n- **disabled** - Specify if RadioButton displays in a disabled state\n- **theme** - Specify the theme of the RadioButton. By default it inherits the theme from the parent\n- **value** - The value attribute for the input element\n- **checked** - The checked attribute for the input element\n- **onKeyDown** - A user-defined function to handle keydown events\n---\n",
|
|
2337
|
-
"attributes": [
|
|
2338
|
-
{
|
|
2339
|
-
"name": "label",
|
|
2340
|
-
"description": "Specify the text for the label",
|
|
2341
|
-
"values": []
|
|
2342
|
-
},
|
|
2343
|
-
{
|
|
2344
|
-
"name": "error",
|
|
2345
|
-
"description": "Specify error text and display error state of a RadioButton",
|
|
2346
|
-
"values": []
|
|
2347
|
-
},
|
|
2348
|
-
{
|
|
2349
|
-
"name": "readOnly",
|
|
2350
|
-
"description": "Specify if RadioButton displays in a read-only state",
|
|
2351
|
-
"values": []
|
|
2352
|
-
},
|
|
2353
|
-
{
|
|
2354
|
-
"name": "disabled",
|
|
2355
|
-
"description": "Specify if RadioButton displays in a disabled state",
|
|
2356
|
-
"values": []
|
|
2357
|
-
},
|
|
2358
|
-
{
|
|
2359
|
-
"name": "theme",
|
|
2360
|
-
"description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
|
|
2361
|
-
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
2362
|
-
},
|
|
2363
|
-
{
|
|
2364
|
-
"name": "value",
|
|
2365
|
-
"description": "The value attribute for the input element",
|
|
2366
|
-
"values": []
|
|
2367
|
-
},
|
|
2368
|
-
{
|
|
2369
|
-
"name": "checked",
|
|
2370
|
-
"description": "The checked attribute for the input element",
|
|
2371
|
-
"values": []
|
|
2372
|
-
},
|
|
2373
|
-
{
|
|
2374
|
-
"name": "onKeyDown",
|
|
2375
|
-
"description": "A user-defined function to handle keydown events",
|
|
2376
|
-
"values": [{ "name": "(event: KeyboardEvent) => void" }]
|
|
2377
|
-
}
|
|
2378
|
-
],
|
|
2379
|
-
"references": [
|
|
2380
|
-
{
|
|
2381
|
-
"name": "Storybook",
|
|
2382
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-radiobutton"
|
|
2383
|
-
}
|
|
2384
|
-
]
|
|
2385
|
-
},
|
|
2386
2386
|
{
|
|
2387
2387
|
"name": "bm-switch",
|
|
2388
2388
|
"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.",
|