@m3e/react 2.1.1 → 2.1.2
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 +487 -488
- package/dist/all.js.map +1 -1
- package/dist/app-bar.js +3 -4
- package/dist/app-bar.js.map +1 -1
- package/dist/autocomplete.js +7 -8
- package/dist/autocomplete.js.map +1 -1
- package/dist/avatar.js +3 -4
- package/dist/avatar.js.map +1 -1
- package/dist/badge.js +3 -4
- package/dist/badge.js.map +1 -1
- package/dist/bottom-sheet.js +16 -17
- package/dist/bottom-sheet.js.map +1 -1
- package/dist/button-group.js +3 -4
- package/dist/button-group.js.map +1 -1
- package/dist/button.js +8 -9
- package/dist/button.js.map +1 -1
- package/dist/card.js +6 -7
- package/dist/card.js.map +1 -1
- package/dist/checkbox.js +9 -10
- package/dist/checkbox.js.map +1 -1
- package/dist/chips.js +46 -47
- package/dist/chips.js.map +1 -1
- package/dist/core.js +39 -40
- package/dist/core.js.map +1 -1
- package/dist/dialog.js +16 -17
- package/dist/dialog.js.map +1 -1
- package/dist/divider.js +3 -4
- package/dist/divider.js.map +1 -1
- package/dist/drawer-container.js +9 -10
- package/dist/drawer-container.js.map +1 -1
- package/dist/expansion-panel.js +12 -13
- package/dist/expansion-panel.js.map +1 -1
- package/dist/fab-menu.js +16 -17
- package/dist/fab-menu.js.map +1 -1
- package/dist/fab.js +6 -7
- package/dist/fab.js.map +1 -1
- package/dist/form-field.js +3 -4
- package/dist/form-field.js.map +1 -1
- package/dist/heading.js +3 -4
- package/dist/heading.js.map +1 -1
- package/dist/icon-button.js +8 -9
- package/dist/icon-button.js.map +1 -1
- package/dist/icon.js +3 -4
- package/dist/icon.js.map +1 -1
- package/dist/index.js +0 -1
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +7 -0
- package/dist/index.min.js.map +1 -0
- package/dist/list.js +39 -40
- package/dist/list.js.map +1 -1
- package/dist/loading-indicator.js +3 -4
- package/dist/loading-indicator.js.map +1 -1
- package/dist/menu.js +31 -32
- package/dist/menu.js.map +1 -1
- package/dist/nav-bar.js +14 -15
- package/dist/nav-bar.js.map +1 -1
- package/dist/nav-menu.js +16 -17
- package/dist/nav-menu.js.map +1 -1
- package/dist/nav-rail.js +9 -10
- package/dist/nav-rail.js.map +1 -1
- package/dist/option.js +6 -7
- package/dist/option.js.map +1 -1
- package/dist/paginator.js +6 -7
- package/dist/paginator.js.map +1 -1
- package/dist/progress-indicator.js +6 -7
- package/dist/progress-indicator.js.map +1 -1
- package/dist/radio-group.js +14 -15
- package/dist/radio-group.js.map +1 -1
- package/dist/segmented-button.js +15 -16
- package/dist/segmented-button.js.map +1 -1
- package/dist/select.js +7 -8
- package/dist/select.js.map +1 -1
- package/dist/shape.js +3 -4
- package/dist/shape.js.map +1 -1
- package/dist/slide-group.js +3 -4
- package/dist/slide-group.js.map +1 -1
- package/dist/slider.js +11 -12
- package/dist/slider.js.map +1 -1
- package/dist/snackbar.js +0 -1
- package/dist/snackbar.js.map +1 -1
- package/dist/split-button.js +3 -4
- package/dist/split-button.js.map +1 -1
- package/dist/stepper.js +26 -27
- package/dist/stepper.js.map +1 -1
- package/dist/switch.js +8 -9
- package/dist/switch.js.map +1 -1
- package/dist/tabs.js +17 -18
- package/dist/tabs.js.map +1 -1
- package/dist/textarea-autosize.js +3 -4
- package/dist/textarea-autosize.js.map +1 -1
- package/dist/theme.js +6 -7
- package/dist/theme.js.map +1 -1
- package/dist/toc.js +3 -4
- package/dist/toc.js.map +1 -1
- package/dist/toolbar.js +3 -4
- package/dist/toolbar.js.map +1 -1
- package/dist/tooltip.js +13 -14
- package/dist/tooltip.js.map +1 -1
- package/package.json +2 -2
package/dist/core.js
CHANGED
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
* Copyright (c) 2025 matraic
|
|
4
4
|
* See LICENSE file in the project root for full license text.
|
|
5
5
|
*/
|
|
6
|
-
|
|
7
6
|
import React from 'react';
|
|
8
7
|
import { createComponent } from '@lit/react';
|
|
9
8
|
import { M3eCollapsibleElement, M3eElevationElement, M3eFocusRingElement, M3ePseudoCheckboxElement, M3ePseudoRadioElement, M3eRippleElement, M3eScrollContainerElement, M3eSlideElement, M3eStateLayerElement, M3eTextHighlightElement, M3eTextOverflowElement } from '@m3e/web/core';
|
|
@@ -22,15 +21,15 @@ import { M3eCollapsibleElement, M3eElevationElement, M3eFocusRingElement, M3ePse
|
|
|
22
21
|
* accessibility, and supported events.
|
|
23
22
|
*/
|
|
24
23
|
const M3eCollapsible = createComponent({
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
24
|
+
tagName: "m3e-collapsible",
|
|
25
|
+
elementClass: M3eCollapsibleElement,
|
|
26
|
+
react: React,
|
|
27
|
+
events: {
|
|
28
|
+
onOpening: "opening",
|
|
29
|
+
onOpened: "opened",
|
|
30
|
+
onClosing: "closing",
|
|
31
|
+
onClosed: "closed"
|
|
32
|
+
}
|
|
34
33
|
});
|
|
35
34
|
|
|
36
35
|
/**
|
|
@@ -47,9 +46,9 @@ const M3eCollapsible = createComponent({
|
|
|
47
46
|
* accessibility, and supported events.
|
|
48
47
|
*/
|
|
49
48
|
const M3eElevation = createComponent({
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
49
|
+
tagName: "m3e-elevation",
|
|
50
|
+
elementClass: M3eElevationElement,
|
|
51
|
+
react: React
|
|
53
52
|
});
|
|
54
53
|
|
|
55
54
|
/**
|
|
@@ -66,9 +65,9 @@ const M3eElevation = createComponent({
|
|
|
66
65
|
* accessibility, and supported events.
|
|
67
66
|
*/
|
|
68
67
|
const M3eFocusRing = createComponent({
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
68
|
+
tagName: "m3e-focus-ring",
|
|
69
|
+
elementClass: M3eFocusRingElement,
|
|
70
|
+
react: React
|
|
72
71
|
});
|
|
73
72
|
|
|
74
73
|
/**
|
|
@@ -85,9 +84,9 @@ const M3eFocusRing = createComponent({
|
|
|
85
84
|
* accessibility, and supported events.
|
|
86
85
|
*/
|
|
87
86
|
const M3ePseudoCheckbox = createComponent({
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
87
|
+
tagName: "m3e-pseudo-checkbox",
|
|
88
|
+
elementClass: M3ePseudoCheckboxElement,
|
|
89
|
+
react: React
|
|
91
90
|
});
|
|
92
91
|
|
|
93
92
|
/**
|
|
@@ -104,9 +103,9 @@ const M3ePseudoCheckbox = createComponent({
|
|
|
104
103
|
* accessibility, and supported events.
|
|
105
104
|
*/
|
|
106
105
|
const M3ePseudoRadio = createComponent({
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
106
|
+
tagName: "m3e-pseudo-radio",
|
|
107
|
+
elementClass: M3ePseudoRadioElement,
|
|
108
|
+
react: React
|
|
110
109
|
});
|
|
111
110
|
|
|
112
111
|
/**
|
|
@@ -123,9 +122,9 @@ const M3ePseudoRadio = createComponent({
|
|
|
123
122
|
* accessibility, and supported events.
|
|
124
123
|
*/
|
|
125
124
|
const M3eRipple = createComponent({
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
125
|
+
tagName: "m3e-ripple",
|
|
126
|
+
elementClass: M3eRippleElement,
|
|
127
|
+
react: React
|
|
129
128
|
});
|
|
130
129
|
|
|
131
130
|
/**
|
|
@@ -142,9 +141,9 @@ const M3eRipple = createComponent({
|
|
|
142
141
|
* accessibility, and supported events.
|
|
143
142
|
*/
|
|
144
143
|
const M3eScrollContainer = createComponent({
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
144
|
+
tagName: "m3e-scroll-container",
|
|
145
|
+
elementClass: M3eScrollContainerElement,
|
|
146
|
+
react: React
|
|
148
147
|
});
|
|
149
148
|
|
|
150
149
|
/**
|
|
@@ -161,9 +160,9 @@ const M3eScrollContainer = createComponent({
|
|
|
161
160
|
* accessibility, and supported events.
|
|
162
161
|
*/
|
|
163
162
|
const M3eSlide = createComponent({
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
163
|
+
tagName: "m3e-slide",
|
|
164
|
+
elementClass: M3eSlideElement,
|
|
165
|
+
react: React
|
|
167
166
|
});
|
|
168
167
|
|
|
169
168
|
/**
|
|
@@ -180,9 +179,9 @@ const M3eSlide = createComponent({
|
|
|
180
179
|
* accessibility, and supported events.
|
|
181
180
|
*/
|
|
182
181
|
const M3eStateLayer = createComponent({
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
182
|
+
tagName: "m3e-state-layer",
|
|
183
|
+
elementClass: M3eStateLayerElement,
|
|
184
|
+
react: React
|
|
186
185
|
});
|
|
187
186
|
|
|
188
187
|
/**
|
|
@@ -199,9 +198,9 @@ const M3eStateLayer = createComponent({
|
|
|
199
198
|
* accessibility, and supported events.
|
|
200
199
|
*/
|
|
201
200
|
const M3eTextHighlight = createComponent({
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
201
|
+
tagName: "m3e-text-highlight",
|
|
202
|
+
elementClass: M3eTextHighlightElement,
|
|
203
|
+
react: React
|
|
205
204
|
});
|
|
206
205
|
|
|
207
206
|
/**
|
|
@@ -218,9 +217,9 @@ const M3eTextHighlight = createComponent({
|
|
|
218
217
|
* accessibility, and supported events.
|
|
219
218
|
*/
|
|
220
219
|
const M3eTextOverflow = createComponent({
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
220
|
+
tagName: "m3e-text-overflow",
|
|
221
|
+
elementClass: M3eTextOverflowElement,
|
|
222
|
+
react: React
|
|
224
223
|
});
|
|
225
224
|
|
|
226
225
|
export { M3eCollapsible, M3eElevation, M3eFocusRing, M3ePseudoCheckbox, M3ePseudoRadio, M3eRipple, M3eScrollContainer, M3eSlide, M3eStateLayer, M3eTextHighlight, M3eTextOverflow };
|
package/dist/core.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"core.js","sources":["../../src/core/Collapsible.ts","../../src/core/Elevation.ts","../../src/core/FocusRing.ts","../../src/core/PseudoCheckbox.ts","../../src/core/PseudoRadio.ts","../../src/core/Ripple.ts","../../src/core/ScrollContainer.ts","../../src/core/Slide.ts","../../src/core/StateLayer.ts","../../src/core/TextHighlight.ts","../../src/core/TextOverflow.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eCollapsibleElement } from \"@m3e/web/core\";\r\nexport type { M3eCollapsibleElement } from \"@m3e/web/core\";\r\n\r\n/**\r\n * React binding for the `m3e-collapsible` Web Component from `@m3e/web/web/core`.\r\n *\r\n * This component renders the underlying `<m3e-collapsible>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-collapsible>` instance for imperative access.\r\n *\r\n * See the `m3e-collapsible` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eCollapsible = createComponent({\r\n tagName: \"m3e-collapsible\",\r\n elementClass: M3eCollapsibleElement,\r\n react: React,\r\n events: {\r\n onOpening: \"opening\",\r\n onOpened: \"opened\",\r\n onClosing: \"closing\",\r\n onClosed: \"closed\",\r\n },\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eElevationElement } from \"@m3e/web/core\";\r\nexport type { M3eElevationElement, ElevationLevel } from \"@m3e/web/core\";\r\n\r\n/**\r\n * React binding for the `m3e-elevation` Web Component from `@m3e/web/web/core`.\r\n *\r\n * This component renders the underlying `<m3e-elevation>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-elevation>` instance for imperative access.\r\n *\r\n * See the `m3e-elevation` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eElevation = createComponent({\r\n tagName: \"m3e-elevation\",\r\n elementClass: M3eElevationElement,\r\n react: React,\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eFocusRingElement } from \"@m3e/web/core\";\r\nexport type { M3eFocusRingElement } from \"@m3e/web/core\";\r\n\r\n/**\r\n * React binding for the `m3e-focus-ring` Web Component from `@m3e/web/web/core`.\r\n *\r\n * This component renders the underlying `<m3e-focus-ring>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-focus-ring>` instance for imperative access.\r\n *\r\n * See the `m3e-focus-ring` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eFocusRing = createComponent({\r\n tagName: \"m3e-focus-ring\",\r\n elementClass: M3eFocusRingElement,\r\n react: React,\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3ePseudoCheckboxElement } from \"@m3e/web/core\";\r\nexport type { M3ePseudoCheckboxElement } from \"@m3e/web/core\";\r\n\r\n/**\r\n * React binding for the `m3e-pseudo-checkbox` Web Component from `@m3e/web/web/core`.\r\n *\r\n * This component renders the underlying `<m3e-pseudo-checkbox>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-pseudo-checkbox>` instance for imperative access.\r\n *\r\n * See the `m3e-pseudo-checkbox` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3ePseudoCheckbox = createComponent({\r\n tagName: \"m3e-pseudo-checkbox\",\r\n elementClass: M3ePseudoCheckboxElement,\r\n react: React,\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3ePseudoRadioElement } from \"@m3e/web/core\";\r\nexport type { M3ePseudoRadioElement } from \"@m3e/web/core\";\r\n\r\n/**\r\n * React binding for the `m3e-pseudo-radio` Web Component from `@m3e/web/web/core`.\r\n *\r\n * This component renders the underlying `<m3e-pseudo-radio>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-pseudo-radio>` instance for imperative access.\r\n *\r\n * See the `m3e-pseudo-radio` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3ePseudoRadio = createComponent({\r\n tagName: \"m3e-pseudo-radio\",\r\n elementClass: M3ePseudoRadioElement,\r\n react: React,\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eRippleElement } from \"@m3e/web/core\";\r\nexport type { M3eRippleElement } from \"@m3e/web/core\";\r\n\r\n/**\r\n * React binding for the `m3e-ripple` Web Component from `@m3e/web/web/core`.\r\n *\r\n * This component renders the underlying `<m3e-ripple>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-ripple>` instance for imperative access.\r\n *\r\n * See the `m3e-ripple` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eRipple = createComponent({\r\n tagName: \"m3e-ripple\",\r\n elementClass: M3eRippleElement,\r\n react: React,\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eScrollContainerElement } from \"@m3e/web/core\";\r\nexport type { M3eScrollContainerElement, ScrollDividers } from \"@m3e/web/core\";\r\n\r\n/**\r\n * React binding for the `m3e-scroll-container` Web Component from `@m3e/web/web/core`.\r\n *\r\n * This component renders the underlying `<m3e-scroll-container>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-scroll-container>` instance for imperative access.\r\n *\r\n * See the `m3e-scroll-container` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eScrollContainer = createComponent({\r\n tagName: \"m3e-scroll-container\",\r\n elementClass: M3eScrollContainerElement,\r\n react: React,\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eSlideElement } from \"@m3e/web/core\";\r\nexport type { M3eSlideElement } from \"@m3e/web/core\";\r\n\r\n/**\r\n * React binding for the `m3e-slide` Web Component from `@m3e/web/web/core`.\r\n *\r\n * This component renders the underlying `<m3e-slide>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-slide>` instance for imperative access.\r\n *\r\n * See the `m3e-slide` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eSlide = createComponent({\r\n tagName: \"m3e-slide\",\r\n elementClass: M3eSlideElement,\r\n react: React,\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eStateLayerElement } from \"@m3e/web/core\";\r\nexport type { M3eStateLayerElement } from \"@m3e/web/core\";\r\n\r\n/**\r\n * React binding for the `m3e-state-layer` Web Component from `@m3e/web/web/core`.\r\n *\r\n * This component renders the underlying `<m3e-state-layer>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-state-layer>` instance for imperative access.\r\n *\r\n * See the `m3e-state-layer` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eStateLayer = createComponent({\r\n tagName: \"m3e-state-layer\",\r\n elementClass: M3eStateLayerElement,\r\n react: React,\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eTextHighlightElement } from \"@m3e/web/core\";\r\nexport type { M3eTextHighlightElement, TextHighlightMode } from \"@m3e/web/core\";\r\n\r\n/**\r\n * React binding for the `m3e-text-highlight` Web Component from `@m3e/web/web/core`.\r\n *\r\n * This component renders the underlying `<m3e-text-highlight>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-text-highlight>` instance for imperative access.\r\n *\r\n * See the `m3e-text-highlight` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eTextHighlight = createComponent({\r\n tagName: \"m3e-text-highlight\",\r\n elementClass: M3eTextHighlightElement,\r\n react: React,\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eTextOverflowElement } from \"@m3e/web/core\";\r\nexport type { M3eTextOverflowElement } from \"@m3e/web/core\";\r\n\r\n/**\r\n * React binding for the `m3e-text-overflow` Web Component from `@m3e/web/web/core`.\r\n *\r\n * This component renders the underlying `<m3e-text-overflow>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-text-overflow>` instance for imperative access.\r\n *\r\n * See the `m3e-text-overflow` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eTextOverflow = createComponent({\r\n tagName: \"m3e-text-overflow\",\r\n elementClass: M3eTextOverflowElement,\r\n react: React,\r\n});\r\n"],"names":[],"mappings":";;;;;;;;;;AAMA;;;;;;;;;;;;AAYG;AACI,MAAM,cAAc,GAAG,eAAe,CAAC;AAC5C,IAAA,OAAO,EAAE,iBAAiB;AAC1B,IAAA,YAAY,EAAE,qBAAqB;AACnC,IAAA,KAAK,EAAE,KAAK;AACZ,IAAA,MAAM,EAAE;AACN,QAAA,SAAS,EAAE,SAAS;AACpB,QAAA,QAAQ,EAAE,QAAQ;AAClB,QAAA,SAAS,EAAE,SAAS;AACpB,QAAA,QAAQ,EAAE,QAAQ;AACnB,KAAA;AACF,CAAA;;ACvBD;;;;;;;;;;;;AAYG;AACI,MAAM,YAAY,GAAG,eAAe,CAAC;AAC1C,IAAA,OAAO,EAAE,eAAe;AACxB,IAAA,YAAY,EAAE,mBAAmB;AACjC,IAAA,KAAK,EAAE,KAAK;AACb,CAAA;;ACjBD;;;;;;;;;;;;AAYG;AACI,MAAM,YAAY,GAAG,eAAe,CAAC;AAC1C,IAAA,OAAO,EAAE,gBAAgB;AACzB,IAAA,YAAY,EAAE,mBAAmB;AACjC,IAAA,KAAK,EAAE,KAAK;AACb,CAAA;;ACjBD;;;;;;;;;;;;AAYG;AACI,MAAM,iBAAiB,GAAG,eAAe,CAAC;AAC/C,IAAA,OAAO,EAAE,qBAAqB;AAC9B,IAAA,YAAY,EAAE,wBAAwB;AACtC,IAAA,KAAK,EAAE,KAAK;AACb,CAAA;;ACjBD;;;;;;;;;;;;AAYG;AACI,MAAM,cAAc,GAAG,eAAe,CAAC;AAC5C,IAAA,OAAO,EAAE,kBAAkB;AAC3B,IAAA,YAAY,EAAE,qBAAqB;AACnC,IAAA,KAAK,EAAE,KAAK;AACb,CAAA;;ACjBD;;;;;;;;;;;;AAYG;AACI,MAAM,SAAS,GAAG,eAAe,CAAC;AACvC,IAAA,OAAO,EAAE,YAAY;AACrB,IAAA,YAAY,EAAE,gBAAgB;AAC9B,IAAA,KAAK,EAAE,KAAK;AACb,CAAA;;ACjBD;;;;;;;;;;;;AAYG;AACI,MAAM,kBAAkB,GAAG,eAAe,CAAC;AAChD,IAAA,OAAO,EAAE,sBAAsB;AAC/B,IAAA,YAAY,EAAE,yBAAyB;AACvC,IAAA,KAAK,EAAE,KAAK;AACb,CAAA;;ACjBD;;;;;;;;;;;;AAYG;AACI,MAAM,QAAQ,GAAG,eAAe,CAAC;AACtC,IAAA,OAAO,EAAE,WAAW;AACpB,IAAA,YAAY,EAAE,eAAe;AAC7B,IAAA,KAAK,EAAE,KAAK;AACb,CAAA;;ACjBD;;;;;;;;;;;;AAYG;AACI,MAAM,aAAa,GAAG,eAAe,CAAC;AAC3C,IAAA,OAAO,EAAE,iBAAiB;AAC1B,IAAA,YAAY,EAAE,oBAAoB;AAClC,IAAA,KAAK,EAAE,KAAK;AACb,CAAA;;ACjBD;;;;;;;;;;;;AAYG;AACI,MAAM,gBAAgB,GAAG,eAAe,CAAC;AAC9C,IAAA,OAAO,EAAE,oBAAoB;AAC7B,IAAA,YAAY,EAAE,uBAAuB;AACrC,IAAA,KAAK,EAAE,KAAK;AACb,CAAA;;ACjBD;;;;;;;;;;;;AAYG;AACI,MAAM,eAAe,GAAG,eAAe,CAAC;AAC7C,IAAA,OAAO,EAAE,mBAAmB;AAC5B,IAAA,YAAY,EAAE,sBAAsB;AACpC,IAAA,KAAK,EAAE,KAAK;AACb,CAAA;;;;"}
|
|
1
|
+
{"version":3,"file":"core.js","sources":["../../src/core/Collapsible.ts","../../src/core/Elevation.ts","../../src/core/FocusRing.ts","../../src/core/PseudoCheckbox.ts","../../src/core/PseudoRadio.ts","../../src/core/Ripple.ts","../../src/core/ScrollContainer.ts","../../src/core/Slide.ts","../../src/core/StateLayer.ts","../../src/core/TextHighlight.ts","../../src/core/TextOverflow.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eCollapsibleElement } from \"@m3e/web/core\";\r\nexport type { M3eCollapsibleElement } from \"@m3e/web/core\";\r\n\r\n/**\r\n * React binding for the `m3e-collapsible` Web Component from `@m3e/web/web/core`.\r\n *\r\n * This component renders the underlying `<m3e-collapsible>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-collapsible>` instance for imperative access.\r\n *\r\n * See the `m3e-collapsible` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eCollapsible = createComponent({\r\n tagName: \"m3e-collapsible\",\r\n elementClass: M3eCollapsibleElement,\r\n react: React,\r\n events: {\r\n onOpening: \"opening\",\r\n onOpened: \"opened\",\r\n onClosing: \"closing\",\r\n onClosed: \"closed\",\r\n },\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eElevationElement } from \"@m3e/web/core\";\r\nexport type { M3eElevationElement, ElevationLevel } from \"@m3e/web/core\";\r\n\r\n/**\r\n * React binding for the `m3e-elevation` Web Component from `@m3e/web/web/core`.\r\n *\r\n * This component renders the underlying `<m3e-elevation>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-elevation>` instance for imperative access.\r\n *\r\n * See the `m3e-elevation` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eElevation = createComponent({\r\n tagName: \"m3e-elevation\",\r\n elementClass: M3eElevationElement,\r\n react: React,\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eFocusRingElement } from \"@m3e/web/core\";\r\nexport type { M3eFocusRingElement } from \"@m3e/web/core\";\r\n\r\n/**\r\n * React binding for the `m3e-focus-ring` Web Component from `@m3e/web/web/core`.\r\n *\r\n * This component renders the underlying `<m3e-focus-ring>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-focus-ring>` instance for imperative access.\r\n *\r\n * See the `m3e-focus-ring` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eFocusRing = createComponent({\r\n tagName: \"m3e-focus-ring\",\r\n elementClass: M3eFocusRingElement,\r\n react: React,\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3ePseudoCheckboxElement } from \"@m3e/web/core\";\r\nexport type { M3ePseudoCheckboxElement } from \"@m3e/web/core\";\r\n\r\n/**\r\n * React binding for the `m3e-pseudo-checkbox` Web Component from `@m3e/web/web/core`.\r\n *\r\n * This component renders the underlying `<m3e-pseudo-checkbox>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-pseudo-checkbox>` instance for imperative access.\r\n *\r\n * See the `m3e-pseudo-checkbox` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3ePseudoCheckbox = createComponent({\r\n tagName: \"m3e-pseudo-checkbox\",\r\n elementClass: M3ePseudoCheckboxElement,\r\n react: React,\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3ePseudoRadioElement } from \"@m3e/web/core\";\r\nexport type { M3ePseudoRadioElement } from \"@m3e/web/core\";\r\n\r\n/**\r\n * React binding for the `m3e-pseudo-radio` Web Component from `@m3e/web/web/core`.\r\n *\r\n * This component renders the underlying `<m3e-pseudo-radio>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-pseudo-radio>` instance for imperative access.\r\n *\r\n * See the `m3e-pseudo-radio` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3ePseudoRadio = createComponent({\r\n tagName: \"m3e-pseudo-radio\",\r\n elementClass: M3ePseudoRadioElement,\r\n react: React,\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eRippleElement } from \"@m3e/web/core\";\r\nexport type { M3eRippleElement } from \"@m3e/web/core\";\r\n\r\n/**\r\n * React binding for the `m3e-ripple` Web Component from `@m3e/web/web/core`.\r\n *\r\n * This component renders the underlying `<m3e-ripple>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-ripple>` instance for imperative access.\r\n *\r\n * See the `m3e-ripple` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eRipple = createComponent({\r\n tagName: \"m3e-ripple\",\r\n elementClass: M3eRippleElement,\r\n react: React,\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eScrollContainerElement } from \"@m3e/web/core\";\r\nexport type { M3eScrollContainerElement, ScrollDividers } from \"@m3e/web/core\";\r\n\r\n/**\r\n * React binding for the `m3e-scroll-container` Web Component from `@m3e/web/web/core`.\r\n *\r\n * This component renders the underlying `<m3e-scroll-container>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-scroll-container>` instance for imperative access.\r\n *\r\n * See the `m3e-scroll-container` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eScrollContainer = createComponent({\r\n tagName: \"m3e-scroll-container\",\r\n elementClass: M3eScrollContainerElement,\r\n react: React,\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eSlideElement } from \"@m3e/web/core\";\r\nexport type { M3eSlideElement } from \"@m3e/web/core\";\r\n\r\n/**\r\n * React binding for the `m3e-slide` Web Component from `@m3e/web/web/core`.\r\n *\r\n * This component renders the underlying `<m3e-slide>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-slide>` instance for imperative access.\r\n *\r\n * See the `m3e-slide` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eSlide = createComponent({\r\n tagName: \"m3e-slide\",\r\n elementClass: M3eSlideElement,\r\n react: React,\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eStateLayerElement } from \"@m3e/web/core\";\r\nexport type { M3eStateLayerElement } from \"@m3e/web/core\";\r\n\r\n/**\r\n * React binding for the `m3e-state-layer` Web Component from `@m3e/web/web/core`.\r\n *\r\n * This component renders the underlying `<m3e-state-layer>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-state-layer>` instance for imperative access.\r\n *\r\n * See the `m3e-state-layer` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eStateLayer = createComponent({\r\n tagName: \"m3e-state-layer\",\r\n elementClass: M3eStateLayerElement,\r\n react: React,\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eTextHighlightElement } from \"@m3e/web/core\";\r\nexport type { M3eTextHighlightElement, TextHighlightMode } from \"@m3e/web/core\";\r\n\r\n/**\r\n * React binding for the `m3e-text-highlight` Web Component from `@m3e/web/web/core`.\r\n *\r\n * This component renders the underlying `<m3e-text-highlight>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-text-highlight>` instance for imperative access.\r\n *\r\n * See the `m3e-text-highlight` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eTextHighlight = createComponent({\r\n tagName: \"m3e-text-highlight\",\r\n elementClass: M3eTextHighlightElement,\r\n react: React,\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eTextOverflowElement } from \"@m3e/web/core\";\r\nexport type { M3eTextOverflowElement } from \"@m3e/web/core\";\r\n\r\n/**\r\n * React binding for the `m3e-text-overflow` Web Component from `@m3e/web/web/core`.\r\n *\r\n * This component renders the underlying `<m3e-text-overflow>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-text-overflow>` instance for imperative access.\r\n *\r\n * See the `m3e-text-overflow` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eTextOverflow = createComponent({\r\n tagName: \"m3e-text-overflow\",\r\n elementClass: M3eTextOverflowElement,\r\n react: React,\r\n});\r\n"],"names":["M3eCollapsible","createComponent","tagName","elementClass","M3eCollapsibleElement","react","React","events","onOpening","onOpened","onClosing","onClosed","M3eElevation","M3eElevationElement","M3eFocusRing","M3eFocusRingElement","M3ePseudoCheckbox","M3ePseudoCheckboxElement","M3ePseudoRadio","M3ePseudoRadioElement","M3eRipple","M3eRippleElement","M3eScrollContainer","M3eScrollContainerElement","M3eSlide","M3eSlideElement","M3eStateLayer","M3eStateLayerElement","M3eTextHighlight","M3eTextHighlightElement","M3eTextOverflow","M3eTextOverflowElement"],"mappings":";;;;;;;;;AAMA;;;;;;;;;;;;AAYG;AACI,MAAMA,cAAc,GAAGC,eAAe,CAAC;AAC5CC,EAAAA,OAAO,EAAE,iBAAiB;AAC1BC,EAAAA,YAAY,EAAEC,qBAAqB;AACnCC,EAAAA,KAAK,EAAEC,KAAK;AACZC,EAAAA,MAAM,EAAE;AACNC,IAAAA,SAAS,EAAE,SAAS;AACpBC,IAAAA,QAAQ,EAAE,QAAQ;AAClBC,IAAAA,SAAS,EAAE,SAAS;AACpBC,IAAAA,QAAQ,EAAE;AACX;AACF,CAAA;;ACvBD;;;;;;;;;;;;AAYG;AACI,MAAMC,YAAY,GAAGX,eAAe,CAAC;AAC1CC,EAAAA,OAAO,EAAE,eAAe;AACxBC,EAAAA,YAAY,EAAEU,mBAAmB;AACjCR,EAAAA,KAAK,EAAEC;AACR,CAAA;;ACjBD;;;;;;;;;;;;AAYG;AACI,MAAMQ,YAAY,GAAGb,eAAe,CAAC;AAC1CC,EAAAA,OAAO,EAAE,gBAAgB;AACzBC,EAAAA,YAAY,EAAEY,mBAAmB;AACjCV,EAAAA,KAAK,EAAEC;AACR,CAAA;;ACjBD;;;;;;;;;;;;AAYG;AACI,MAAMU,iBAAiB,GAAGf,eAAe,CAAC;AAC/CC,EAAAA,OAAO,EAAE,qBAAqB;AAC9BC,EAAAA,YAAY,EAAEc,wBAAwB;AACtCZ,EAAAA,KAAK,EAAEC;AACR,CAAA;;ACjBD;;;;;;;;;;;;AAYG;AACI,MAAMY,cAAc,GAAGjB,eAAe,CAAC;AAC5CC,EAAAA,OAAO,EAAE,kBAAkB;AAC3BC,EAAAA,YAAY,EAAEgB,qBAAqB;AACnCd,EAAAA,KAAK,EAAEC;AACR,CAAA;;ACjBD;;;;;;;;;;;;AAYG;AACI,MAAMc,SAAS,GAAGnB,eAAe,CAAC;AACvCC,EAAAA,OAAO,EAAE,YAAY;AACrBC,EAAAA,YAAY,EAAEkB,gBAAgB;AAC9BhB,EAAAA,KAAK,EAAEC;AACR,CAAA;;ACjBD;;;;;;;;;;;;AAYG;AACI,MAAMgB,kBAAkB,GAAGrB,eAAe,CAAC;AAChDC,EAAAA,OAAO,EAAE,sBAAsB;AAC/BC,EAAAA,YAAY,EAAEoB,yBAAyB;AACvClB,EAAAA,KAAK,EAAEC;AACR,CAAA;;ACjBD;;;;;;;;;;;;AAYG;AACI,MAAMkB,QAAQ,GAAGvB,eAAe,CAAC;AACtCC,EAAAA,OAAO,EAAE,WAAW;AACpBC,EAAAA,YAAY,EAAEsB,eAAe;AAC7BpB,EAAAA,KAAK,EAAEC;AACR,CAAA;;ACjBD;;;;;;;;;;;;AAYG;AACI,MAAMoB,aAAa,GAAGzB,eAAe,CAAC;AAC3CC,EAAAA,OAAO,EAAE,iBAAiB;AAC1BC,EAAAA,YAAY,EAAEwB,oBAAoB;AAClCtB,EAAAA,KAAK,EAAEC;AACR,CAAA;;ACjBD;;;;;;;;;;;;AAYG;AACI,MAAMsB,gBAAgB,GAAG3B,eAAe,CAAC;AAC9CC,EAAAA,OAAO,EAAE,oBAAoB;AAC7BC,EAAAA,YAAY,EAAE0B,uBAAuB;AACrCxB,EAAAA,KAAK,EAAEC;AACR,CAAA;;ACjBD;;;;;;;;;;;;AAYG;AACI,MAAMwB,eAAe,GAAG7B,eAAe,CAAC;AAC7CC,EAAAA,OAAO,EAAE,mBAAmB;AAC5BC,EAAAA,YAAY,EAAE4B,sBAAsB;AACpC1B,EAAAA,KAAK,EAAEC;AACR,CAAA;;;;"}
|
package/dist/dialog.js
CHANGED
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
* Copyright (c) 2025 matraic
|
|
4
4
|
* See LICENSE file in the project root for full license text.
|
|
5
5
|
*/
|
|
6
|
-
|
|
7
6
|
import React from 'react';
|
|
8
7
|
import { createComponent } from '@lit/react';
|
|
9
8
|
import { M3eDialogElement, M3eDialogActionElement, M3eDialogTriggerElement } from '@m3e/web/dialog';
|
|
@@ -22,16 +21,16 @@ import { M3eDialogElement, M3eDialogActionElement, M3eDialogTriggerElement } fro
|
|
|
22
21
|
* styling, accessibility, and supported events.
|
|
23
22
|
*/
|
|
24
23
|
const M3eDialog = createComponent({
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
24
|
+
tagName: "m3e-dialog",
|
|
25
|
+
elementClass: M3eDialogElement,
|
|
26
|
+
react: React,
|
|
27
|
+
events: {
|
|
28
|
+
onOpening: "opening",
|
|
29
|
+
onOpened: "opened",
|
|
30
|
+
onClosing: "closing",
|
|
31
|
+
onClosed: "closed",
|
|
32
|
+
onCancel: "cancel"
|
|
33
|
+
}
|
|
35
34
|
});
|
|
36
35
|
|
|
37
36
|
/**
|
|
@@ -48,9 +47,9 @@ const M3eDialog = createComponent({
|
|
|
48
47
|
* accessibility, and supported events.
|
|
49
48
|
*/
|
|
50
49
|
const M3eDialogAction = createComponent({
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
50
|
+
tagName: "m3e-dialog-action",
|
|
51
|
+
elementClass: M3eDialogActionElement,
|
|
52
|
+
react: React
|
|
54
53
|
});
|
|
55
54
|
|
|
56
55
|
/**
|
|
@@ -67,9 +66,9 @@ const M3eDialogAction = createComponent({
|
|
|
67
66
|
* accessibility, and supported events.
|
|
68
67
|
*/
|
|
69
68
|
const M3eDialogTrigger = createComponent({
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
69
|
+
tagName: "m3e-dialog-trigger",
|
|
70
|
+
elementClass: M3eDialogTriggerElement,
|
|
71
|
+
react: React
|
|
73
72
|
});
|
|
74
73
|
|
|
75
74
|
export { M3eDialog, M3eDialogAction, M3eDialogTrigger };
|
package/dist/dialog.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dialog.js","sources":["../../src/dialog/Dialog.ts","../../src/dialog/DialogAction.ts","../../src/dialog/DialogTrigger.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eDialogElement } from \"@m3e/web/dialog\";\r\nexport type { M3eDialogElement } from \"@m3e/web/dialog\";\r\n\r\n/**\r\n * React binding for the `m3e-dialog` Web Component from `@m3e/web/dialog`.\r\n *\r\n * This component renders the underlying `<m3e-dialog>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-dialog>` instance for imperative access.\r\n *\r\n * See the `m3e-dialog` documentation for full details on behavior,\r\n * styling, accessibility, and supported events.\r\n */\r\nexport const M3eDialog = createComponent({\r\n tagName: \"m3e-dialog\",\r\n elementClass: M3eDialogElement,\r\n react: React,\r\n events: {\r\n onOpening: \"opening\",\r\n onOpened: \"opened\",\r\n onClosing: \"closing\",\r\n onClosed: \"closed\",\r\n onCancel: \"cancel\",\r\n },\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eDialogActionElement } from \"@m3e/web/dialog\";\r\nexport type { M3eDialogActionElement } from \"@m3e/web/dialog\";\r\n\r\n/**\r\n * React binding for the `m3e-dialog-action` Web Component from `@m3e/web/dialog`.\r\n *\r\n * This component renders the underlying `<m3e-dialog-action>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-dialog-action>` instance for imperative access.\r\n *\r\n * See the `m3e-dialog-action` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eDialogAction = createComponent({\r\n tagName: \"m3e-dialog-action\",\r\n elementClass: M3eDialogActionElement,\r\n react: React,\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eDialogTriggerElement } from \"@m3e/web/dialog\";\r\nexport type { M3eDialogTriggerElement } from \"@m3e/web/dialog\";\r\n\r\n/**\r\n * React binding for the `m3e-dialog-trigger` Web Component from `@m3e/web/dialog`.\r\n *\r\n * This component renders the underlying `<m3e-dialog-trigger>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-dialog-trigger>` instance for imperative access.\r\n *\r\n * See the `m3e-dialog-trigger` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eDialogTrigger = createComponent({\r\n tagName: \"m3e-dialog-trigger\",\r\n elementClass: M3eDialogTriggerElement,\r\n react: React,\r\n});\r\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"dialog.js","sources":["../../src/dialog/Dialog.ts","../../src/dialog/DialogAction.ts","../../src/dialog/DialogTrigger.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eDialogElement } from \"@m3e/web/dialog\";\r\nexport type { M3eDialogElement } from \"@m3e/web/dialog\";\r\n\r\n/**\r\n * React binding for the `m3e-dialog` Web Component from `@m3e/web/dialog`.\r\n *\r\n * This component renders the underlying `<m3e-dialog>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-dialog>` instance for imperative access.\r\n *\r\n * See the `m3e-dialog` documentation for full details on behavior,\r\n * styling, accessibility, and supported events.\r\n */\r\nexport const M3eDialog = createComponent({\r\n tagName: \"m3e-dialog\",\r\n elementClass: M3eDialogElement,\r\n react: React,\r\n events: {\r\n onOpening: \"opening\",\r\n onOpened: \"opened\",\r\n onClosing: \"closing\",\r\n onClosed: \"closed\",\r\n onCancel: \"cancel\",\r\n },\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eDialogActionElement } from \"@m3e/web/dialog\";\r\nexport type { M3eDialogActionElement } from \"@m3e/web/dialog\";\r\n\r\n/**\r\n * React binding for the `m3e-dialog-action` Web Component from `@m3e/web/dialog`.\r\n *\r\n * This component renders the underlying `<m3e-dialog-action>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-dialog-action>` instance for imperative access.\r\n *\r\n * See the `m3e-dialog-action` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eDialogAction = createComponent({\r\n tagName: \"m3e-dialog-action\",\r\n elementClass: M3eDialogActionElement,\r\n react: React,\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eDialogTriggerElement } from \"@m3e/web/dialog\";\r\nexport type { M3eDialogTriggerElement } from \"@m3e/web/dialog\";\r\n\r\n/**\r\n * React binding for the `m3e-dialog-trigger` Web Component from `@m3e/web/dialog`.\r\n *\r\n * This component renders the underlying `<m3e-dialog-trigger>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-dialog-trigger>` instance for imperative access.\r\n *\r\n * See the `m3e-dialog-trigger` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eDialogTrigger = createComponent({\r\n tagName: \"m3e-dialog-trigger\",\r\n elementClass: M3eDialogTriggerElement,\r\n react: React,\r\n});\r\n"],"names":["M3eDialog","createComponent","tagName","elementClass","M3eDialogElement","react","React","events","onOpening","onOpened","onClosing","onClosed","onCancel","M3eDialogAction","M3eDialogActionElement","M3eDialogTrigger","M3eDialogTriggerElement"],"mappings":";;;;;;;;;AAMA;;;;;;;;;;;;AAYG;AACI,MAAMA,SAAS,GAAGC,eAAe,CAAC;AACvCC,EAAAA,OAAO,EAAE,YAAY;AACrBC,EAAAA,YAAY,EAAEC,gBAAgB;AAC9BC,EAAAA,KAAK,EAAEC,KAAK;AACZC,EAAAA,MAAM,EAAE;AACNC,IAAAA,SAAS,EAAE,SAAS;AACpBC,IAAAA,QAAQ,EAAE,QAAQ;AAClBC,IAAAA,SAAS,EAAE,SAAS;AACpBC,IAAAA,QAAQ,EAAE,QAAQ;AAClBC,IAAAA,QAAQ,EAAE;AACX;AACF,CAAA;;ACxBD;;;;;;;;;;;;AAYG;AACI,MAAMC,eAAe,GAAGZ,eAAe,CAAC;AAC7CC,EAAAA,OAAO,EAAE,mBAAmB;AAC5BC,EAAAA,YAAY,EAAEW,sBAAsB;AACpCT,EAAAA,KAAK,EAAEC;AACR,CAAA;;ACjBD;;;;;;;;;;;;AAYG;AACI,MAAMS,gBAAgB,GAAGd,eAAe,CAAC;AAC9CC,EAAAA,OAAO,EAAE,oBAAoB;AAC7BC,EAAAA,YAAY,EAAEa,uBAAuB;AACrCX,EAAAA,KAAK,EAAEC;AACR,CAAA;;;;"}
|
package/dist/divider.js
CHANGED
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
* Copyright (c) 2025 matraic
|
|
4
4
|
* See LICENSE file in the project root for full license text.
|
|
5
5
|
*/
|
|
6
|
-
|
|
7
6
|
import React from 'react';
|
|
8
7
|
import { createComponent } from '@lit/react';
|
|
9
8
|
import { M3eDividerElement } from '@m3e/web/divider';
|
|
@@ -22,9 +21,9 @@ import { M3eDividerElement } from '@m3e/web/divider';
|
|
|
22
21
|
* styling, accessibility, and supported events.
|
|
23
22
|
*/
|
|
24
23
|
const M3eDivider = createComponent({
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
24
|
+
tagName: "m3e-divider",
|
|
25
|
+
elementClass: M3eDividerElement,
|
|
26
|
+
react: React
|
|
28
27
|
});
|
|
29
28
|
|
|
30
29
|
export { M3eDivider };
|
package/dist/divider.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"divider.js","sources":["../../src/divider/Divider.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eDividerElement } from \"@m3e/web/divider\";\r\nexport type { M3eDividerElement } from \"@m3e/web/divider\";\r\n\r\n/**\r\n * React binding for the `m3e-divider` Web Component from `@m3e/web/divider`.\r\n *\r\n * This component renders the underlying `<m3e-divider>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-divider>` instance for imperative access.\r\n *\r\n * See the `m3e-divider` documentation for full details on behavior,\r\n * styling, accessibility, and supported events.\r\n */\r\nexport const M3eDivider = createComponent({\r\n tagName: \"m3e-divider\",\r\n elementClass: M3eDividerElement,\r\n react: React,\r\n});\r\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"divider.js","sources":["../../src/divider/Divider.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eDividerElement } from \"@m3e/web/divider\";\r\nexport type { M3eDividerElement } from \"@m3e/web/divider\";\r\n\r\n/**\r\n * React binding for the `m3e-divider` Web Component from `@m3e/web/divider`.\r\n *\r\n * This component renders the underlying `<m3e-divider>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-divider>` instance for imperative access.\r\n *\r\n * See the `m3e-divider` documentation for full details on behavior,\r\n * styling, accessibility, and supported events.\r\n */\r\nexport const M3eDivider = createComponent({\r\n tagName: \"m3e-divider\",\r\n elementClass: M3eDividerElement,\r\n react: React,\r\n});\r\n"],"names":["M3eDivider","createComponent","tagName","elementClass","M3eDividerElement","react","React"],"mappings":";;;;;;;;;AAMA;;;;;;;;;;;;AAYG;AACI,MAAMA,UAAU,GAAGC,eAAe,CAAC;AACxCC,EAAAA,OAAO,EAAE,aAAa;AACtBC,EAAAA,YAAY,EAAEC,iBAAiB;AAC/BC,EAAAA,KAAK,EAAEC;AACR,CAAA;;;;"}
|
package/dist/drawer-container.js
CHANGED
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
* Copyright (c) 2025 matraic
|
|
4
4
|
* See LICENSE file in the project root for full license text.
|
|
5
5
|
*/
|
|
6
|
-
|
|
7
6
|
import React from 'react';
|
|
8
7
|
import { createComponent } from '@lit/react';
|
|
9
8
|
import { M3eDrawerContainerElement, M3eDrawerToggleElement } from '@m3e/web/drawer-container';
|
|
@@ -22,12 +21,12 @@ import { M3eDrawerContainerElement, M3eDrawerToggleElement } from '@m3e/web/draw
|
|
|
22
21
|
* styling, accessibility, and supported events.
|
|
23
22
|
*/
|
|
24
23
|
const M3eDrawerContainer = createComponent({
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
24
|
+
tagName: "m3e-drawer-container",
|
|
25
|
+
elementClass: M3eDrawerContainerElement,
|
|
26
|
+
react: React,
|
|
27
|
+
events: {
|
|
28
|
+
onChange: "change"
|
|
29
|
+
}
|
|
31
30
|
});
|
|
32
31
|
|
|
33
32
|
/**
|
|
@@ -44,9 +43,9 @@ const M3eDrawerContainer = createComponent({
|
|
|
44
43
|
* accessibility, and supported events.
|
|
45
44
|
*/
|
|
46
45
|
const M3eDrawerToggle = createComponent({
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
46
|
+
tagName: "m3e-drawer-toggle",
|
|
47
|
+
elementClass: M3eDrawerToggleElement,
|
|
48
|
+
react: React
|
|
50
49
|
});
|
|
51
50
|
|
|
52
51
|
export { M3eDrawerContainer, M3eDrawerToggle };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"drawer-container.js","sources":["../../src/drawer-container/DrawerContainer.ts","../../src/drawer-container/DrawerToggle.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eDrawerContainerElement } from \"@m3e/web/drawer-container\";\r\nexport type { DrawerMode, DrawerPosition, M3eDrawerContainerElement } from \"@m3e/web/drawer-container\";\r\n\r\n/**\r\n * React binding for the `m3e-drawer-container` Web Component from `@m3e/web/drawer-container`.\r\n *\r\n * This component renders the underlying `<m3e-drawer-container>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-drawer-container>` instance for imperative access.\r\n *\r\n * See the `m3e-drawer-container` documentation for full details on behavior,\r\n * styling, accessibility, and supported events.\r\n */\r\nexport const M3eDrawerContainer = createComponent({\r\n tagName: \"m3e-drawer-container\",\r\n elementClass: M3eDrawerContainerElement,\r\n react: React,\r\n events: {\r\n onChange: \"change\",\r\n },\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eDrawerToggleElement } from \"@m3e/web/drawer-container\";\r\nexport type { M3eDrawerToggleElement } from \"@m3e/web/drawer-container\";\r\n\r\n/**\r\n * React binding for the `m3e-drawer-toggle` Web Component from `@m3e/web/drawer-container`.\r\n *\r\n * This component renders the underlying `<m3e-drawer-toggle>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-drawer-toggle>` instance for imperative access.\r\n *\r\n * See the `m3e-drawer-toggle` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eDrawerToggle = createComponent({\r\n tagName: \"m3e-drawer-toggle\",\r\n elementClass: M3eDrawerToggleElement,\r\n react: React,\r\n});\r\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"drawer-container.js","sources":["../../src/drawer-container/DrawerContainer.ts","../../src/drawer-container/DrawerToggle.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eDrawerContainerElement } from \"@m3e/web/drawer-container\";\r\nexport type { DrawerMode, DrawerPosition, M3eDrawerContainerElement } from \"@m3e/web/drawer-container\";\r\n\r\n/**\r\n * React binding for the `m3e-drawer-container` Web Component from `@m3e/web/drawer-container`.\r\n *\r\n * This component renders the underlying `<m3e-drawer-container>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-drawer-container>` instance for imperative access.\r\n *\r\n * See the `m3e-drawer-container` documentation for full details on behavior,\r\n * styling, accessibility, and supported events.\r\n */\r\nexport const M3eDrawerContainer = createComponent({\r\n tagName: \"m3e-drawer-container\",\r\n elementClass: M3eDrawerContainerElement,\r\n react: React,\r\n events: {\r\n onChange: \"change\",\r\n },\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eDrawerToggleElement } from \"@m3e/web/drawer-container\";\r\nexport type { M3eDrawerToggleElement } from \"@m3e/web/drawer-container\";\r\n\r\n/**\r\n * React binding for the `m3e-drawer-toggle` Web Component from `@m3e/web/drawer-container`.\r\n *\r\n * This component renders the underlying `<m3e-drawer-toggle>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-drawer-toggle>` instance for imperative access.\r\n *\r\n * See the `m3e-drawer-toggle` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eDrawerToggle = createComponent({\r\n tagName: \"m3e-drawer-toggle\",\r\n elementClass: M3eDrawerToggleElement,\r\n react: React,\r\n});\r\n"],"names":["M3eDrawerContainer","createComponent","tagName","elementClass","M3eDrawerContainerElement","react","React","events","onChange","M3eDrawerToggle","M3eDrawerToggleElement"],"mappings":";;;;;;;;;AAMA;;;;;;;;;;;;AAYG;AACI,MAAMA,kBAAkB,GAAGC,eAAe,CAAC;AAChDC,EAAAA,OAAO,EAAE,sBAAsB;AAC/BC,EAAAA,YAAY,EAAEC,yBAAyB;AACvCC,EAAAA,KAAK,EAAEC,KAAK;AACZC,EAAAA,MAAM,EAAE;AACNC,IAAAA,QAAQ,EAAE;AACX;AACF,CAAA;;ACpBD;;;;;;;;;;;;AAYG;AACI,MAAMC,eAAe,GAAGR,eAAe,CAAC;AAC7CC,EAAAA,OAAO,EAAE,mBAAmB;AAC5BC,EAAAA,YAAY,EAAEO,sBAAsB;AACpCL,EAAAA,KAAK,EAAEC;AACR,CAAA;;;;"}
|
package/dist/expansion-panel.js
CHANGED
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
* Copyright (c) 2025 matraic
|
|
4
4
|
* See LICENSE file in the project root for full license text.
|
|
5
5
|
*/
|
|
6
|
-
|
|
7
6
|
import React from 'react';
|
|
8
7
|
import { createComponent } from '@lit/react';
|
|
9
8
|
import { M3eAccordionElement, M3eExpansionPanelElement } from '@m3e/web/expansion-panel';
|
|
@@ -22,9 +21,9 @@ import { M3eAccordionElement, M3eExpansionPanelElement } from '@m3e/web/expansio
|
|
|
22
21
|
* accessibility, and supported events.
|
|
23
22
|
*/
|
|
24
23
|
const M3eAccordion = createComponent({
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
24
|
+
tagName: "m3e-accordion",
|
|
25
|
+
elementClass: M3eAccordionElement,
|
|
26
|
+
react: React
|
|
28
27
|
});
|
|
29
28
|
|
|
30
29
|
/**
|
|
@@ -41,15 +40,15 @@ const M3eAccordion = createComponent({
|
|
|
41
40
|
* accessibility, and supported events.
|
|
42
41
|
*/
|
|
43
42
|
const M3eExpansionPanel = createComponent({
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
43
|
+
tagName: "m3e-expansion-panel",
|
|
44
|
+
elementClass: M3eExpansionPanelElement,
|
|
45
|
+
react: React,
|
|
46
|
+
events: {
|
|
47
|
+
onOpening: "opening",
|
|
48
|
+
onOpened: "opened",
|
|
49
|
+
onClosing: "closing",
|
|
50
|
+
onClosed: "closed"
|
|
51
|
+
}
|
|
53
52
|
});
|
|
54
53
|
|
|
55
54
|
export { M3eAccordion, M3eExpansionPanel };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"expansion-panel.js","sources":["../../src/expansion-panel/Accordion.ts","../../src/expansion-panel/ExpansionPanel.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eAccordionElement } from \"@m3e/web/expansion-panel\";\r\nexport type { M3eAccordionElement } from \"@m3e/web/expansion-panel\";\r\n\r\n/**\r\n * React binding for the `m3e-accordion` Web Component from `@m3e/web/expansion-panel`.\r\n *\r\n * This component renders the underlying `<m3e-accordion>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-accordion>` instance for imperative access.\r\n *\r\n * See the `m3e-accordion` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eAccordion = createComponent({\r\n tagName: \"m3e-accordion\",\r\n elementClass: M3eAccordionElement,\r\n react: React,\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eExpansionPanelElement } from \"@m3e/web/expansion-panel\";\r\nexport type {\r\n ExpansionToggleDirection,\r\n ExpansionTogglePosition,\r\n M3eExpansionPanelElement,\r\n} from \"@m3e/web/expansion-panel\";\r\n\r\n/**\r\n * React binding for the `m3e-expansion-panel` Web Component from `@m3e/web/expansion-panel`.\r\n *\r\n * This component renders the underlying `<m3e-expansion-panel>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-expansion-panel>` instance for imperative access.\r\n *\r\n * See the `m3e-expansion-panel` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eExpansionPanel = createComponent({\r\n tagName: \"m3e-expansion-panel\",\r\n elementClass: M3eExpansionPanelElement,\r\n react: React,\r\n events: {\r\n onOpening: \"opening\",\r\n onOpened: \"opened\",\r\n onClosing: \"closing\",\r\n onClosed: \"closed\",\r\n },\r\n});\r\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"expansion-panel.js","sources":["../../src/expansion-panel/Accordion.ts","../../src/expansion-panel/ExpansionPanel.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eAccordionElement } from \"@m3e/web/expansion-panel\";\r\nexport type { M3eAccordionElement } from \"@m3e/web/expansion-panel\";\r\n\r\n/**\r\n * React binding for the `m3e-accordion` Web Component from `@m3e/web/expansion-panel`.\r\n *\r\n * This component renders the underlying `<m3e-accordion>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-accordion>` instance for imperative access.\r\n *\r\n * See the `m3e-accordion` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eAccordion = createComponent({\r\n tagName: \"m3e-accordion\",\r\n elementClass: M3eAccordionElement,\r\n react: React,\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eExpansionPanelElement } from \"@m3e/web/expansion-panel\";\r\nexport type {\r\n ExpansionToggleDirection,\r\n ExpansionTogglePosition,\r\n M3eExpansionPanelElement,\r\n} from \"@m3e/web/expansion-panel\";\r\n\r\n/**\r\n * React binding for the `m3e-expansion-panel` Web Component from `@m3e/web/expansion-panel`.\r\n *\r\n * This component renders the underlying `<m3e-expansion-panel>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-expansion-panel>` instance for imperative access.\r\n *\r\n * See the `m3e-expansion-panel` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eExpansionPanel = createComponent({\r\n tagName: \"m3e-expansion-panel\",\r\n elementClass: M3eExpansionPanelElement,\r\n react: React,\r\n events: {\r\n onOpening: \"opening\",\r\n onOpened: \"opened\",\r\n onClosing: \"closing\",\r\n onClosed: \"closed\",\r\n },\r\n});\r\n"],"names":["M3eAccordion","createComponent","tagName","elementClass","M3eAccordionElement","react","React","M3eExpansionPanel","M3eExpansionPanelElement","events","onOpening","onOpened","onClosing","onClosed"],"mappings":";;;;;;;;;AAMA;;;;;;;;;;;;AAYG;AACI,MAAMA,YAAY,GAAGC,eAAe,CAAC;AAC1CC,EAAAA,OAAO,EAAE,eAAe;AACxBC,EAAAA,YAAY,EAAEC,mBAAmB;AACjCC,EAAAA,KAAK,EAAEC;AACR,CAAA;;ACbD;;;;;;;;;;;;AAYG;AACI,MAAMC,iBAAiB,GAAGN,eAAe,CAAC;AAC/CC,EAAAA,OAAO,EAAE,qBAAqB;AAC9BC,EAAAA,YAAY,EAAEK,wBAAwB;AACtCH,EAAAA,KAAK,EAAEC,KAAK;AACZG,EAAAA,MAAM,EAAE;AACNC,IAAAA,SAAS,EAAE,SAAS;AACpBC,IAAAA,QAAQ,EAAE,QAAQ;AAClBC,IAAAA,SAAS,EAAE,SAAS;AACpBC,IAAAA,QAAQ,EAAE;AACX;AACF,CAAA;;;;"}
|
package/dist/fab-menu.js
CHANGED
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
* Copyright (c) 2025 matraic
|
|
4
4
|
* See LICENSE file in the project root for full license text.
|
|
5
5
|
*/
|
|
6
|
-
|
|
7
6
|
import React from 'react';
|
|
8
7
|
import { createComponent } from '@lit/react';
|
|
9
8
|
import { M3eFabMenuElement, M3eFabMenuItemElement, M3eFabMenuTriggerElement } from '@m3e/web/fab-menu';
|
|
@@ -22,13 +21,13 @@ import { M3eFabMenuElement, M3eFabMenuItemElement, M3eFabMenuTriggerElement } fr
|
|
|
22
21
|
* accessibility, and supported events.
|
|
23
22
|
*/
|
|
24
23
|
const M3eFabMenu = createComponent({
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
24
|
+
tagName: "m3e-fab-menu",
|
|
25
|
+
elementClass: M3eFabMenuElement,
|
|
26
|
+
react: React,
|
|
27
|
+
events: {
|
|
28
|
+
onBeforeToggle: "beforetoggle",
|
|
29
|
+
onToggle: "toggle"
|
|
30
|
+
}
|
|
32
31
|
});
|
|
33
32
|
|
|
34
33
|
/**
|
|
@@ -45,12 +44,12 @@ const M3eFabMenu = createComponent({
|
|
|
45
44
|
* accessibility, and supported events.
|
|
46
45
|
*/
|
|
47
46
|
const M3eFabMenuItem = createComponent({
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
47
|
+
tagName: "m3e-fab-menu-item",
|
|
48
|
+
elementClass: M3eFabMenuItemElement,
|
|
49
|
+
react: React,
|
|
50
|
+
events: {
|
|
51
|
+
onClick: "click"
|
|
52
|
+
}
|
|
54
53
|
});
|
|
55
54
|
|
|
56
55
|
/**
|
|
@@ -67,9 +66,9 @@ const M3eFabMenuItem = createComponent({
|
|
|
67
66
|
* accessibility, and supported events.
|
|
68
67
|
*/
|
|
69
68
|
const M3eFabMenuTrigger = createComponent({
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
69
|
+
tagName: "m3e-fab-menu-trigger",
|
|
70
|
+
elementClass: M3eFabMenuTriggerElement,
|
|
71
|
+
react: React
|
|
73
72
|
});
|
|
74
73
|
|
|
75
74
|
export { M3eFabMenu, M3eFabMenuItem, M3eFabMenuTrigger };
|
package/dist/fab-menu.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fab-menu.js","sources":["../../src/fab-menu/FabMenu.ts","../../src/fab-menu/FabMenuItem.ts","../../src/fab-menu/FabMenuTrigger.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eFabMenuElement } from \"@m3e/web/fab-menu\";\r\nexport type { FabMenuVariant, M3eFabMenuElement } from \"@m3e/web/fab-menu\";\r\n\r\n/**\r\n * React binding for the `m3e-fab-menu` Web Component from `@m3e/web/fab-menu`.\r\n *\r\n * This component renders the underlying `<m3e-fab-menu>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-fab-menu>` instance for imperative access.\r\n *\r\n * See the `m3e-fab-menu` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eFabMenu = createComponent({\r\n tagName: \"m3e-fab-menu\",\r\n elementClass: M3eFabMenuElement,\r\n react: React,\r\n events: {\r\n onBeforeToggle: \"beforetoggle\",\r\n onToggle: \"toggle\",\r\n },\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eFabMenuItemElement } from \"@m3e/web/fab-menu\";\r\nexport type { M3eFabMenuItemElement } from \"@m3e/web/fab-menu\";\r\n\r\n/**\r\n * React binding for the `m3e-fab-menu-item` Web Component from `@m3e/web/fab-menu`.\r\n *\r\n * This component renders the underlying `<m3e-fab-menu-item>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-fab-menu-item>` instance for imperative access.\r\n *\r\n * See the `m3e-fab-menu-item` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eFabMenuItem = createComponent({\r\n tagName: \"m3e-fab-menu-item\",\r\n elementClass: M3eFabMenuItemElement,\r\n react: React,\r\n events: {\r\n onClick: \"click\",\r\n },\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eFabMenuTriggerElement } from \"@m3e/web/fab-menu\";\r\nexport type { M3eFabMenuTriggerElement } from \"@m3e/web/fab-menu\";\r\n\r\n/**\r\n * React binding for the `m3e-fab-menu-trigger` Web Component from `@m3e/web/fab-menu`.\r\n *\r\n * This component renders the underlying `<m3e-fab-menu-trigger>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-fab-menu-trigger>` instance for imperative access.\r\n *\r\n * See the `m3e-fab-menu-trigger` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eFabMenuTrigger = createComponent({\r\n tagName: \"m3e-fab-menu-trigger\",\r\n elementClass: M3eFabMenuTriggerElement,\r\n react: React,\r\n});\r\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"fab-menu.js","sources":["../../src/fab-menu/FabMenu.ts","../../src/fab-menu/FabMenuItem.ts","../../src/fab-menu/FabMenuTrigger.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eFabMenuElement } from \"@m3e/web/fab-menu\";\r\nexport type { FabMenuVariant, M3eFabMenuElement } from \"@m3e/web/fab-menu\";\r\n\r\n/**\r\n * React binding for the `m3e-fab-menu` Web Component from `@m3e/web/fab-menu`.\r\n *\r\n * This component renders the underlying `<m3e-fab-menu>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-fab-menu>` instance for imperative access.\r\n *\r\n * See the `m3e-fab-menu` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eFabMenu = createComponent({\r\n tagName: \"m3e-fab-menu\",\r\n elementClass: M3eFabMenuElement,\r\n react: React,\r\n events: {\r\n onBeforeToggle: \"beforetoggle\",\r\n onToggle: \"toggle\",\r\n },\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eFabMenuItemElement } from \"@m3e/web/fab-menu\";\r\nexport type { M3eFabMenuItemElement } from \"@m3e/web/fab-menu\";\r\n\r\n/**\r\n * React binding for the `m3e-fab-menu-item` Web Component from `@m3e/web/fab-menu`.\r\n *\r\n * This component renders the underlying `<m3e-fab-menu-item>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-fab-menu-item>` instance for imperative access.\r\n *\r\n * See the `m3e-fab-menu-item` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eFabMenuItem = createComponent({\r\n tagName: \"m3e-fab-menu-item\",\r\n elementClass: M3eFabMenuItemElement,\r\n react: React,\r\n events: {\r\n onClick: \"click\",\r\n },\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eFabMenuTriggerElement } from \"@m3e/web/fab-menu\";\r\nexport type { M3eFabMenuTriggerElement } from \"@m3e/web/fab-menu\";\r\n\r\n/**\r\n * React binding for the `m3e-fab-menu-trigger` Web Component from `@m3e/web/fab-menu`.\r\n *\r\n * This component renders the underlying `<m3e-fab-menu-trigger>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-fab-menu-trigger>` instance for imperative access.\r\n *\r\n * See the `m3e-fab-menu-trigger` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eFabMenuTrigger = createComponent({\r\n tagName: \"m3e-fab-menu-trigger\",\r\n elementClass: M3eFabMenuTriggerElement,\r\n react: React,\r\n});\r\n"],"names":["M3eFabMenu","createComponent","tagName","elementClass","M3eFabMenuElement","react","React","events","onBeforeToggle","onToggle","M3eFabMenuItem","M3eFabMenuItemElement","onClick","M3eFabMenuTrigger","M3eFabMenuTriggerElement"],"mappings":";;;;;;;;;AAMA;;;;;;;;;;;;AAYG;AACI,MAAMA,UAAU,GAAGC,eAAe,CAAC;AACxCC,EAAAA,OAAO,EAAE,cAAc;AACvBC,EAAAA,YAAY,EAAEC,iBAAiB;AAC/BC,EAAAA,KAAK,EAAEC,KAAK;AACZC,EAAAA,MAAM,EAAE;AACNC,IAAAA,cAAc,EAAE,cAAc;AAC9BC,IAAAA,QAAQ,EAAE;AACX;AACF,CAAA;;ACrBD;;;;;;;;;;;;AAYG;AACI,MAAMC,cAAc,GAAGT,eAAe,CAAC;AAC5CC,EAAAA,OAAO,EAAE,mBAAmB;AAC5BC,EAAAA,YAAY,EAAEQ,qBAAqB;AACnCN,EAAAA,KAAK,EAAEC,KAAK;AACZC,EAAAA,MAAM,EAAE;AACNK,IAAAA,OAAO,EAAE;AACV;AACF,CAAA;;ACpBD;;;;;;;;;;;;AAYG;AACI,MAAMC,iBAAiB,GAAGZ,eAAe,CAAC;AAC/CC,EAAAA,OAAO,EAAE,sBAAsB;AAC/BC,EAAAA,YAAY,EAAEW,wBAAwB;AACtCT,EAAAA,KAAK,EAAEC;AACR,CAAA;;;;"}
|
package/dist/fab.js
CHANGED
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
* Copyright (c) 2025 matraic
|
|
4
4
|
* See LICENSE file in the project root for full license text.
|
|
5
5
|
*/
|
|
6
|
-
|
|
7
6
|
import React from 'react';
|
|
8
7
|
import { createComponent } from '@lit/react';
|
|
9
8
|
import { M3eFabElement } from '@m3e/web/fab';
|
|
@@ -22,12 +21,12 @@ import { M3eFabElement } from '@m3e/web/fab';
|
|
|
22
21
|
* accessibility, and supported events.
|
|
23
22
|
*/
|
|
24
23
|
const M3eFab = createComponent({
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
24
|
+
tagName: "m3e-fab",
|
|
25
|
+
elementClass: M3eFabElement,
|
|
26
|
+
react: React,
|
|
27
|
+
events: {
|
|
28
|
+
onClick: "click"
|
|
29
|
+
}
|
|
31
30
|
});
|
|
32
31
|
|
|
33
32
|
export { M3eFab };
|
package/dist/fab.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fab.js","sources":["../../src/fab/Fab.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eFabElement } from \"@m3e/web/fab\";\r\nexport type { FabSize, FabVariant, M3eFabElement } from \"@m3e/web/fab\";\r\n\r\n/**\r\n * React binding for the `m3e-fab` Web Component from `@m3e/web/fab`.\r\n *\r\n * This component renders the underlying `<m3e-fab>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-fab>` instance for imperative access.\r\n *\r\n * See the `m3e-fab` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eFab = createComponent({\r\n tagName: \"m3e-fab\",\r\n elementClass: M3eFabElement,\r\n react: React,\r\n events: {\r\n onClick: \"click\",\r\n },\r\n});\r\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"fab.js","sources":["../../src/fab/Fab.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eFabElement } from \"@m3e/web/fab\";\r\nexport type { FabSize, FabVariant, M3eFabElement } from \"@m3e/web/fab\";\r\n\r\n/**\r\n * React binding for the `m3e-fab` Web Component from `@m3e/web/fab`.\r\n *\r\n * This component renders the underlying `<m3e-fab>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-fab>` instance for imperative access.\r\n *\r\n * See the `m3e-fab` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eFab = createComponent({\r\n tagName: \"m3e-fab\",\r\n elementClass: M3eFabElement,\r\n react: React,\r\n events: {\r\n onClick: \"click\",\r\n },\r\n});\r\n"],"names":["M3eFab","createComponent","tagName","elementClass","M3eFabElement","react","React","events","onClick"],"mappings":";;;;;;;;;AAMA;;;;;;;;;;;;AAYG;AACI,MAAMA,MAAM,GAAGC,eAAe,CAAC;AACpCC,EAAAA,OAAO,EAAE,SAAS;AAClBC,EAAAA,YAAY,EAAEC,aAAa;AAC3BC,EAAAA,KAAK,EAAEC,KAAK;AACZC,EAAAA,MAAM,EAAE;AACNC,IAAAA,OAAO,EAAE;AACV;AACF,CAAA;;;;"}
|
package/dist/form-field.js
CHANGED
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
* Copyright (c) 2025 matraic
|
|
4
4
|
* See LICENSE file in the project root for full license text.
|
|
5
5
|
*/
|
|
6
|
-
|
|
7
6
|
import React from 'react';
|
|
8
7
|
import { createComponent } from '@lit/react';
|
|
9
8
|
import { M3eFormFieldElement } from '@m3e/web/form-field';
|
|
@@ -22,9 +21,9 @@ import { M3eFormFieldElement } from '@m3e/web/form-field';
|
|
|
22
21
|
* accessibility, and supported events.
|
|
23
22
|
*/
|
|
24
23
|
const M3eFormField = createComponent({
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
24
|
+
tagName: "m3e-form-field",
|
|
25
|
+
elementClass: M3eFormFieldElement,
|
|
26
|
+
react: React
|
|
28
27
|
});
|
|
29
28
|
|
|
30
29
|
export { M3eFormField };
|
package/dist/form-field.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"form-field.js","sources":["../../src/form-field/FormField.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eFormFieldElement } from \"@m3e/web/form-field\";\r\nexport type { FloatLabelType, FormFieldVariant, FormFieldControl, M3eFormFieldElement } from \"@m3e/web/form-field\";\r\n\r\n/**\r\n * React binding for the `m3e-form-field` Web Component from `@m3e/web/form-field`.\r\n *\r\n * This component renders the underlying `<m3e-form-field>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-form-field>` instance for imperative access.\r\n *\r\n * See the `m3e-form-field` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eFormField = createComponent({\r\n tagName: \"m3e-form-field\",\r\n elementClass: M3eFormFieldElement,\r\n react: React,\r\n});\r\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"form-field.js","sources":["../../src/form-field/FormField.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eFormFieldElement } from \"@m3e/web/form-field\";\r\nexport type { FloatLabelType, FormFieldVariant, FormFieldControl, M3eFormFieldElement } from \"@m3e/web/form-field\";\r\n\r\n/**\r\n * React binding for the `m3e-form-field` Web Component from `@m3e/web/form-field`.\r\n *\r\n * This component renders the underlying `<m3e-form-field>` element and exposes its\r\n * properties, attributes, and events through an idiomatic React interface.\r\n *\r\n * Props map directly to element properties, and event handlers receive the\r\n * native DOM events dispatched by the component. Refs are forwarded to the\r\n * underlying `<m3e-form-field>` instance for imperative access.\r\n *\r\n * See the `m3e-form-field` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eFormField = createComponent({\r\n tagName: \"m3e-form-field\",\r\n elementClass: M3eFormFieldElement,\r\n react: React,\r\n});\r\n"],"names":["M3eFormField","createComponent","tagName","elementClass","M3eFormFieldElement","react","React"],"mappings":";;;;;;;;;AAMA;;;;;;;;;;;;AAYG;AACI,MAAMA,YAAY,GAAGC,eAAe,CAAC;AAC1CC,EAAAA,OAAO,EAAE,gBAAgB;AACzBC,EAAAA,YAAY,EAAEC,mBAAmB;AACjCC,EAAAA,KAAK,EAAEC;AACR,CAAA;;;;"}
|