@m3e/react 2.5.12 → 2.5.14
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/dist/all.js +162 -113
- package/dist/all.js.map +1 -1
- package/dist/all.min.js +6 -1
- package/dist/all.min.js.map +1 -1
- package/package.json +2 -2
package/dist/all.js
CHANGED
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
* See LICENSE file in the project root for full license text.
|
|
5
5
|
*/
|
|
6
6
|
import React from 'react';
|
|
7
|
-
import { createComponent } from '@lit/react';
|
|
8
7
|
import { M3eAppBarElement } from '@m3e/web/app-bar';
|
|
9
8
|
import { M3eAutocompleteElement } from '@m3e/web/autocomplete';
|
|
10
9
|
import { M3eAvatarElement } from '@m3e/web/avatar';
|
|
@@ -60,6 +59,56 @@ import { M3eToolbarElement } from '@m3e/web/toolbar';
|
|
|
60
59
|
import { M3eRichTooltipElement, M3eRichTooltipActionElement, M3eTooltipElement } from '@m3e/web/tooltip';
|
|
61
60
|
import { M3eTreeElement, M3eTreeItemElement } from '@m3e/web/tree';
|
|
62
61
|
|
|
62
|
+
/**
|
|
63
|
+
* @license
|
|
64
|
+
* Copyright 2018 Google LLC
|
|
65
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
66
|
+
*/
|
|
67
|
+
const e = new Set(["children", "localName", "ref", "style", "className"]),
|
|
68
|
+
n = new WeakMap(),
|
|
69
|
+
t = (e, t, o, l, a) => {
|
|
70
|
+
const s = a?.[t];
|
|
71
|
+
void 0 === s ? (e[t] = o, null == o && t in HTMLElement.prototype && e.removeAttribute(t)) : o !== l && ((e, t, o) => {
|
|
72
|
+
let l = n.get(e);
|
|
73
|
+
void 0 === l && n.set(e, l = new Map());
|
|
74
|
+
let a = l.get(t);
|
|
75
|
+
void 0 !== o ? void 0 === a ? (l.set(t, a = {
|
|
76
|
+
handleEvent: o
|
|
77
|
+
}), e.addEventListener(t, a)) : a.handleEvent = o : void 0 !== a && (l.delete(t), e.removeEventListener(t, a));
|
|
78
|
+
})(e, s, o);
|
|
79
|
+
},
|
|
80
|
+
o = ({
|
|
81
|
+
react: n,
|
|
82
|
+
tagName: o,
|
|
83
|
+
elementClass: l,
|
|
84
|
+
events: a,
|
|
85
|
+
displayName: s
|
|
86
|
+
}) => {
|
|
87
|
+
const c = new Set(Object.keys(a ?? {})),
|
|
88
|
+
r = n.forwardRef((s, r) => {
|
|
89
|
+
const i = n.useRef(new Map()),
|
|
90
|
+
d = n.useRef(null),
|
|
91
|
+
f = {},
|
|
92
|
+
u = {};
|
|
93
|
+
for (const [n, t] of Object.entries(s)) e.has(n) ? f["className" === n ? "class" : n] = t : c.has(n) || n in l.prototype ? u[n] = t : f[n] = t;
|
|
94
|
+
return n.useLayoutEffect(() => {
|
|
95
|
+
if (null === d.current) return;
|
|
96
|
+
const e = new Map();
|
|
97
|
+
for (const n in u) t(d.current, n, s[n], i.current.get(n), a), i.current.delete(n), e.set(n, s[n]);
|
|
98
|
+
for (const [e, n] of i.current) t(d.current, e, void 0, n, a);
|
|
99
|
+
i.current = e;
|
|
100
|
+
}), n.useLayoutEffect(() => {
|
|
101
|
+
d.current?.removeAttribute("defer-hydration");
|
|
102
|
+
}, []), f.suppressHydrationWarning = true, n.createElement(o, {
|
|
103
|
+
...f,
|
|
104
|
+
ref: n.useCallback(e => {
|
|
105
|
+
d.current = e, "function" == typeof r ? r(e) : null !== r && (r.current = e);
|
|
106
|
+
}, [r])
|
|
107
|
+
});
|
|
108
|
+
});
|
|
109
|
+
return r.displayName = s ?? l.name, r;
|
|
110
|
+
};
|
|
111
|
+
|
|
63
112
|
/**
|
|
64
113
|
* React binding for the `m3e-app-bar` Web Component from `@m3e/web/app-bar`.
|
|
65
114
|
*
|
|
@@ -73,7 +122,7 @@ import { M3eTreeElement, M3eTreeItemElement } from '@m3e/web/tree';
|
|
|
73
122
|
* See the `m3e-app-bar` documentation for full details on behavior,
|
|
74
123
|
* styling, accessibility, and supported events.
|
|
75
124
|
*/
|
|
76
|
-
const M3eAppBar =
|
|
125
|
+
const M3eAppBar = o({
|
|
77
126
|
tagName: "m3e-app-bar",
|
|
78
127
|
elementClass: M3eAppBarElement,
|
|
79
128
|
react: React
|
|
@@ -92,7 +141,7 @@ const M3eAppBar = createComponent({
|
|
|
92
141
|
* See the `m3e-autocomplete` documentation for full details on behavior,
|
|
93
142
|
* styling, accessibility, and supported events.
|
|
94
143
|
*/
|
|
95
|
-
const M3eAutocomplete =
|
|
144
|
+
const M3eAutocomplete = o({
|
|
96
145
|
tagName: "m3e-autocomplete",
|
|
97
146
|
elementClass: M3eAutocompleteElement,
|
|
98
147
|
react: React,
|
|
@@ -116,7 +165,7 @@ const M3eAutocomplete = createComponent({
|
|
|
116
165
|
* See the `m3e-avatar` documentation for full details on behavior,
|
|
117
166
|
* styling, accessibility, and supported events.
|
|
118
167
|
*/
|
|
119
|
-
const M3eAvatar =
|
|
168
|
+
const M3eAvatar = o({
|
|
120
169
|
tagName: "m3e-avatar",
|
|
121
170
|
elementClass: M3eAvatarElement,
|
|
122
171
|
react: React
|
|
@@ -135,7 +184,7 @@ const M3eAvatar = createComponent({
|
|
|
135
184
|
* See the `m3e-badge` documentation for full details on behavior,
|
|
136
185
|
* styling, accessibility, and supported events.
|
|
137
186
|
*/
|
|
138
|
-
const M3eBadge =
|
|
187
|
+
const M3eBadge = o({
|
|
139
188
|
tagName: "m3e-badge",
|
|
140
189
|
elementClass: M3eBadgeElement,
|
|
141
190
|
react: React
|
|
@@ -154,7 +203,7 @@ const M3eBadge = createComponent({
|
|
|
154
203
|
* See the `m3e-bottom-sheet` documentation for full details on behavior, styling,
|
|
155
204
|
* accessibility, and supported events.
|
|
156
205
|
*/
|
|
157
|
-
const M3eBottomSheet =
|
|
206
|
+
const M3eBottomSheet = o({
|
|
158
207
|
tagName: "m3e-bottom-sheet",
|
|
159
208
|
elementClass: M3eBottomSheetElement,
|
|
160
209
|
react: React,
|
|
@@ -180,7 +229,7 @@ const M3eBottomSheet = createComponent({
|
|
|
180
229
|
* See the `m3e-bottom-sheet-action` documentation for full details on behavior, styling,
|
|
181
230
|
* accessibility, and supported events.
|
|
182
231
|
*/
|
|
183
|
-
const M3eBottomSheetAction =
|
|
232
|
+
const M3eBottomSheetAction = o({
|
|
184
233
|
tagName: "m3e-bottom-sheet-action",
|
|
185
234
|
elementClass: M3eBottomSheetActionElement,
|
|
186
235
|
react: React
|
|
@@ -199,7 +248,7 @@ const M3eBottomSheetAction = createComponent({
|
|
|
199
248
|
* See the `m3e-bottom-sheet-trigger` documentation for full details on behavior, styling,
|
|
200
249
|
* accessibility, and supported events.
|
|
201
250
|
*/
|
|
202
|
-
const M3eBottomSheetTrigger =
|
|
251
|
+
const M3eBottomSheetTrigger = o({
|
|
203
252
|
tagName: "m3e-bottom-sheet-trigger",
|
|
204
253
|
elementClass: M3eBottomSheetTriggerElement,
|
|
205
254
|
react: React
|
|
@@ -218,7 +267,7 @@ const M3eBottomSheetTrigger = createComponent({
|
|
|
218
267
|
* See the `m3e-breadcrumb` documentation for full details on behavior,
|
|
219
268
|
* styling, accessibility, and supported events.
|
|
220
269
|
*/
|
|
221
|
-
const M3eBreadcrumb =
|
|
270
|
+
const M3eBreadcrumb = o({
|
|
222
271
|
tagName: "m3e-breadcrumb",
|
|
223
272
|
elementClass: M3eBreadcrumbElement,
|
|
224
273
|
react: React
|
|
@@ -237,7 +286,7 @@ const M3eBreadcrumb = createComponent({
|
|
|
237
286
|
* See the `m3e-breadcrumb-item` documentation for full details on behavior,
|
|
238
287
|
* styling, accessibility, and supported events.
|
|
239
288
|
*/
|
|
240
|
-
const M3eBreadcrumbItem =
|
|
289
|
+
const M3eBreadcrumbItem = o({
|
|
241
290
|
tagName: "m3e-breadcrumb-item",
|
|
242
291
|
elementClass: M3eBreadcrumbItemElement,
|
|
243
292
|
react: React,
|
|
@@ -259,7 +308,7 @@ const M3eBreadcrumbItem = createComponent({
|
|
|
259
308
|
* See the `m3e-button` documentation for full details on behavior,
|
|
260
309
|
* styling, accessibility, and supported events.
|
|
261
310
|
*/
|
|
262
|
-
const M3eButton =
|
|
311
|
+
const M3eButton = o({
|
|
263
312
|
tagName: "m3e-button",
|
|
264
313
|
elementClass: M3eButtonElement,
|
|
265
314
|
react: React,
|
|
@@ -284,7 +333,7 @@ const M3eButton = createComponent({
|
|
|
284
333
|
* See the `m3e-button-group` documentation for full details on behavior,
|
|
285
334
|
* styling, accessibility, and supported events.
|
|
286
335
|
*/
|
|
287
|
-
const M3eButtonGroup =
|
|
336
|
+
const M3eButtonGroup = o({
|
|
288
337
|
tagName: "m3e-button-group",
|
|
289
338
|
elementClass: M3eButtonGroupElement,
|
|
290
339
|
react: React
|
|
@@ -303,7 +352,7 @@ const M3eButtonGroup = createComponent({
|
|
|
303
352
|
* See the `m3e-calendar` documentation for full details on behavior,
|
|
304
353
|
* styling, accessibility, and supported events.
|
|
305
354
|
*/
|
|
306
|
-
const M3eCalendar =
|
|
355
|
+
const M3eCalendar = o({
|
|
307
356
|
tagName: "m3e-calendar",
|
|
308
357
|
elementClass: M3eCalendarElement,
|
|
309
358
|
react: React,
|
|
@@ -325,7 +374,7 @@ const M3eCalendar = createComponent({
|
|
|
325
374
|
* See the `m3e-card` documentation for full details on behavior,
|
|
326
375
|
* styling, accessibility, and supported events.
|
|
327
376
|
*/
|
|
328
|
-
const M3eCard =
|
|
377
|
+
const M3eCard = o({
|
|
329
378
|
tagName: "m3e-card",
|
|
330
379
|
elementClass: M3eCardElement,
|
|
331
380
|
react: React,
|
|
@@ -347,7 +396,7 @@ const M3eCard = createComponent({
|
|
|
347
396
|
* See the `m3e-checkbox` documentation for full details on behavior,
|
|
348
397
|
* styling, accessibility, and supported events.
|
|
349
398
|
*/
|
|
350
|
-
const M3eCheckbox =
|
|
399
|
+
const M3eCheckbox = o({
|
|
351
400
|
tagName: "m3e-checkbox",
|
|
352
401
|
elementClass: M3eCheckboxElement,
|
|
353
402
|
react: React,
|
|
@@ -373,7 +422,7 @@ const M3eCheckbox = createComponent({
|
|
|
373
422
|
* See the `m3e-assist-chip` documentation for full details on behavior, styling,
|
|
374
423
|
* accessibility, and supported events.
|
|
375
424
|
*/
|
|
376
|
-
const M3eAssistChip =
|
|
425
|
+
const M3eAssistChip = o({
|
|
377
426
|
tagName: "m3e-assist-chip",
|
|
378
427
|
elementClass: M3eAssistChipElement,
|
|
379
428
|
react: React,
|
|
@@ -395,7 +444,7 @@ const M3eAssistChip = createComponent({
|
|
|
395
444
|
* See the `m3e-chip` documentation for full details on behavior, styling,
|
|
396
445
|
* accessibility, and supported events.
|
|
397
446
|
*/
|
|
398
|
-
const M3eChip =
|
|
447
|
+
const M3eChip = o({
|
|
399
448
|
tagName: "m3e-chip",
|
|
400
449
|
elementClass: M3eChipElement,
|
|
401
450
|
react: React
|
|
@@ -414,7 +463,7 @@ const M3eChip = createComponent({
|
|
|
414
463
|
* See the `m3e-chip-set` documentation for full details on behavior, styling,
|
|
415
464
|
* accessibility, and supported events.
|
|
416
465
|
*/
|
|
417
|
-
const M3eChipSet =
|
|
466
|
+
const M3eChipSet = o({
|
|
418
467
|
tagName: "m3e-chip-set",
|
|
419
468
|
elementClass: M3eChipSetElement,
|
|
420
469
|
react: React
|
|
@@ -433,7 +482,7 @@ const M3eChipSet = createComponent({
|
|
|
433
482
|
* See the `m3e-filter-chip` documentation for full details on behavior, styling,
|
|
434
483
|
* accessibility, and supported events.
|
|
435
484
|
*/
|
|
436
|
-
const M3eFilterChip =
|
|
485
|
+
const M3eFilterChip = o({
|
|
437
486
|
tagName: "m3e-filter-chip",
|
|
438
487
|
elementClass: M3eFilterChipElement,
|
|
439
488
|
react: React,
|
|
@@ -458,7 +507,7 @@ const M3eFilterChip = createComponent({
|
|
|
458
507
|
* See the `m3e-filter-chip-set` documentation for full details on behavior, styling,
|
|
459
508
|
* accessibility, and supported events.
|
|
460
509
|
*/
|
|
461
|
-
const M3eFilterChipSet =
|
|
510
|
+
const M3eFilterChipSet = o({
|
|
462
511
|
tagName: "m3e-filter-chip-set",
|
|
463
512
|
elementClass: M3eFilterChipSetElement,
|
|
464
513
|
react: React,
|
|
@@ -482,7 +531,7 @@ const M3eFilterChipSet = createComponent({
|
|
|
482
531
|
* See the `m3e-input-chip` documentation for full details on behavior, styling,
|
|
483
532
|
* accessibility, and supported events.
|
|
484
533
|
*/
|
|
485
|
-
const M3eInputChip =
|
|
534
|
+
const M3eInputChip = o({
|
|
486
535
|
tagName: "m3e-input-chip",
|
|
487
536
|
elementClass: M3eInputChipElement,
|
|
488
537
|
react: React,
|
|
@@ -505,7 +554,7 @@ const M3eInputChip = createComponent({
|
|
|
505
554
|
* See the `m3e-input-chip-set` documentation for full details on behavior, styling,
|
|
506
555
|
* accessibility, and supported events.
|
|
507
556
|
*/
|
|
508
|
-
const M3eInputChipSet =
|
|
557
|
+
const M3eInputChipSet = o({
|
|
509
558
|
tagName: "m3e-input-chip-set",
|
|
510
559
|
elementClass: M3eInputChipSetElement,
|
|
511
560
|
react: React,
|
|
@@ -527,7 +576,7 @@ const M3eInputChipSet = createComponent({
|
|
|
527
576
|
* See the `m3e-suggestion-chip` documentation for full details on behavior, styling,
|
|
528
577
|
* accessibility, and supported events.
|
|
529
578
|
*/
|
|
530
|
-
const M3eSuggestionChip =
|
|
579
|
+
const M3eSuggestionChip = o({
|
|
531
580
|
tagName: "m3e-suggestion-chip",
|
|
532
581
|
elementClass: M3eSuggestionChipElement,
|
|
533
582
|
react: React,
|
|
@@ -549,7 +598,7 @@ const M3eSuggestionChip = createComponent({
|
|
|
549
598
|
* See the `m3e-content-pane` documentation for full details on behavior,
|
|
550
599
|
* styling, accessibility, and supported events.
|
|
551
600
|
*/
|
|
552
|
-
const M3eContentPane =
|
|
601
|
+
const M3eContentPane = o({
|
|
553
602
|
tagName: "m3e-content-pane",
|
|
554
603
|
elementClass: M3eContentPaneElement,
|
|
555
604
|
react: React
|
|
@@ -568,7 +617,7 @@ const M3eContentPane = createComponent({
|
|
|
568
617
|
* See the `m3e-collapsible` documentation for full details on behavior, styling,
|
|
569
618
|
* accessibility, and supported events.
|
|
570
619
|
*/
|
|
571
|
-
const M3eCollapsible =
|
|
620
|
+
const M3eCollapsible = o({
|
|
572
621
|
tagName: "m3e-collapsible",
|
|
573
622
|
elementClass: M3eCollapsibleElement,
|
|
574
623
|
react: React,
|
|
@@ -593,7 +642,7 @@ const M3eCollapsible = createComponent({
|
|
|
593
642
|
* See the `m3e-elevation` documentation for full details on behavior, styling,
|
|
594
643
|
* accessibility, and supported events.
|
|
595
644
|
*/
|
|
596
|
-
const M3eElevation =
|
|
645
|
+
const M3eElevation = o({
|
|
597
646
|
tagName: "m3e-elevation",
|
|
598
647
|
elementClass: M3eElevationElement,
|
|
599
648
|
react: React
|
|
@@ -612,7 +661,7 @@ const M3eElevation = createComponent({
|
|
|
612
661
|
* See the `m3e-focus-ring` documentation for full details on behavior, styling,
|
|
613
662
|
* accessibility, and supported events.
|
|
614
663
|
*/
|
|
615
|
-
const M3eFocusRing =
|
|
664
|
+
const M3eFocusRing = o({
|
|
616
665
|
tagName: "m3e-focus-ring",
|
|
617
666
|
elementClass: M3eFocusRingElement,
|
|
618
667
|
react: React
|
|
@@ -631,7 +680,7 @@ const M3eFocusRing = createComponent({
|
|
|
631
680
|
* See the `m3e-pseudo-checkbox` documentation for full details on behavior, styling,
|
|
632
681
|
* accessibility, and supported events.
|
|
633
682
|
*/
|
|
634
|
-
const M3ePseudoCheckbox =
|
|
683
|
+
const M3ePseudoCheckbox = o({
|
|
635
684
|
tagName: "m3e-pseudo-checkbox",
|
|
636
685
|
elementClass: M3ePseudoCheckboxElement,
|
|
637
686
|
react: React
|
|
@@ -650,7 +699,7 @@ const M3ePseudoCheckbox = createComponent({
|
|
|
650
699
|
* See the `m3e-pseudo-radio` documentation for full details on behavior, styling,
|
|
651
700
|
* accessibility, and supported events.
|
|
652
701
|
*/
|
|
653
|
-
const M3ePseudoRadio =
|
|
702
|
+
const M3ePseudoRadio = o({
|
|
654
703
|
tagName: "m3e-pseudo-radio",
|
|
655
704
|
elementClass: M3ePseudoRadioElement,
|
|
656
705
|
react: React
|
|
@@ -669,7 +718,7 @@ const M3ePseudoRadio = createComponent({
|
|
|
669
718
|
* See the `m3e-ripple` documentation for full details on behavior, styling,
|
|
670
719
|
* accessibility, and supported events.
|
|
671
720
|
*/
|
|
672
|
-
const M3eRipple =
|
|
721
|
+
const M3eRipple = o({
|
|
673
722
|
tagName: "m3e-ripple",
|
|
674
723
|
elementClass: M3eRippleElement,
|
|
675
724
|
react: React
|
|
@@ -688,7 +737,7 @@ const M3eRipple = createComponent({
|
|
|
688
737
|
* See the `m3e-scroll-container` documentation for full details on behavior, styling,
|
|
689
738
|
* accessibility, and supported events.
|
|
690
739
|
*/
|
|
691
|
-
const M3eScrollContainer =
|
|
740
|
+
const M3eScrollContainer = o({
|
|
692
741
|
tagName: "m3e-scroll-container",
|
|
693
742
|
elementClass: M3eScrollContainerElement,
|
|
694
743
|
react: React
|
|
@@ -707,7 +756,7 @@ const M3eScrollContainer = createComponent({
|
|
|
707
756
|
* See the `m3e-slide` documentation for full details on behavior, styling,
|
|
708
757
|
* accessibility, and supported events.
|
|
709
758
|
*/
|
|
710
|
-
const M3eSlide =
|
|
759
|
+
const M3eSlide = o({
|
|
711
760
|
tagName: "m3e-slide",
|
|
712
761
|
elementClass: M3eSlideElement,
|
|
713
762
|
react: React
|
|
@@ -726,7 +775,7 @@ const M3eSlide = createComponent({
|
|
|
726
775
|
* See the `m3e-state-layer` documentation for full details on behavior, styling,
|
|
727
776
|
* accessibility, and supported events.
|
|
728
777
|
*/
|
|
729
|
-
const M3eStateLayer =
|
|
778
|
+
const M3eStateLayer = o({
|
|
730
779
|
tagName: "m3e-state-layer",
|
|
731
780
|
elementClass: M3eStateLayerElement,
|
|
732
781
|
react: React
|
|
@@ -745,7 +794,7 @@ const M3eStateLayer = createComponent({
|
|
|
745
794
|
* See the `m3e-text-highlight` documentation for full details on behavior, styling,
|
|
746
795
|
* accessibility, and supported events.
|
|
747
796
|
*/
|
|
748
|
-
const M3eTextHighlight =
|
|
797
|
+
const M3eTextHighlight = o({
|
|
749
798
|
tagName: "m3e-text-highlight",
|
|
750
799
|
elementClass: M3eTextHighlightElement,
|
|
751
800
|
react: React
|
|
@@ -764,7 +813,7 @@ const M3eTextHighlight = createComponent({
|
|
|
764
813
|
* See the `m3e-text-overflow` documentation for full details on behavior, styling,
|
|
765
814
|
* accessibility, and supported events.
|
|
766
815
|
*/
|
|
767
|
-
const M3eTextOverflow =
|
|
816
|
+
const M3eTextOverflow = o({
|
|
768
817
|
tagName: "m3e-text-overflow",
|
|
769
818
|
elementClass: M3eTextOverflowElement,
|
|
770
819
|
react: React
|
|
@@ -783,7 +832,7 @@ const M3eTextOverflow = createComponent({
|
|
|
783
832
|
* See the `m3e-datepicker` documentation for full details on behavior,
|
|
784
833
|
* styling, accessibility, and supported events.
|
|
785
834
|
*/
|
|
786
|
-
const M3eDatepicker =
|
|
835
|
+
const M3eDatepicker = o({
|
|
787
836
|
tagName: "m3e-datepicker",
|
|
788
837
|
elementClass: M3eDatepickerElement,
|
|
789
838
|
react: React,
|
|
@@ -805,7 +854,7 @@ const M3eDatepicker = createComponent({
|
|
|
805
854
|
* See the `m3e-datepicker-toggle` for full details on behavior,
|
|
806
855
|
* styling, accessibility, and supported events.
|
|
807
856
|
*/
|
|
808
|
-
const M3eDatepickerToggle =
|
|
857
|
+
const M3eDatepickerToggle = o({
|
|
809
858
|
tagName: "m3e-datepicker-toggle",
|
|
810
859
|
elementClass: M3eDatepickerToggleElement,
|
|
811
860
|
react: React
|
|
@@ -824,7 +873,7 @@ const M3eDatepickerToggle = createComponent({
|
|
|
824
873
|
* See the `m3e-dialog` documentation for full details on behavior,
|
|
825
874
|
* styling, accessibility, and supported events.
|
|
826
875
|
*/
|
|
827
|
-
const M3eDialog =
|
|
876
|
+
const M3eDialog = o({
|
|
828
877
|
tagName: "m3e-dialog",
|
|
829
878
|
elementClass: M3eDialogElement,
|
|
830
879
|
react: React,
|
|
@@ -850,7 +899,7 @@ const M3eDialog = createComponent({
|
|
|
850
899
|
* See the `m3e-dialog-action` documentation for full details on behavior, styling,
|
|
851
900
|
* accessibility, and supported events.
|
|
852
901
|
*/
|
|
853
|
-
const M3eDialogAction =
|
|
902
|
+
const M3eDialogAction = o({
|
|
854
903
|
tagName: "m3e-dialog-action",
|
|
855
904
|
elementClass: M3eDialogActionElement,
|
|
856
905
|
react: React
|
|
@@ -869,7 +918,7 @@ const M3eDialogAction = createComponent({
|
|
|
869
918
|
* See the `m3e-dialog-trigger` documentation for full details on behavior, styling,
|
|
870
919
|
* accessibility, and supported events.
|
|
871
920
|
*/
|
|
872
|
-
const M3eDialogTrigger =
|
|
921
|
+
const M3eDialogTrigger = o({
|
|
873
922
|
tagName: "m3e-dialog-trigger",
|
|
874
923
|
elementClass: M3eDialogTriggerElement,
|
|
875
924
|
react: React
|
|
@@ -888,7 +937,7 @@ const M3eDialogTrigger = createComponent({
|
|
|
888
937
|
* See the `m3e-divider` documentation for full details on behavior,
|
|
889
938
|
* styling, accessibility, and supported events.
|
|
890
939
|
*/
|
|
891
|
-
const M3eDivider =
|
|
940
|
+
const M3eDivider = o({
|
|
892
941
|
tagName: "m3e-divider",
|
|
893
942
|
elementClass: M3eDividerElement,
|
|
894
943
|
react: React
|
|
@@ -907,7 +956,7 @@ const M3eDivider = createComponent({
|
|
|
907
956
|
* See the `m3e-drawer-container` documentation for full details on behavior,
|
|
908
957
|
* styling, accessibility, and supported events.
|
|
909
958
|
*/
|
|
910
|
-
const M3eDrawerContainer =
|
|
959
|
+
const M3eDrawerContainer = o({
|
|
911
960
|
tagName: "m3e-drawer-container",
|
|
912
961
|
elementClass: M3eDrawerContainerElement,
|
|
913
962
|
react: React,
|
|
@@ -929,7 +978,7 @@ const M3eDrawerContainer = createComponent({
|
|
|
929
978
|
* See the `m3e-drawer-toggle` documentation for full details on behavior, styling,
|
|
930
979
|
* accessibility, and supported events.
|
|
931
980
|
*/
|
|
932
|
-
const M3eDrawerToggle =
|
|
981
|
+
const M3eDrawerToggle = o({
|
|
933
982
|
tagName: "m3e-drawer-toggle",
|
|
934
983
|
elementClass: M3eDrawerToggleElement,
|
|
935
984
|
react: React
|
|
@@ -948,7 +997,7 @@ const M3eDrawerToggle = createComponent({
|
|
|
948
997
|
* See the `m3e-accordion` documentation for full details on behavior, styling,
|
|
949
998
|
* accessibility, and supported events.
|
|
950
999
|
*/
|
|
951
|
-
const M3eAccordion =
|
|
1000
|
+
const M3eAccordion = o({
|
|
952
1001
|
tagName: "m3e-accordion",
|
|
953
1002
|
elementClass: M3eAccordionElement,
|
|
954
1003
|
react: React
|
|
@@ -967,7 +1016,7 @@ const M3eAccordion = createComponent({
|
|
|
967
1016
|
* See the `m3e-expansion-panel` documentation for full details on behavior, styling,
|
|
968
1017
|
* accessibility, and supported events.
|
|
969
1018
|
*/
|
|
970
|
-
const M3eExpansionPanel =
|
|
1019
|
+
const M3eExpansionPanel = o({
|
|
971
1020
|
tagName: "m3e-expansion-panel",
|
|
972
1021
|
elementClass: M3eExpansionPanelElement,
|
|
973
1022
|
react: React,
|
|
@@ -992,7 +1041,7 @@ const M3eExpansionPanel = createComponent({
|
|
|
992
1041
|
* See the `m3e-fab` documentation for full details on behavior, styling,
|
|
993
1042
|
* accessibility, and supported events.
|
|
994
1043
|
*/
|
|
995
|
-
const M3eFab =
|
|
1044
|
+
const M3eFab = o({
|
|
996
1045
|
tagName: "m3e-fab",
|
|
997
1046
|
elementClass: M3eFabElement,
|
|
998
1047
|
react: React,
|
|
@@ -1014,7 +1063,7 @@ const M3eFab = createComponent({
|
|
|
1014
1063
|
* See the `m3e-fab-menu` documentation for full details on behavior, styling,
|
|
1015
1064
|
* accessibility, and supported events.
|
|
1016
1065
|
*/
|
|
1017
|
-
const M3eFabMenu =
|
|
1066
|
+
const M3eFabMenu = o({
|
|
1018
1067
|
tagName: "m3e-fab-menu",
|
|
1019
1068
|
elementClass: M3eFabMenuElement,
|
|
1020
1069
|
react: React,
|
|
@@ -1037,7 +1086,7 @@ const M3eFabMenu = createComponent({
|
|
|
1037
1086
|
* See the `m3e-fab-menu-item` documentation for full details on behavior, styling,
|
|
1038
1087
|
* accessibility, and supported events.
|
|
1039
1088
|
*/
|
|
1040
|
-
const M3eFabMenuItem =
|
|
1089
|
+
const M3eFabMenuItem = o({
|
|
1041
1090
|
tagName: "m3e-fab-menu-item",
|
|
1042
1091
|
elementClass: M3eFabMenuItemElement,
|
|
1043
1092
|
react: React,
|
|
@@ -1059,7 +1108,7 @@ const M3eFabMenuItem = createComponent({
|
|
|
1059
1108
|
* See the `m3e-fab-menu-trigger` documentation for full details on behavior, styling,
|
|
1060
1109
|
* accessibility, and supported events.
|
|
1061
1110
|
*/
|
|
1062
|
-
const M3eFabMenuTrigger =
|
|
1111
|
+
const M3eFabMenuTrigger = o({
|
|
1063
1112
|
tagName: "m3e-fab-menu-trigger",
|
|
1064
1113
|
elementClass: M3eFabMenuTriggerElement,
|
|
1065
1114
|
react: React
|
|
@@ -1078,7 +1127,7 @@ const M3eFabMenuTrigger = createComponent({
|
|
|
1078
1127
|
* See the `m3e-form-field` documentation for full details on behavior, styling,
|
|
1079
1128
|
* accessibility, and supported events.
|
|
1080
1129
|
*/
|
|
1081
|
-
const M3eFormField =
|
|
1130
|
+
const M3eFormField = o({
|
|
1082
1131
|
tagName: "m3e-form-field",
|
|
1083
1132
|
elementClass: M3eFormFieldElement,
|
|
1084
1133
|
react: React
|
|
@@ -1097,7 +1146,7 @@ const M3eFormField = createComponent({
|
|
|
1097
1146
|
* See the `m3e-heading` documentation for full details on behavior, styling,
|
|
1098
1147
|
* accessibility, and supported events.
|
|
1099
1148
|
*/
|
|
1100
|
-
const M3eHeading =
|
|
1149
|
+
const M3eHeading = o({
|
|
1101
1150
|
tagName: "m3e-heading",
|
|
1102
1151
|
elementClass: M3eHeadingElement,
|
|
1103
1152
|
react: React
|
|
@@ -1116,7 +1165,7 @@ const M3eHeading = createComponent({
|
|
|
1116
1165
|
* See the `m3e-icon` documentation for full details on behavior, styling,
|
|
1117
1166
|
* accessibility, and supported events.
|
|
1118
1167
|
*/
|
|
1119
|
-
const M3eIcon =
|
|
1168
|
+
const M3eIcon = o({
|
|
1120
1169
|
tagName: "m3e-icon",
|
|
1121
1170
|
elementClass: M3eIconElement,
|
|
1122
1171
|
react: React
|
|
@@ -1135,7 +1184,7 @@ const M3eIcon = createComponent({
|
|
|
1135
1184
|
* See the `m3e-icon-button` documentation for full details on behavior, styling,
|
|
1136
1185
|
* accessibility, and supported events.
|
|
1137
1186
|
*/
|
|
1138
|
-
const M3eIconButton =
|
|
1187
|
+
const M3eIconButton = o({
|
|
1139
1188
|
tagName: "m3e-icon-button",
|
|
1140
1189
|
elementClass: M3eIconButtonElement,
|
|
1141
1190
|
react: React,
|
|
@@ -1160,7 +1209,7 @@ const M3eIconButton = createComponent({
|
|
|
1160
1209
|
* See the `m3e-action-list` documentation for full details on behavior, styling,
|
|
1161
1210
|
* accessibility, and supported events.
|
|
1162
1211
|
*/
|
|
1163
|
-
const M3eActionList =
|
|
1212
|
+
const M3eActionList = o({
|
|
1164
1213
|
tagName: "m3e-action-list",
|
|
1165
1214
|
elementClass: M3eActionListElement,
|
|
1166
1215
|
react: React
|
|
@@ -1179,7 +1228,7 @@ const M3eActionList = createComponent({
|
|
|
1179
1228
|
* See the `m3e-expandable-list-item` documentation for full details on behavior, styling,
|
|
1180
1229
|
* accessibility, and supported events.
|
|
1181
1230
|
*/
|
|
1182
|
-
const M3eExpandableListItem =
|
|
1231
|
+
const M3eExpandableListItem = o({
|
|
1183
1232
|
tagName: "m3e-expandable-list-item",
|
|
1184
1233
|
elementClass: M3eExpandableListItemElement,
|
|
1185
1234
|
react: React,
|
|
@@ -1204,7 +1253,7 @@ const M3eExpandableListItem = createComponent({
|
|
|
1204
1253
|
* See the `m3e-list` documentation for full details on behavior, styling,
|
|
1205
1254
|
* accessibility, and supported events.
|
|
1206
1255
|
*/
|
|
1207
|
-
const M3eList =
|
|
1256
|
+
const M3eList = o({
|
|
1208
1257
|
tagName: "m3e-list",
|
|
1209
1258
|
elementClass: M3eListElement,
|
|
1210
1259
|
react: React
|
|
@@ -1223,7 +1272,7 @@ const M3eList = createComponent({
|
|
|
1223
1272
|
* See the `m3e-list-action` documentation for full details on behavior, styling,
|
|
1224
1273
|
* accessibility, and supported events.
|
|
1225
1274
|
*/
|
|
1226
|
-
const M3eListAction =
|
|
1275
|
+
const M3eListAction = o({
|
|
1227
1276
|
tagName: "m3e-list-action",
|
|
1228
1277
|
elementClass: M3eListActionElement,
|
|
1229
1278
|
react: React,
|
|
@@ -1245,7 +1294,7 @@ const M3eListAction = createComponent({
|
|
|
1245
1294
|
* See the `m3e-list-item` documentation for full details on behavior, styling,
|
|
1246
1295
|
* accessibility, and supported events.
|
|
1247
1296
|
*/
|
|
1248
|
-
const M3eListItem =
|
|
1297
|
+
const M3eListItem = o({
|
|
1249
1298
|
tagName: "m3e-list-item",
|
|
1250
1299
|
elementClass: M3eListItemElement,
|
|
1251
1300
|
react: React
|
|
@@ -1264,7 +1313,7 @@ const M3eListItem = createComponent({
|
|
|
1264
1313
|
* See the `m3e-list-option` documentation for full details on behavior, styling,
|
|
1265
1314
|
* accessibility, and supported events.
|
|
1266
1315
|
*/
|
|
1267
|
-
const M3eListOption =
|
|
1316
|
+
const M3eListOption = o({
|
|
1268
1317
|
tagName: "m3e-list-option",
|
|
1269
1318
|
elementClass: M3eListOptionElement,
|
|
1270
1319
|
react: React,
|
|
@@ -1289,7 +1338,7 @@ const M3eListOption = createComponent({
|
|
|
1289
1338
|
* See the `m3e-selection-list` documentation for full details on behavior, styling,
|
|
1290
1339
|
* accessibility, and supported events.
|
|
1291
1340
|
*/
|
|
1292
|
-
const M3eSelectionList =
|
|
1341
|
+
const M3eSelectionList = o({
|
|
1293
1342
|
tagName: "m3e-selection-list",
|
|
1294
1343
|
elementClass: M3eSelectionListElement,
|
|
1295
1344
|
react: React,
|
|
@@ -1313,7 +1362,7 @@ const M3eSelectionList = createComponent({
|
|
|
1313
1362
|
* See the `m3e-loading-indicator` documentation for full details on behavior, styling,
|
|
1314
1363
|
* accessibility, and supported events.
|
|
1315
1364
|
*/
|
|
1316
|
-
const M3eLoadingIndicator =
|
|
1365
|
+
const M3eLoadingIndicator = o({
|
|
1317
1366
|
tagName: "m3e-loading-indicator",
|
|
1318
1367
|
elementClass: M3eLoadingIndicatorElement,
|
|
1319
1368
|
react: React
|
|
@@ -1332,7 +1381,7 @@ const M3eLoadingIndicator = createComponent({
|
|
|
1332
1381
|
* See the `m3e-menu` documentation for full details on behavior, styling,
|
|
1333
1382
|
* accessibility, and supported events.
|
|
1334
1383
|
*/
|
|
1335
|
-
const M3eMenu =
|
|
1384
|
+
const M3eMenu = o({
|
|
1336
1385
|
tagName: "m3e-menu",
|
|
1337
1386
|
elementClass: M3eMenuElement,
|
|
1338
1387
|
react: React,
|
|
@@ -1355,7 +1404,7 @@ const M3eMenu = createComponent({
|
|
|
1355
1404
|
* See the `m3e-menu-item` documentation for full details on behavior, styling,
|
|
1356
1405
|
* accessibility, and supported events.
|
|
1357
1406
|
*/
|
|
1358
|
-
const M3eMenuItem =
|
|
1407
|
+
const M3eMenuItem = o({
|
|
1359
1408
|
tagName: "m3e-menu-item",
|
|
1360
1409
|
elementClass: M3eMenuItemElement,
|
|
1361
1410
|
react: React,
|
|
@@ -1377,7 +1426,7 @@ const M3eMenuItem = createComponent({
|
|
|
1377
1426
|
* See the `m3e-menu-item-checkbox` documentation for full details on behavior, styling,
|
|
1378
1427
|
* accessibility, and supported events.
|
|
1379
1428
|
*/
|
|
1380
|
-
const M3eMenuItemCheckbox =
|
|
1429
|
+
const M3eMenuItemCheckbox = o({
|
|
1381
1430
|
tagName: "m3e-menu-item-checkbox",
|
|
1382
1431
|
elementClass: M3eMenuItemCheckboxElement,
|
|
1383
1432
|
react: React,
|
|
@@ -1399,7 +1448,7 @@ const M3eMenuItemCheckbox = createComponent({
|
|
|
1399
1448
|
* See the `m3e-menu-item-group` documentation for full details on behavior, styling,
|
|
1400
1449
|
* accessibility, and supported events.
|
|
1401
1450
|
*/
|
|
1402
|
-
const M3eMenuItemGroup =
|
|
1451
|
+
const M3eMenuItemGroup = o({
|
|
1403
1452
|
tagName: "m3e-menu-item-group",
|
|
1404
1453
|
elementClass: M3eMenuItemGroupElement,
|
|
1405
1454
|
react: React
|
|
@@ -1418,7 +1467,7 @@ const M3eMenuItemGroup = createComponent({
|
|
|
1418
1467
|
* See the `m3e-menu-item-radio` documentation for full details on behavior, styling,
|
|
1419
1468
|
* accessibility, and supported events.
|
|
1420
1469
|
*/
|
|
1421
|
-
const M3eMenuItemRadio =
|
|
1470
|
+
const M3eMenuItemRadio = o({
|
|
1422
1471
|
tagName: "m3e-menu-item-radio",
|
|
1423
1472
|
elementClass: M3eMenuItemRadioElement,
|
|
1424
1473
|
react: React,
|
|
@@ -1440,7 +1489,7 @@ const M3eMenuItemRadio = createComponent({
|
|
|
1440
1489
|
* See the `m3e-menu-trigger` documentation for full details on behavior, styling,
|
|
1441
1490
|
* accessibility, and supported events.
|
|
1442
1491
|
*/
|
|
1443
|
-
const M3eMenuTrigger =
|
|
1492
|
+
const M3eMenuTrigger = o({
|
|
1444
1493
|
tagName: "m3e-menu-trigger",
|
|
1445
1494
|
elementClass: M3eMenuTriggerElement,
|
|
1446
1495
|
react: React
|
|
@@ -1459,7 +1508,7 @@ const M3eMenuTrigger = createComponent({
|
|
|
1459
1508
|
* See the `m3e-nav-bar` documentation for full details on behavior, styling,
|
|
1460
1509
|
* accessibility, and supported events.
|
|
1461
1510
|
*/
|
|
1462
|
-
const M3eNavBar =
|
|
1511
|
+
const M3eNavBar = o({
|
|
1463
1512
|
tagName: "m3e-nav-bar",
|
|
1464
1513
|
elementClass: M3eNavBarElement,
|
|
1465
1514
|
react: React,
|
|
@@ -1483,7 +1532,7 @@ const M3eNavBar = createComponent({
|
|
|
1483
1532
|
* See the `m3e-nav-item` documentation for full details on behavior, styling,
|
|
1484
1533
|
* accessibility, and supported events.
|
|
1485
1534
|
*/
|
|
1486
|
-
const M3eNavItem =
|
|
1535
|
+
const M3eNavItem = o({
|
|
1487
1536
|
tagName: "m3e-nav-item",
|
|
1488
1537
|
elementClass: M3eNavItemElement,
|
|
1489
1538
|
react: React,
|
|
@@ -1508,7 +1557,7 @@ const M3eNavItem = createComponent({
|
|
|
1508
1557
|
* See the `m3e-nav-menu` documentation for full details on behavior, styling,
|
|
1509
1558
|
* accessibility, and supported events.
|
|
1510
1559
|
*/
|
|
1511
|
-
const M3eNavMenu =
|
|
1560
|
+
const M3eNavMenu = o({
|
|
1512
1561
|
tagName: "m3e-nav-menu",
|
|
1513
1562
|
elementClass: M3eNavMenuElement,
|
|
1514
1563
|
react: React
|
|
@@ -1527,7 +1576,7 @@ const M3eNavMenu = createComponent({
|
|
|
1527
1576
|
* See the `m3e-nav-menu-item` documentation for full details on behavior, styling,
|
|
1528
1577
|
* accessibility, and supported events.
|
|
1529
1578
|
*/
|
|
1530
|
-
const M3eNavMenuItem =
|
|
1579
|
+
const M3eNavMenuItem = o({
|
|
1531
1580
|
tagName: "m3e-nav-menu-item",
|
|
1532
1581
|
elementClass: M3eNavMenuItemElement,
|
|
1533
1582
|
react: React,
|
|
@@ -1553,7 +1602,7 @@ const M3eNavMenuItem = createComponent({
|
|
|
1553
1602
|
* See the `m3e-nav-menu-item-group` documentation for full details on behavior, styling,
|
|
1554
1603
|
* accessibility, and supported events.
|
|
1555
1604
|
*/
|
|
1556
|
-
const M3eNavMenuItemGroup =
|
|
1605
|
+
const M3eNavMenuItemGroup = o({
|
|
1557
1606
|
tagName: "m3e-nav-menu-item-group",
|
|
1558
1607
|
elementClass: M3eNavMenuItemGroupElement,
|
|
1559
1608
|
react: React
|
|
@@ -1572,7 +1621,7 @@ const M3eNavMenuItemGroup = createComponent({
|
|
|
1572
1621
|
* See the `m3e-nav-rail` documentation for full details on behavior, styling,
|
|
1573
1622
|
* accessibility, and supported events.
|
|
1574
1623
|
*/
|
|
1575
|
-
const M3eNavRail =
|
|
1624
|
+
const M3eNavRail = o({
|
|
1576
1625
|
tagName: "m3e-nav-rail",
|
|
1577
1626
|
elementClass: M3eNavRailElement,
|
|
1578
1627
|
react: React,
|
|
@@ -1596,7 +1645,7 @@ const M3eNavRail = createComponent({
|
|
|
1596
1645
|
* See the `m3e-nav-rail-toggle` documentation for full details on behavior, styling,
|
|
1597
1646
|
* accessibility, and supported events.
|
|
1598
1647
|
*/
|
|
1599
|
-
const M3eNavRailToggle =
|
|
1648
|
+
const M3eNavRailToggle = o({
|
|
1600
1649
|
tagName: "m3e-nav-rail-toggle",
|
|
1601
1650
|
elementClass: M3eNavRailToggleElement,
|
|
1602
1651
|
react: React
|
|
@@ -1615,7 +1664,7 @@ const M3eNavRailToggle = createComponent({
|
|
|
1615
1664
|
* See the `m3e-option` documentation for full details on behavior, styling,
|
|
1616
1665
|
* accessibility, and supported events.
|
|
1617
1666
|
*/
|
|
1618
|
-
const M3eOption =
|
|
1667
|
+
const M3eOption = o({
|
|
1619
1668
|
tagName: "m3e-option",
|
|
1620
1669
|
elementClass: M3eOptionElement,
|
|
1621
1670
|
react: React
|
|
@@ -1634,7 +1683,7 @@ const M3eOption = createComponent({
|
|
|
1634
1683
|
* See the `m3e-optgroup` documentation for full details on behavior, styling,
|
|
1635
1684
|
* accessibility, and supported events.
|
|
1636
1685
|
*/
|
|
1637
|
-
const M3eOptGroup =
|
|
1686
|
+
const M3eOptGroup = o({
|
|
1638
1687
|
tagName: "m3e-optgroup",
|
|
1639
1688
|
elementClass: M3eOptGroupElement,
|
|
1640
1689
|
react: React
|
|
@@ -1653,7 +1702,7 @@ const M3eOptGroup = createComponent({
|
|
|
1653
1702
|
* See the `m3e-paginator` documentation for full details on behavior, styling,
|
|
1654
1703
|
* accessibility, and supported events.
|
|
1655
1704
|
*/
|
|
1656
|
-
const M3ePaginator =
|
|
1705
|
+
const M3ePaginator = o({
|
|
1657
1706
|
tagName: "m3e-paginator",
|
|
1658
1707
|
elementClass: M3ePaginatorElement,
|
|
1659
1708
|
react: React,
|
|
@@ -1675,7 +1724,7 @@ const M3ePaginator = createComponent({
|
|
|
1675
1724
|
* See the `m3e-circular-progress-indicator` documentation for full details on behavior, styling,
|
|
1676
1725
|
* accessibility, and supported events.
|
|
1677
1726
|
*/
|
|
1678
|
-
const M3eCircularProgressIndicator =
|
|
1727
|
+
const M3eCircularProgressIndicator = o({
|
|
1679
1728
|
tagName: "m3e-circular-progress-indicator",
|
|
1680
1729
|
elementClass: M3eCircularProgressIndicatorElement,
|
|
1681
1730
|
react: React
|
|
@@ -1694,7 +1743,7 @@ const M3eCircularProgressIndicator = createComponent({
|
|
|
1694
1743
|
* See the `m3e-linear-progress-indicator` documentation for full details on behavior, styling,
|
|
1695
1744
|
* accessibility, and supported events.
|
|
1696
1745
|
*/
|
|
1697
|
-
const M3eLinearProgressIndicator =
|
|
1746
|
+
const M3eLinearProgressIndicator = o({
|
|
1698
1747
|
tagName: "m3e-linear-progress-indicator",
|
|
1699
1748
|
elementClass: M3eLinearProgressIndicatorElement,
|
|
1700
1749
|
react: React
|
|
@@ -1713,7 +1762,7 @@ const M3eLinearProgressIndicator = createComponent({
|
|
|
1713
1762
|
* See the `m3e-radio` documentation for full details on behavior, styling,
|
|
1714
1763
|
* accessibility, and supported events.
|
|
1715
1764
|
*/
|
|
1716
|
-
const M3eRadio =
|
|
1765
|
+
const M3eRadio = o({
|
|
1717
1766
|
tagName: "m3e-radio",
|
|
1718
1767
|
elementClass: M3eRadioElement,
|
|
1719
1768
|
react: React,
|
|
@@ -1738,7 +1787,7 @@ const M3eRadio = createComponent({
|
|
|
1738
1787
|
* See the `m3e-radio-group` documentation for full details on behavior, styling,
|
|
1739
1788
|
* accessibility, and supported events.
|
|
1740
1789
|
*/
|
|
1741
|
-
const M3eRadioGroup =
|
|
1790
|
+
const M3eRadioGroup = o({
|
|
1742
1791
|
tagName: "m3e-radio-group",
|
|
1743
1792
|
elementClass: M3eRadioGroupElement,
|
|
1744
1793
|
react: React,
|
|
@@ -1762,7 +1811,7 @@ const M3eRadioGroup = createComponent({
|
|
|
1762
1811
|
* See the `m3e-search-bar` documentation for full details on behavior, styling,
|
|
1763
1812
|
* accessibility, and supported events.
|
|
1764
1813
|
*/
|
|
1765
|
-
const M3eSearchBar =
|
|
1814
|
+
const M3eSearchBar = o({
|
|
1766
1815
|
tagName: "m3e-search-bar",
|
|
1767
1816
|
elementClass: M3eSearchBarElement,
|
|
1768
1817
|
react: React,
|
|
@@ -1784,7 +1833,7 @@ const M3eSearchBar = createComponent({
|
|
|
1784
1833
|
* See the `m3e-search-view` documentation for full details on behavior, styling,
|
|
1785
1834
|
* accessibility, and supported events.
|
|
1786
1835
|
*/
|
|
1787
|
-
const M3eSearchView =
|
|
1836
|
+
const M3eSearchView = o({
|
|
1788
1837
|
tagName: "m3e-search-view",
|
|
1789
1838
|
elementClass: M3eSearchViewElement,
|
|
1790
1839
|
react: React,
|
|
@@ -1809,7 +1858,7 @@ const M3eSearchView = createComponent({
|
|
|
1809
1858
|
* See the `m3e-segmented-button` documentation for full details on behavior, styling,
|
|
1810
1859
|
* accessibility, and supported events.
|
|
1811
1860
|
*/
|
|
1812
|
-
const M3eSegmentedButton =
|
|
1861
|
+
const M3eSegmentedButton = o({
|
|
1813
1862
|
tagName: "m3e-segmented-button",
|
|
1814
1863
|
elementClass: M3eSegmentedButtonElement,
|
|
1815
1864
|
react: React,
|
|
@@ -1833,7 +1882,7 @@ const M3eSegmentedButton = createComponent({
|
|
|
1833
1882
|
* See the `m3e-button-segment` documentation for full details on behavior, styling,
|
|
1834
1883
|
* accessibility, and supported events.
|
|
1835
1884
|
*/
|
|
1836
|
-
const M3eButtonSegment =
|
|
1885
|
+
const M3eButtonSegment = o({
|
|
1837
1886
|
tagName: "m3e-button-segment",
|
|
1838
1887
|
elementClass: M3eButtonSegmentElement,
|
|
1839
1888
|
react: React,
|
|
@@ -1858,7 +1907,7 @@ const M3eButtonSegment = createComponent({
|
|
|
1858
1907
|
* See the `m3e-select` documentation for full details on behavior, styling,
|
|
1859
1908
|
* accessibility, and supported events.
|
|
1860
1909
|
*/
|
|
1861
|
-
const M3eSelect =
|
|
1910
|
+
const M3eSelect = o({
|
|
1862
1911
|
tagName: "m3e-select",
|
|
1863
1912
|
elementClass: M3eSelectElement,
|
|
1864
1913
|
react: React,
|
|
@@ -1882,7 +1931,7 @@ const M3eSelect = createComponent({
|
|
|
1882
1931
|
* See the `m3e-shape` documentation for full details on behavior, styling,
|
|
1883
1932
|
* accessibility, and supported events.
|
|
1884
1933
|
*/
|
|
1885
|
-
const M3eShape =
|
|
1934
|
+
const M3eShape = o({
|
|
1886
1935
|
tagName: "m3e-shape",
|
|
1887
1936
|
elementClass: M3eShapeElement,
|
|
1888
1937
|
react: React
|
|
@@ -1901,7 +1950,7 @@ const M3eShape = createComponent({
|
|
|
1901
1950
|
* See the `m3e-skeleton` documentation for full details on behavior, styling,
|
|
1902
1951
|
* accessibility, and supported events.
|
|
1903
1952
|
*/
|
|
1904
|
-
const M3eSkeleton =
|
|
1953
|
+
const M3eSkeleton = o({
|
|
1905
1954
|
tagName: "m3e-skeleton",
|
|
1906
1955
|
elementClass: M3eSkeletonElement,
|
|
1907
1956
|
react: React
|
|
@@ -1920,7 +1969,7 @@ const M3eSkeleton = createComponent({
|
|
|
1920
1969
|
* See the `m3e-slide-group` documentation for full details on behavior, styling,
|
|
1921
1970
|
* accessibility, and supported events.
|
|
1922
1971
|
*/
|
|
1923
|
-
const M3eSlideGroup =
|
|
1972
|
+
const M3eSlideGroup = o({
|
|
1924
1973
|
tagName: "m3e-slide-group",
|
|
1925
1974
|
elementClass: M3eSlideGroupElement,
|
|
1926
1975
|
react: React
|
|
@@ -1939,7 +1988,7 @@ const M3eSlideGroup = createComponent({
|
|
|
1939
1988
|
* See the `m3e-slider` documentation for full details on behavior, styling,
|
|
1940
1989
|
* accessibility, and supported events.
|
|
1941
1990
|
*/
|
|
1942
|
-
const M3eSlider =
|
|
1991
|
+
const M3eSlider = o({
|
|
1943
1992
|
tagName: "m3e-slider",
|
|
1944
1993
|
elementClass: M3eSliderElement,
|
|
1945
1994
|
react: React,
|
|
@@ -1963,7 +2012,7 @@ const M3eSlider = createComponent({
|
|
|
1963
2012
|
* See the `m3e-slider-thumb` documentation for full details on behavior, styling,
|
|
1964
2013
|
* accessibility, and supported events.
|
|
1965
2014
|
*/
|
|
1966
|
-
const M3eSliderThumb =
|
|
2015
|
+
const M3eSliderThumb = o({
|
|
1967
2016
|
tagName: "m3e-slider-thumb",
|
|
1968
2017
|
elementClass: M3eSliderThumbElement,
|
|
1969
2018
|
react: React,
|
|
@@ -1988,7 +2037,7 @@ const M3eSliderThumb = createComponent({
|
|
|
1988
2037
|
* See the `m3e-split-button` documentation for full details on behavior, styling,
|
|
1989
2038
|
* accessibility, and supported events.
|
|
1990
2039
|
*/
|
|
1991
|
-
const M3eSplitButton =
|
|
2040
|
+
const M3eSplitButton = o({
|
|
1992
2041
|
tagName: "m3e-split-button",
|
|
1993
2042
|
elementClass: M3eSplitButtonElement,
|
|
1994
2043
|
react: React
|
|
@@ -2007,7 +2056,7 @@ const M3eSplitButton = createComponent({
|
|
|
2007
2056
|
* See the `m3e-split-pane` documentation for full details on behavior, styling,
|
|
2008
2057
|
* accessibility, and supported events.
|
|
2009
2058
|
*/
|
|
2010
|
-
const M3eSplitPane =
|
|
2059
|
+
const M3eSplitPane = o({
|
|
2011
2060
|
tagName: "m3e-split-pane",
|
|
2012
2061
|
elementClass: M3eSplitPaneElement,
|
|
2013
2062
|
react: React,
|
|
@@ -2031,7 +2080,7 @@ const M3eSplitPane = createComponent({
|
|
|
2031
2080
|
* See the `m3e-step` documentation for full details on behavior, styling,
|
|
2032
2081
|
* accessibility, and supported events.
|
|
2033
2082
|
*/
|
|
2034
|
-
const M3eStep =
|
|
2083
|
+
const M3eStep = o({
|
|
2035
2084
|
tagName: "m3e-step",
|
|
2036
2085
|
elementClass: M3eStepElement,
|
|
2037
2086
|
react: React,
|
|
@@ -2056,7 +2105,7 @@ const M3eStep = createComponent({
|
|
|
2056
2105
|
* See the `m3e-step-panel` documentation for full details on behavior, styling,
|
|
2057
2106
|
* accessibility, and supported events.
|
|
2058
2107
|
*/
|
|
2059
|
-
const M3eStepPanel =
|
|
2108
|
+
const M3eStepPanel = o({
|
|
2060
2109
|
tagName: "m3e-step-panel",
|
|
2061
2110
|
elementClass: M3eStepPanelElement,
|
|
2062
2111
|
react: React
|
|
@@ -2075,7 +2124,7 @@ const M3eStepPanel = createComponent({
|
|
|
2075
2124
|
* See the `m3e-stepper` documentation for full details on behavior, styling,
|
|
2076
2125
|
* accessibility, and supported events.
|
|
2077
2126
|
*/
|
|
2078
|
-
const M3eStepper =
|
|
2127
|
+
const M3eStepper = o({
|
|
2079
2128
|
tagName: "m3e-stepper",
|
|
2080
2129
|
elementClass: M3eStepperElement,
|
|
2081
2130
|
react: React,
|
|
@@ -2099,7 +2148,7 @@ const M3eStepper = createComponent({
|
|
|
2099
2148
|
* See the `m3e-stepper-next` documentation for full details on behavior, styling,
|
|
2100
2149
|
* accessibility, and supported events.
|
|
2101
2150
|
*/
|
|
2102
|
-
const M3eStepperNext =
|
|
2151
|
+
const M3eStepperNext = o({
|
|
2103
2152
|
tagName: "m3e-stepper-next",
|
|
2104
2153
|
elementClass: M3eStepperNextElement,
|
|
2105
2154
|
react: React
|
|
@@ -2118,7 +2167,7 @@ const M3eStepperNext = createComponent({
|
|
|
2118
2167
|
* See the `m3e-stepper-previous` documentation for full details on behavior, styling,
|
|
2119
2168
|
* accessibility, and supported events.
|
|
2120
2169
|
*/
|
|
2121
|
-
const M3eStepperPrevious =
|
|
2170
|
+
const M3eStepperPrevious = o({
|
|
2122
2171
|
tagName: "m3e-stepper-previous",
|
|
2123
2172
|
elementClass: M3eStepperPreviousElement,
|
|
2124
2173
|
react: React
|
|
@@ -2137,7 +2186,7 @@ const M3eStepperPrevious = createComponent({
|
|
|
2137
2186
|
* See the `m3e-stepper-reset` documentation for full details on behavior, styling,
|
|
2138
2187
|
* accessibility, and supported events.
|
|
2139
2188
|
*/
|
|
2140
|
-
const M3eStepperReset =
|
|
2189
|
+
const M3eStepperReset = o({
|
|
2141
2190
|
tagName: "m3e-stepper-reset",
|
|
2142
2191
|
elementClass: M3eStepperResetElement,
|
|
2143
2192
|
react: React
|
|
@@ -2156,7 +2205,7 @@ const M3eStepperReset = createComponent({
|
|
|
2156
2205
|
* See the `m3e-switch` documentation for full details on behavior, styling,
|
|
2157
2206
|
* accessibility, and supported events.
|
|
2158
2207
|
*/
|
|
2159
|
-
const M3eSwitch =
|
|
2208
|
+
const M3eSwitch = o({
|
|
2160
2209
|
tagName: "m3e-switch",
|
|
2161
2210
|
elementClass: M3eSwitchElement,
|
|
2162
2211
|
react: React,
|
|
@@ -2181,7 +2230,7 @@ const M3eSwitch = createComponent({
|
|
|
2181
2230
|
* See the `m3e-tab` documentation for full details on behavior, styling,
|
|
2182
2231
|
* accessibility, and supported events.
|
|
2183
2232
|
*/
|
|
2184
|
-
const M3eTab =
|
|
2233
|
+
const M3eTab = o({
|
|
2185
2234
|
tagName: "m3e-tab",
|
|
2186
2235
|
elementClass: M3eTabElement,
|
|
2187
2236
|
react: React,
|
|
@@ -2206,7 +2255,7 @@ const M3eTab = createComponent({
|
|
|
2206
2255
|
* See the `m3e-tab-panel` documentation for full details on behavior, styling,
|
|
2207
2256
|
* accessibility, and supported events.
|
|
2208
2257
|
*/
|
|
2209
|
-
const M3eTabPanel =
|
|
2258
|
+
const M3eTabPanel = o({
|
|
2210
2259
|
tagName: "m3e-tab-panel",
|
|
2211
2260
|
elementClass: M3eTabPanelElement,
|
|
2212
2261
|
react: React
|
|
@@ -2225,7 +2274,7 @@ const M3eTabPanel = createComponent({
|
|
|
2225
2274
|
* See the `m3e-tabs` documentation for full details on behavior, styling,
|
|
2226
2275
|
* accessibility, and supported events.
|
|
2227
2276
|
*/
|
|
2228
|
-
const M3eTabs =
|
|
2277
|
+
const M3eTabs = o({
|
|
2229
2278
|
tagName: "m3e-tabs",
|
|
2230
2279
|
elementClass: M3eTabsElement,
|
|
2231
2280
|
react: React,
|
|
@@ -2249,7 +2298,7 @@ const M3eTabs = createComponent({
|
|
|
2249
2298
|
* See the `m3e-textarea-autosize` documentation for full details on behavior, styling,
|
|
2250
2299
|
* accessibility, and supported events.
|
|
2251
2300
|
*/
|
|
2252
|
-
const M3eTextareaAutosize =
|
|
2301
|
+
const M3eTextareaAutosize = o({
|
|
2253
2302
|
tagName: "m3e-textarea-autosize",
|
|
2254
2303
|
elementClass: M3eTextareaAutosizeElement,
|
|
2255
2304
|
react: React
|
|
@@ -2268,7 +2317,7 @@ const M3eTextareaAutosize = createComponent({
|
|
|
2268
2317
|
* See the `m3e-theme` documentation for full details on behavior, styling,
|
|
2269
2318
|
* accessibility, and supported events.
|
|
2270
2319
|
*/
|
|
2271
|
-
const M3eTheme =
|
|
2320
|
+
const M3eTheme = o({
|
|
2272
2321
|
tagName: "m3e-theme",
|
|
2273
2322
|
elementClass: M3eThemeElement,
|
|
2274
2323
|
react: React,
|
|
@@ -2290,7 +2339,7 @@ const M3eTheme = createComponent({
|
|
|
2290
2339
|
* See the `m3e-theme-icon` documentation for full details on behavior, styling,
|
|
2291
2340
|
* accessibility, and supported events.
|
|
2292
2341
|
*/
|
|
2293
|
-
const M3eThemeIcon =
|
|
2342
|
+
const M3eThemeIcon = o({
|
|
2294
2343
|
tagName: "m3e-theme-icon",
|
|
2295
2344
|
elementClass: M3eThemeIconElement,
|
|
2296
2345
|
react: React
|
|
@@ -2309,7 +2358,7 @@ const M3eThemeIcon = createComponent({
|
|
|
2309
2358
|
* See the `m3e-toc` documentation for full details on behavior, styling,
|
|
2310
2359
|
* accessibility, and supported events.
|
|
2311
2360
|
*/
|
|
2312
|
-
const M3eToc =
|
|
2361
|
+
const M3eToc = o({
|
|
2313
2362
|
tagName: "m3e-toc",
|
|
2314
2363
|
elementClass: M3eTocElement,
|
|
2315
2364
|
react: React
|
|
@@ -2328,7 +2377,7 @@ const M3eToc = createComponent({
|
|
|
2328
2377
|
* See the `m3e-toolbar` documentation for full details on behavior, styling,
|
|
2329
2378
|
* accessibility, and supported events.
|
|
2330
2379
|
*/
|
|
2331
|
-
const M3eToolbar =
|
|
2380
|
+
const M3eToolbar = o({
|
|
2332
2381
|
tagName: "m3e-toolbar",
|
|
2333
2382
|
elementClass: M3eToolbarElement,
|
|
2334
2383
|
react: React
|
|
@@ -2347,7 +2396,7 @@ const M3eToolbar = createComponent({
|
|
|
2347
2396
|
* See the `m3e-rich-tooltip` documentation for full details on behavior, styling,
|
|
2348
2397
|
* accessibility, and supported events.
|
|
2349
2398
|
*/
|
|
2350
|
-
const M3eRichTooltip =
|
|
2399
|
+
const M3eRichTooltip = o({
|
|
2351
2400
|
tagName: "m3e-rich-tooltip",
|
|
2352
2401
|
elementClass: M3eRichTooltipElement,
|
|
2353
2402
|
react: React,
|
|
@@ -2370,7 +2419,7 @@ const M3eRichTooltip = createComponent({
|
|
|
2370
2419
|
* See the `m3e-rich-tooltip-action` documentation for full details on behavior, styling,
|
|
2371
2420
|
* accessibility, and supported events.
|
|
2372
2421
|
*/
|
|
2373
|
-
const M3eRichTooltipAction =
|
|
2422
|
+
const M3eRichTooltipAction = o({
|
|
2374
2423
|
tagName: "m3e-rich-tooltip-action",
|
|
2375
2424
|
elementClass: M3eRichTooltipActionElement,
|
|
2376
2425
|
react: React
|
|
@@ -2389,7 +2438,7 @@ const M3eRichTooltipAction = createComponent({
|
|
|
2389
2438
|
* See the `m3e-tooltip` documentation for full details on behavior, styling,
|
|
2390
2439
|
* accessibility, and supported events.
|
|
2391
2440
|
*/
|
|
2392
|
-
const M3eTooltip =
|
|
2441
|
+
const M3eTooltip = o({
|
|
2393
2442
|
tagName: "m3e-tooltip",
|
|
2394
2443
|
elementClass: M3eTooltipElement,
|
|
2395
2444
|
react: React
|
|
@@ -2408,7 +2457,7 @@ const M3eTooltip = createComponent({
|
|
|
2408
2457
|
* See the `m3e-tree` documentation for full details on behavior, styling,
|
|
2409
2458
|
* accessibility, and supported events.
|
|
2410
2459
|
*/
|
|
2411
|
-
const M3eTree =
|
|
2460
|
+
const M3eTree = o({
|
|
2412
2461
|
tagName: "m3e-tree",
|
|
2413
2462
|
elementClass: M3eTreeElement,
|
|
2414
2463
|
react: React,
|
|
@@ -2430,7 +2479,7 @@ const M3eTree = createComponent({
|
|
|
2430
2479
|
* See the `m3e-tree-item` documentation for full details on behavior, styling,
|
|
2431
2480
|
* accessibility, and supported events.
|
|
2432
2481
|
*/
|
|
2433
|
-
const M3eTreeItem =
|
|
2482
|
+
const M3eTreeItem = o({
|
|
2434
2483
|
tagName: "m3e-tree-item",
|
|
2435
2484
|
elementClass: M3eTreeItemElement,
|
|
2436
2485
|
react: React,
|