@m3e/react 2.1.1 → 2.1.3
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/nav-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 { M3eNavMenuElement, M3eNavMenuItemElement, M3eNavMenuItemGroupElement } from '@m3e/web/nav-menu';
|
|
@@ -22,9 +21,9 @@ import { M3eNavMenuElement, M3eNavMenuItemElement, M3eNavMenuItemGroupElement }
|
|
|
22
21
|
* accessibility, and supported events.
|
|
23
22
|
*/
|
|
24
23
|
const M3eNavMenu = createComponent({
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
24
|
+
tagName: "m3e-nav-menu",
|
|
25
|
+
elementClass: M3eNavMenuElement,
|
|
26
|
+
react: React
|
|
28
27
|
});
|
|
29
28
|
|
|
30
29
|
/**
|
|
@@ -41,16 +40,16 @@ const M3eNavMenu = createComponent({
|
|
|
41
40
|
* accessibility, and supported events.
|
|
42
41
|
*/
|
|
43
42
|
const M3eNavMenuItem = createComponent({
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
43
|
+
tagName: "m3e-nav-menu-item",
|
|
44
|
+
elementClass: M3eNavMenuItemElement,
|
|
45
|
+
react: React,
|
|
46
|
+
events: {
|
|
47
|
+
onOpening: "opening",
|
|
48
|
+
onOpened: "opened",
|
|
49
|
+
onClosing: "closing",
|
|
50
|
+
onClosed: "closed",
|
|
51
|
+
onClick: "click"
|
|
52
|
+
}
|
|
54
53
|
});
|
|
55
54
|
|
|
56
55
|
/**
|
|
@@ -67,9 +66,9 @@ const M3eNavMenuItem = createComponent({
|
|
|
67
66
|
* accessibility, and supported events.
|
|
68
67
|
*/
|
|
69
68
|
const M3eNavMenuItemGroup = createComponent({
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
69
|
+
tagName: "m3e-nav-menu-item-group",
|
|
70
|
+
elementClass: M3eNavMenuItemGroupElement,
|
|
71
|
+
react: React
|
|
73
72
|
});
|
|
74
73
|
|
|
75
74
|
export { M3eNavMenu, M3eNavMenuItem, M3eNavMenuItemGroup };
|
package/dist/nav-menu.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"nav-menu.js","sources":["../../src/nav-menu/NavMenu.ts","../../src/nav-menu/NavMenuItem.ts","../../src/nav-menu/NavMenuItemGroup.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eNavMenuElement } from \"@m3e/web/nav-menu\";\r\nexport type { M3eNavMenuElement } from \"@m3e/web/nav-menu\";\r\n\r\n/**\r\n * React binding for the `m3e-nav-menu` Web Component from `@m3e/web/nav-menu`.\r\n *\r\n * This component renders the underlying `<m3e-nav-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-nav-menu>` instance for imperative access.\r\n *\r\n * See the `m3e-nav-menu` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eNavMenu = createComponent({\r\n tagName: \"m3e-nav-menu\",\r\n elementClass: M3eNavMenuElement,\r\n react: React,\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eNavMenuItemElement } from \"@m3e/web/nav-menu\";\r\nexport type { M3eNavMenuItemElement } from \"@m3e/web/nav-menu\";\r\n\r\n/**\r\n * React binding for the `m3e-nav-menu-item` Web Component from `@m3e/web/nav-menu`.\r\n *\r\n * This component renders the underlying `<m3e-nav-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-nav-menu-item>` instance for imperative access.\r\n *\r\n * See the `m3e-nav-menu-item` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eNavMenuItem = createComponent({\r\n tagName: \"m3e-nav-menu-item\",\r\n elementClass: M3eNavMenuItemElement,\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 onClick: \"click\",\r\n },\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eNavMenuItemGroupElement } from \"@m3e/web/nav-menu\";\r\nexport type { M3eNavMenuItemGroupElement } from \"@m3e/web/nav-menu\";\r\n\r\n/**\r\n * React binding for the `m3e-nav-menu-item-group` Web Component from `@m3e/web/nav-menu`.\r\n *\r\n * This component renders the underlying `<m3e-nav-menu-item-group>` 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-nav-menu-item-group>` instance for imperative access.\r\n *\r\n * See the `m3e-nav-menu-item-group` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eNavMenuItemGroup = createComponent({\r\n tagName: \"m3e-nav-menu-item-group\",\r\n elementClass: M3eNavMenuItemGroupElement,\r\n react: React,\r\n});\r\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"nav-menu.js","sources":["../../src/nav-menu/NavMenu.ts","../../src/nav-menu/NavMenuItem.ts","../../src/nav-menu/NavMenuItemGroup.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eNavMenuElement } from \"@m3e/web/nav-menu\";\r\nexport type { M3eNavMenuElement } from \"@m3e/web/nav-menu\";\r\n\r\n/**\r\n * React binding for the `m3e-nav-menu` Web Component from `@m3e/web/nav-menu`.\r\n *\r\n * This component renders the underlying `<m3e-nav-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-nav-menu>` instance for imperative access.\r\n *\r\n * See the `m3e-nav-menu` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eNavMenu = createComponent({\r\n tagName: \"m3e-nav-menu\",\r\n elementClass: M3eNavMenuElement,\r\n react: React,\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eNavMenuItemElement } from \"@m3e/web/nav-menu\";\r\nexport type { M3eNavMenuItemElement } from \"@m3e/web/nav-menu\";\r\n\r\n/**\r\n * React binding for the `m3e-nav-menu-item` Web Component from `@m3e/web/nav-menu`.\r\n *\r\n * This component renders the underlying `<m3e-nav-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-nav-menu-item>` instance for imperative access.\r\n *\r\n * See the `m3e-nav-menu-item` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eNavMenuItem = createComponent({\r\n tagName: \"m3e-nav-menu-item\",\r\n elementClass: M3eNavMenuItemElement,\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 onClick: \"click\",\r\n },\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eNavMenuItemGroupElement } from \"@m3e/web/nav-menu\";\r\nexport type { M3eNavMenuItemGroupElement } from \"@m3e/web/nav-menu\";\r\n\r\n/**\r\n * React binding for the `m3e-nav-menu-item-group` Web Component from `@m3e/web/nav-menu`.\r\n *\r\n * This component renders the underlying `<m3e-nav-menu-item-group>` 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-nav-menu-item-group>` instance for imperative access.\r\n *\r\n * See the `m3e-nav-menu-item-group` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eNavMenuItemGroup = createComponent({\r\n tagName: \"m3e-nav-menu-item-group\",\r\n elementClass: M3eNavMenuItemGroupElement,\r\n react: React,\r\n});\r\n"],"names":["M3eNavMenu","createComponent","tagName","elementClass","M3eNavMenuElement","react","React","M3eNavMenuItem","M3eNavMenuItemElement","events","onOpening","onOpened","onClosing","onClosed","onClick","M3eNavMenuItemGroup","M3eNavMenuItemGroupElement"],"mappings":";;;;;;;;;AAMA;;;;;;;;;;;;AAYG;AACI,MAAMA,UAAU,GAAGC,eAAe,CAAC;AACxCC,EAAAA,OAAO,EAAE,cAAc;AACvBC,EAAAA,YAAY,EAAEC,iBAAiB;AAC/BC,EAAAA,KAAK,EAAEC;AACR,CAAA;;ACjBD;;;;;;;;;;;;AAYG;AACI,MAAMC,cAAc,GAAGN,eAAe,CAAC;AAC5CC,EAAAA,OAAO,EAAE,mBAAmB;AAC5BC,EAAAA,YAAY,EAAEK,qBAAqB;AACnCH,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,QAAQ;AAClBC,IAAAA,OAAO,EAAE;AACV;AACF,CAAA;;ACxBD;;;;;;;;;;;;AAYG;AACI,MAAMC,mBAAmB,GAAGd,eAAe,CAAC;AACjDC,EAAAA,OAAO,EAAE,yBAAyB;AAClCC,EAAAA,YAAY,EAAEa,0BAA0B;AACxCX,EAAAA,KAAK,EAAEC;AACR,CAAA;;;;"}
|
package/dist/nav-rail.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 { M3eNavRailElement, M3eNavRailToggleElement } from '@m3e/web/nav-rail';
|
|
@@ -22,12 +21,12 @@ import { M3eNavRailElement, M3eNavRailToggleElement } from '@m3e/web/nav-rail';
|
|
|
22
21
|
* accessibility, and supported events.
|
|
23
22
|
*/
|
|
24
23
|
const M3eNavRail = createComponent({
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
24
|
+
tagName: "m3e-nav-rail",
|
|
25
|
+
elementClass: M3eNavRailElement,
|
|
26
|
+
react: React,
|
|
27
|
+
events: {
|
|
28
|
+
onChange: "change"
|
|
29
|
+
}
|
|
31
30
|
});
|
|
32
31
|
|
|
33
32
|
/**
|
|
@@ -44,9 +43,9 @@ const M3eNavRail = createComponent({
|
|
|
44
43
|
* accessibility, and supported events.
|
|
45
44
|
*/
|
|
46
45
|
const M3eNavRailToggle = createComponent({
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
46
|
+
tagName: "m3e-nav-rail-toggle",
|
|
47
|
+
elementClass: M3eNavRailToggleElement,
|
|
48
|
+
react: React
|
|
50
49
|
});
|
|
51
50
|
|
|
52
51
|
export { M3eNavRail, M3eNavRailToggle };
|
package/dist/nav-rail.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"nav-rail.js","sources":["../../src/nav-rail/NavRail.ts","../../src/nav-rail/NavRailToggle.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eNavRailElement } from \"@m3e/web/nav-rail\";\r\nexport type { M3eNavRailElement } from \"@m3e/web/nav-rail\";\r\n\r\n/**\r\n * React binding for the `m3e-nav-rail` Web Component from `@m3e/web/nav-rail`.\r\n *\r\n * This component renders the underlying `<m3e-nav-rail>` 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-nav-rail>` instance for imperative access.\r\n *\r\n * See the `m3e-nav-rail` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eNavRail = createComponent({\r\n tagName: \"m3e-nav-rail\",\r\n elementClass: M3eNavRailElement,\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 { M3eNavRailToggleElement } from \"@m3e/web/nav-rail\";\r\nexport type { M3eNavRailToggleElement } from \"@m3e/web/nav-rail\";\r\n\r\n/**\r\n * React binding for the `m3e-nav-rail-toggle` Web Component from `@m3e/web/nav-rail`.\r\n *\r\n * This component renders the underlying `<m3e-nav-rail-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-nav-rail-toggle>` instance for imperative access.\r\n *\r\n * See the `m3e-nav-rail-toggle` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eNavRailToggle = createComponent({\r\n tagName: \"m3e-nav-rail-toggle\",\r\n elementClass: M3eNavRailToggleElement,\r\n react: React,\r\n});\r\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"nav-rail.js","sources":["../../src/nav-rail/NavRail.ts","../../src/nav-rail/NavRailToggle.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eNavRailElement } from \"@m3e/web/nav-rail\";\r\nexport type { M3eNavRailElement } from \"@m3e/web/nav-rail\";\r\n\r\n/**\r\n * React binding for the `m3e-nav-rail` Web Component from `@m3e/web/nav-rail`.\r\n *\r\n * This component renders the underlying `<m3e-nav-rail>` 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-nav-rail>` instance for imperative access.\r\n *\r\n * See the `m3e-nav-rail` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eNavRail = createComponent({\r\n tagName: \"m3e-nav-rail\",\r\n elementClass: M3eNavRailElement,\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 { M3eNavRailToggleElement } from \"@m3e/web/nav-rail\";\r\nexport type { M3eNavRailToggleElement } from \"@m3e/web/nav-rail\";\r\n\r\n/**\r\n * React binding for the `m3e-nav-rail-toggle` Web Component from `@m3e/web/nav-rail`.\r\n *\r\n * This component renders the underlying `<m3e-nav-rail-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-nav-rail-toggle>` instance for imperative access.\r\n *\r\n * See the `m3e-nav-rail-toggle` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eNavRailToggle = createComponent({\r\n tagName: \"m3e-nav-rail-toggle\",\r\n elementClass: M3eNavRailToggleElement,\r\n react: React,\r\n});\r\n"],"names":["M3eNavRail","createComponent","tagName","elementClass","M3eNavRailElement","react","React","events","onChange","M3eNavRailToggle","M3eNavRailToggleElement"],"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,QAAQ,EAAE;AACX;AACF,CAAA;;ACpBD;;;;;;;;;;;;AAYG;AACI,MAAMC,gBAAgB,GAAGR,eAAe,CAAC;AAC9CC,EAAAA,OAAO,EAAE,qBAAqB;AAC9BC,EAAAA,YAAY,EAAEO,uBAAuB;AACrCL,EAAAA,KAAK,EAAEC;AACR,CAAA;;;;"}
|
package/dist/option.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 { M3eOptionElement, M3eOptGroupElement } from '@m3e/web/option';
|
|
@@ -22,9 +21,9 @@ import { M3eOptionElement, M3eOptGroupElement } from '@m3e/web/option';
|
|
|
22
21
|
* accessibility, and supported events.
|
|
23
22
|
*/
|
|
24
23
|
const M3eOption = createComponent({
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
24
|
+
tagName: "m3e-option",
|
|
25
|
+
elementClass: M3eOptionElement,
|
|
26
|
+
react: React
|
|
28
27
|
});
|
|
29
28
|
|
|
30
29
|
/**
|
|
@@ -41,9 +40,9 @@ const M3eOption = createComponent({
|
|
|
41
40
|
* accessibility, and supported events.
|
|
42
41
|
*/
|
|
43
42
|
const M3eOptGroup = createComponent({
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
43
|
+
tagName: "m3e-optgroup",
|
|
44
|
+
elementClass: M3eOptGroupElement,
|
|
45
|
+
react: React
|
|
47
46
|
});
|
|
48
47
|
|
|
49
48
|
export { M3eOptGroup, M3eOption };
|
package/dist/option.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"option.js","sources":["../../src/option/Option.ts","../../src/option/OptGroup.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eOptionElement } from \"@m3e/web/option\";\r\nexport type { M3eOptionElement } from \"@m3e/web/option\";\r\n\r\n/**\r\n * React binding for the `m3e-option` Web Component from `@m3e/web/option`.\r\n *\r\n * This component renders the underlying `<m3e-option>` 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-option>` instance for imperative access.\r\n *\r\n * See the `m3e-option` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eOption = createComponent({\r\n tagName: \"m3e-option\",\r\n elementClass: M3eOptionElement,\r\n react: React,\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eOptGroupElement } from \"@m3e/web/option\";\r\nexport type { M3eOptGroupElement } from \"@m3e/web/option\";\r\n\r\n/**\r\n * React binding for the `m3e-optgroup` Web Component from `@m3e/web/option`.\r\n *\r\n * This component renders the underlying `<m3e-optgroup>` 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-optgroup>` instance for imperative access.\r\n *\r\n * See the `m3e-optgroup` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eOptGroup = createComponent({\r\n tagName: \"m3e-optgroup\",\r\n elementClass: M3eOptGroupElement,\r\n react: React,\r\n});\r\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"option.js","sources":["../../src/option/Option.ts","../../src/option/OptGroup.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eOptionElement } from \"@m3e/web/option\";\r\nexport type { M3eOptionElement } from \"@m3e/web/option\";\r\n\r\n/**\r\n * React binding for the `m3e-option` Web Component from `@m3e/web/option`.\r\n *\r\n * This component renders the underlying `<m3e-option>` 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-option>` instance for imperative access.\r\n *\r\n * See the `m3e-option` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eOption = createComponent({\r\n tagName: \"m3e-option\",\r\n elementClass: M3eOptionElement,\r\n react: React,\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eOptGroupElement } from \"@m3e/web/option\";\r\nexport type { M3eOptGroupElement } from \"@m3e/web/option\";\r\n\r\n/**\r\n * React binding for the `m3e-optgroup` Web Component from `@m3e/web/option`.\r\n *\r\n * This component renders the underlying `<m3e-optgroup>` 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-optgroup>` instance for imperative access.\r\n *\r\n * See the `m3e-optgroup` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eOptGroup = createComponent({\r\n tagName: \"m3e-optgroup\",\r\n elementClass: M3eOptGroupElement,\r\n react: React,\r\n});\r\n"],"names":["M3eOption","createComponent","tagName","elementClass","M3eOptionElement","react","React","M3eOptGroup","M3eOptGroupElement"],"mappings":";;;;;;;;;AAMA;;;;;;;;;;;;AAYG;AACI,MAAMA,SAAS,GAAGC,eAAe,CAAC;AACvCC,EAAAA,OAAO,EAAE,YAAY;AACrBC,EAAAA,YAAY,EAAEC,gBAAgB;AAC9BC,EAAAA,KAAK,EAAEC;AACR,CAAA;;ACjBD;;;;;;;;;;;;AAYG;AACI,MAAMC,WAAW,GAAGN,eAAe,CAAC;AACzCC,EAAAA,OAAO,EAAE,cAAc;AACvBC,EAAAA,YAAY,EAAEK,kBAAkB;AAChCH,EAAAA,KAAK,EAAEC;AACR,CAAA;;;;"}
|
package/dist/paginator.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 { M3ePaginatorElement } from '@m3e/web/paginator';
|
|
@@ -22,12 +21,12 @@ import { M3ePaginatorElement } from '@m3e/web/paginator';
|
|
|
22
21
|
* accessibility, and supported events.
|
|
23
22
|
*/
|
|
24
23
|
const M3ePaginator = createComponent({
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
24
|
+
tagName: "m3e-paginator",
|
|
25
|
+
elementClass: M3ePaginatorElement,
|
|
26
|
+
react: React,
|
|
27
|
+
events: {
|
|
28
|
+
onPage: "page"
|
|
29
|
+
}
|
|
31
30
|
});
|
|
32
31
|
|
|
33
32
|
export { M3ePaginator };
|
package/dist/paginator.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"paginator.js","sources":["../../src/paginator/Paginator.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent, EventName } from \"@lit/react\";\r\n\r\nimport { M3ePaginatorElement, PageEventDetail } from \"@m3e/web/paginator\";\r\nexport type { M3ePaginatorElement, PageEventDetail } from \"@m3e/web/paginator\";\r\n\r\n/**\r\n * React binding for the `m3e-paginator` Web Component from `@m3e/web/paginator`.\r\n *\r\n * This component renders the underlying `<m3e-paginator>` 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-paginator>` instance for imperative access.\r\n *\r\n * See the `m3e-paginator` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3ePaginator = createComponent({\r\n tagName: \"m3e-paginator\",\r\n elementClass: M3ePaginatorElement,\r\n react: React,\r\n events: {\r\n onPage: \"page\" as EventName<CustomEvent<PageEventDetail>>,\r\n },\r\n});\r\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"paginator.js","sources":["../../src/paginator/Paginator.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent, EventName } from \"@lit/react\";\r\n\r\nimport { M3ePaginatorElement, PageEventDetail } from \"@m3e/web/paginator\";\r\nexport type { M3ePaginatorElement, PageEventDetail } from \"@m3e/web/paginator\";\r\n\r\n/**\r\n * React binding for the `m3e-paginator` Web Component from `@m3e/web/paginator`.\r\n *\r\n * This component renders the underlying `<m3e-paginator>` 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-paginator>` instance for imperative access.\r\n *\r\n * See the `m3e-paginator` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3ePaginator = createComponent({\r\n tagName: \"m3e-paginator\",\r\n elementClass: M3ePaginatorElement,\r\n react: React,\r\n events: {\r\n onPage: \"page\" as EventName<CustomEvent<PageEventDetail>>,\r\n },\r\n});\r\n"],"names":["M3ePaginator","createComponent","tagName","elementClass","M3ePaginatorElement","react","React","events","onPage"],"mappings":";;;;;;;;;AAMA;;;;;;;;;;;;AAYG;AACI,MAAMA,YAAY,GAAGC,eAAe,CAAC;AAC1CC,EAAAA,OAAO,EAAE,eAAe;AACxBC,EAAAA,YAAY,EAAEC,mBAAmB;AACjCC,EAAAA,KAAK,EAAEC,KAAK;AACZC,EAAAA,MAAM,EAAE;AACNC,IAAAA,MAAM,EAAE;AACT;AACF,CAAA;;;;"}
|
|
@@ -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 { M3eCircularProgressIndicatorElement, M3eLinearProgressIndicatorElement } from '@m3e/web/progress-indicator';
|
|
@@ -22,9 +21,9 @@ import { M3eCircularProgressIndicatorElement, M3eLinearProgressIndicatorElement
|
|
|
22
21
|
* accessibility, and supported events.
|
|
23
22
|
*/
|
|
24
23
|
const M3eCircularProgressIndicator = createComponent({
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
24
|
+
tagName: "m3e-circular-progress-indicator",
|
|
25
|
+
elementClass: M3eCircularProgressIndicatorElement,
|
|
26
|
+
react: React
|
|
28
27
|
});
|
|
29
28
|
|
|
30
29
|
/**
|
|
@@ -41,9 +40,9 @@ const M3eCircularProgressIndicator = createComponent({
|
|
|
41
40
|
* accessibility, and supported events.
|
|
42
41
|
*/
|
|
43
42
|
const M3eLinearProgressIndicator = createComponent({
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
43
|
+
tagName: "m3e-linear-progress-indicator",
|
|
44
|
+
elementClass: M3eLinearProgressIndicatorElement,
|
|
45
|
+
react: React
|
|
47
46
|
});
|
|
48
47
|
|
|
49
48
|
export { M3eCircularProgressIndicator, M3eLinearProgressIndicator };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"progress-indicator.js","sources":["../../src/progress-indicator/CircularProgressIndicator.ts","../../src/progress-indicator/LinearProgressIndicator.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eCircularProgressIndicatorElement } from \"@m3e/web/progress-indicator\";\r\nexport type { M3eCircularProgressIndicatorElement } from \"@m3e/web/progress-indicator\";\r\n\r\n/**\r\n * React binding for the `m3e-circular-progress-indicator` Web Component from `@m3e/web/progress-indicator`.\r\n *\r\n * This component renders the underlying `<m3e-circular-progress-indicator>` 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-circular-progress-indicator>` instance for imperative access.\r\n *\r\n * See the `m3e-circular-progress-indicator` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eCircularProgressIndicator = createComponent({\r\n tagName: \"m3e-circular-progress-indicator\",\r\n elementClass: M3eCircularProgressIndicatorElement,\r\n react: React,\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eLinearProgressIndicatorElement } from \"@m3e/web/progress-indicator\";\r\nexport type {\r\n ProgressIndicatorVariant,\r\n LinearProgressMode,\r\n M3eLinearProgressIndicatorElement,\r\n} from \"@m3e/web/progress-indicator\";\r\n\r\n/**\r\n * React binding for the `m3e-linear-progress-indicator` Web Component from `@m3e/web/progress-indicator`.\r\n *\r\n * This component renders the underlying `<m3e-linear-progress-indicator>` 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-linear-progress-indicator>` instance for imperative access.\r\n *\r\n * See the `m3e-linear-progress-indicator` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eLinearProgressIndicator = createComponent({\r\n tagName: \"m3e-linear-progress-indicator\",\r\n elementClass: M3eLinearProgressIndicatorElement,\r\n react: React,\r\n});\r\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"progress-indicator.js","sources":["../../src/progress-indicator/CircularProgressIndicator.ts","../../src/progress-indicator/LinearProgressIndicator.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eCircularProgressIndicatorElement } from \"@m3e/web/progress-indicator\";\r\nexport type { M3eCircularProgressIndicatorElement } from \"@m3e/web/progress-indicator\";\r\n\r\n/**\r\n * React binding for the `m3e-circular-progress-indicator` Web Component from `@m3e/web/progress-indicator`.\r\n *\r\n * This component renders the underlying `<m3e-circular-progress-indicator>` 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-circular-progress-indicator>` instance for imperative access.\r\n *\r\n * See the `m3e-circular-progress-indicator` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eCircularProgressIndicator = createComponent({\r\n tagName: \"m3e-circular-progress-indicator\",\r\n elementClass: M3eCircularProgressIndicatorElement,\r\n react: React,\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eLinearProgressIndicatorElement } from \"@m3e/web/progress-indicator\";\r\nexport type {\r\n ProgressIndicatorVariant,\r\n LinearProgressMode,\r\n M3eLinearProgressIndicatorElement,\r\n} from \"@m3e/web/progress-indicator\";\r\n\r\n/**\r\n * React binding for the `m3e-linear-progress-indicator` Web Component from `@m3e/web/progress-indicator`.\r\n *\r\n * This component renders the underlying `<m3e-linear-progress-indicator>` 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-linear-progress-indicator>` instance for imperative access.\r\n *\r\n * See the `m3e-linear-progress-indicator` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eLinearProgressIndicator = createComponent({\r\n tagName: \"m3e-linear-progress-indicator\",\r\n elementClass: M3eLinearProgressIndicatorElement,\r\n react: React,\r\n});\r\n"],"names":["M3eCircularProgressIndicator","createComponent","tagName","elementClass","M3eCircularProgressIndicatorElement","react","React","M3eLinearProgressIndicator","M3eLinearProgressIndicatorElement"],"mappings":";;;;;;;;;AAMA;;;;;;;;;;;;AAYG;AACI,MAAMA,4BAA4B,GAAGC,eAAe,CAAC;AAC1DC,EAAAA,OAAO,EAAE,iCAAiC;AAC1CC,EAAAA,YAAY,EAAEC,mCAAmC;AACjDC,EAAAA,KAAK,EAAEC;AACR,CAAA;;ACbD;;;;;;;;;;;;AAYG;AACI,MAAMC,0BAA0B,GAAGN,eAAe,CAAC;AACxDC,EAAAA,OAAO,EAAE,+BAA+B;AACxCC,EAAAA,YAAY,EAAEK,iCAAiC;AAC/CH,EAAAA,KAAK,EAAEC;AACR,CAAA;;;;"}
|
package/dist/radio-group.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 { M3eRadioElement, M3eRadioGroupElement } from '@m3e/web/radio-group';
|
|
@@ -22,14 +21,14 @@ import { M3eRadioElement, M3eRadioGroupElement } from '@m3e/web/radio-group';
|
|
|
22
21
|
* accessibility, and supported events.
|
|
23
22
|
*/
|
|
24
23
|
const M3eRadio = createComponent({
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
24
|
+
tagName: "m3e-radio",
|
|
25
|
+
elementClass: M3eRadioElement,
|
|
26
|
+
react: React,
|
|
27
|
+
events: {
|
|
28
|
+
onInput: "input",
|
|
29
|
+
onChange: "change",
|
|
30
|
+
onClick: "click"
|
|
31
|
+
}
|
|
33
32
|
});
|
|
34
33
|
|
|
35
34
|
/**
|
|
@@ -46,12 +45,12 @@ const M3eRadio = createComponent({
|
|
|
46
45
|
* accessibility, and supported events.
|
|
47
46
|
*/
|
|
48
47
|
const M3eRadioGroup = createComponent({
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
48
|
+
tagName: "m3e-radio-group",
|
|
49
|
+
elementClass: M3eRadioGroupElement,
|
|
50
|
+
react: React,
|
|
51
|
+
events: {
|
|
52
|
+
onChange: "change"
|
|
53
|
+
}
|
|
55
54
|
});
|
|
56
55
|
|
|
57
56
|
export { M3eRadio, M3eRadioGroup };
|
package/dist/radio-group.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"radio-group.js","sources":["../../src/radio-group/Radio.ts","../../src/radio-group/RadioGroup.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eRadioElement } from \"@m3e/web/radio-group\";\r\nexport type { M3eRadioElement } from \"@m3e/web/radio-group\";\r\n\r\n/**\r\n * React binding for the `m3e-radio` Web Component from `@m3e/web/radio-group`.\r\n *\r\n * This component renders the underlying `<m3e-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-radio>` instance for imperative access.\r\n *\r\n * See the `m3e-radio` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eRadio = createComponent({\r\n tagName: \"m3e-radio\",\r\n elementClass: M3eRadioElement,\r\n react: React,\r\n events: {\r\n onInput: \"input\",\r\n onChange: \"change\",\r\n onClick: \"click\",\r\n },\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eRadioGroupElement } from \"@m3e/web/radio-group\";\r\nexport type { M3eRadioGroupElement } from \"@m3e/web/radio-group\";\r\n\r\n/**\r\n * React binding for the `m3e-radio-group` Web Component from `@m3e/web/radio-group`.\r\n *\r\n * This component renders the underlying `<m3e-radio-group>` 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-radio-group>` instance for imperative access.\r\n *\r\n * See the `m3e-radio-group` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eRadioGroup = createComponent({\r\n tagName: \"m3e-radio-group\",\r\n elementClass: M3eRadioGroupElement,\r\n react: React,\r\n events: {\r\n onChange: \"change\",\r\n },\r\n});\r\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"radio-group.js","sources":["../../src/radio-group/Radio.ts","../../src/radio-group/RadioGroup.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eRadioElement } from \"@m3e/web/radio-group\";\r\nexport type { M3eRadioElement } from \"@m3e/web/radio-group\";\r\n\r\n/**\r\n * React binding for the `m3e-radio` Web Component from `@m3e/web/radio-group`.\r\n *\r\n * This component renders the underlying `<m3e-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-radio>` instance for imperative access.\r\n *\r\n * See the `m3e-radio` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eRadio = createComponent({\r\n tagName: \"m3e-radio\",\r\n elementClass: M3eRadioElement,\r\n react: React,\r\n events: {\r\n onInput: \"input\",\r\n onChange: \"change\",\r\n onClick: \"click\",\r\n },\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eRadioGroupElement } from \"@m3e/web/radio-group\";\r\nexport type { M3eRadioGroupElement } from \"@m3e/web/radio-group\";\r\n\r\n/**\r\n * React binding for the `m3e-radio-group` Web Component from `@m3e/web/radio-group`.\r\n *\r\n * This component renders the underlying `<m3e-radio-group>` 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-radio-group>` instance for imperative access.\r\n *\r\n * See the `m3e-radio-group` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eRadioGroup = createComponent({\r\n tagName: \"m3e-radio-group\",\r\n elementClass: M3eRadioGroupElement,\r\n react: React,\r\n events: {\r\n onChange: \"change\",\r\n },\r\n});\r\n"],"names":["M3eRadio","createComponent","tagName","elementClass","M3eRadioElement","react","React","events","onInput","onChange","onClick","M3eRadioGroup","M3eRadioGroupElement"],"mappings":";;;;;;;;;AAMA;;;;;;;;;;;;AAYG;AACI,MAAMA,QAAQ,GAAGC,eAAe,CAAC;AACtCC,EAAAA,OAAO,EAAE,WAAW;AACpBC,EAAAA,YAAY,EAAEC,eAAe;AAC7BC,EAAAA,KAAK,EAAEC,KAAK;AACZC,EAAAA,MAAM,EAAE;AACNC,IAAAA,OAAO,EAAE,OAAO;AAChBC,IAAAA,QAAQ,EAAE,QAAQ;AAClBC,IAAAA,OAAO,EAAE;AACV;AACF,CAAA;;ACtBD;;;;;;;;;;;;AAYG;AACI,MAAMC,aAAa,GAAGV,eAAe,CAAC;AAC3CC,EAAAA,OAAO,EAAE,iBAAiB;AAC1BC,EAAAA,YAAY,EAAES,oBAAoB;AAClCP,EAAAA,KAAK,EAAEC,KAAK;AACZC,EAAAA,MAAM,EAAE;AACNE,IAAAA,QAAQ,EAAE;AACX;AACF,CAAA;;;;"}
|
package/dist/segmented-button.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 { M3eSegmentedButtonElement, M3eButtonSegmentElement } from '@m3e/web/segmented-button';
|
|
@@ -22,13 +21,13 @@ import { M3eSegmentedButtonElement, M3eButtonSegmentElement } from '@m3e/web/seg
|
|
|
22
21
|
* accessibility, and supported events.
|
|
23
22
|
*/
|
|
24
23
|
const M3eSegmentedButton = createComponent({
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
24
|
+
tagName: "m3e-segmented-button",
|
|
25
|
+
elementClass: M3eSegmentedButtonElement,
|
|
26
|
+
react: React,
|
|
27
|
+
events: {
|
|
28
|
+
onInput: "input",
|
|
29
|
+
onChange: "change"
|
|
30
|
+
}
|
|
32
31
|
});
|
|
33
32
|
|
|
34
33
|
/**
|
|
@@ -45,14 +44,14 @@ const M3eSegmentedButton = createComponent({
|
|
|
45
44
|
* accessibility, and supported events.
|
|
46
45
|
*/
|
|
47
46
|
const M3eButtonSegment = createComponent({
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
47
|
+
tagName: "m3e-button-segment",
|
|
48
|
+
elementClass: M3eButtonSegmentElement,
|
|
49
|
+
react: React,
|
|
50
|
+
events: {
|
|
51
|
+
onInput: "input",
|
|
52
|
+
onChange: "change",
|
|
53
|
+
onClick: "click"
|
|
54
|
+
}
|
|
56
55
|
});
|
|
57
56
|
|
|
58
57
|
export { M3eButtonSegment, M3eSegmentedButton };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"segmented-button.js","sources":["../../src/segmented-button/SegmentedButton.ts","../../src/segmented-button/ButtonSegment.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eSegmentedButtonElement } from \"@m3e/web/segmented-button\";\r\nexport type { M3eSegmentedButtonElement } from \"@m3e/web/segmented-button\";\r\n\r\n/**\r\n * React binding for the `m3e-segmented-button` Web Component from `@m3e/web/segmented-button`.\r\n *\r\n * This component renders the underlying `<m3e-segmented-button>` 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-segmented-button>` instance for imperative access.\r\n *\r\n * See the `m3e-segmented-button` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eSegmentedButton = createComponent({\r\n tagName: \"m3e-segmented-button\",\r\n elementClass: M3eSegmentedButtonElement,\r\n react: React,\r\n events: {\r\n onInput: \"input\",\r\n onChange: \"change\",\r\n },\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eButtonSegmentElement } from \"@m3e/web/segmented-button\";\r\nexport type { M3eButtonSegmentElement } from \"@m3e/web/segmented-button\";\r\n\r\n/**\r\n * React binding for the `m3e-button-segment` Web Component from `@m3e/web/segmented-button`.\r\n *\r\n * This component renders the underlying `<m3e-button-segment>` 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-button-segment>` instance for imperative access.\r\n *\r\n * See the `m3e-button-segment` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eButtonSegment = createComponent({\r\n tagName: \"m3e-button-segment\",\r\n elementClass: M3eButtonSegmentElement,\r\n react: React,\r\n events: {\r\n onInput: \"input\",\r\n onChange: \"change\",\r\n onClick: \"click\",\r\n },\r\n});\r\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"segmented-button.js","sources":["../../src/segmented-button/SegmentedButton.ts","../../src/segmented-button/ButtonSegment.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eSegmentedButtonElement } from \"@m3e/web/segmented-button\";\r\nexport type { M3eSegmentedButtonElement } from \"@m3e/web/segmented-button\";\r\n\r\n/**\r\n * React binding for the `m3e-segmented-button` Web Component from `@m3e/web/segmented-button`.\r\n *\r\n * This component renders the underlying `<m3e-segmented-button>` 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-segmented-button>` instance for imperative access.\r\n *\r\n * See the `m3e-segmented-button` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eSegmentedButton = createComponent({\r\n tagName: \"m3e-segmented-button\",\r\n elementClass: M3eSegmentedButtonElement,\r\n react: React,\r\n events: {\r\n onInput: \"input\",\r\n onChange: \"change\",\r\n },\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eButtonSegmentElement } from \"@m3e/web/segmented-button\";\r\nexport type { M3eButtonSegmentElement } from \"@m3e/web/segmented-button\";\r\n\r\n/**\r\n * React binding for the `m3e-button-segment` Web Component from `@m3e/web/segmented-button`.\r\n *\r\n * This component renders the underlying `<m3e-button-segment>` 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-button-segment>` instance for imperative access.\r\n *\r\n * See the `m3e-button-segment` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eButtonSegment = createComponent({\r\n tagName: \"m3e-button-segment\",\r\n elementClass: M3eButtonSegmentElement,\r\n react: React,\r\n events: {\r\n onInput: \"input\",\r\n onChange: \"change\",\r\n onClick: \"click\",\r\n },\r\n});\r\n"],"names":["M3eSegmentedButton","createComponent","tagName","elementClass","M3eSegmentedButtonElement","react","React","events","onInput","onChange","M3eButtonSegment","M3eButtonSegmentElement","onClick"],"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,OAAO,EAAE,OAAO;AAChBC,IAAAA,QAAQ,EAAE;AACX;AACF,CAAA;;ACrBD;;;;;;;;;;;;AAYG;AACI,MAAMC,gBAAgB,GAAGT,eAAe,CAAC;AAC9CC,EAAAA,OAAO,EAAE,oBAAoB;AAC7BC,EAAAA,YAAY,EAAEQ,uBAAuB;AACrCN,EAAAA,KAAK,EAAEC,KAAK;AACZC,EAAAA,MAAM,EAAE;AACNC,IAAAA,OAAO,EAAE,OAAO;AAChBC,IAAAA,QAAQ,EAAE,QAAQ;AAClBG,IAAAA,OAAO,EAAE;AACV;AACF,CAAA;;;;"}
|
package/dist/select.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 { M3eSelectElement } from '@m3e/web/select';
|
|
@@ -22,13 +21,13 @@ import { M3eSelectElement } from '@m3e/web/select';
|
|
|
22
21
|
* accessibility, and supported events.
|
|
23
22
|
*/
|
|
24
23
|
const M3eSelect = createComponent({
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
24
|
+
tagName: "m3e-select",
|
|
25
|
+
elementClass: M3eSelectElement,
|
|
26
|
+
react: React,
|
|
27
|
+
events: {
|
|
28
|
+
onInput: "input",
|
|
29
|
+
onChange: "change"
|
|
30
|
+
}
|
|
32
31
|
});
|
|
33
32
|
|
|
34
33
|
export { M3eSelect };
|
package/dist/select.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"select.js","sources":["../../src/select/Select.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eSelectElement } from \"@m3e/web/select\";\r\nexport type { M3eSelectElement } from \"@m3e/web/select\";\r\n\r\n/**\r\n * React binding for the `m3e-select` Web Component from `@m3e/web/select`.\r\n *\r\n * This component renders the underlying `<m3e-select>` 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-select>` instance for imperative access.\r\n *\r\n * See the `m3e-select` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eSelect = createComponent({\r\n tagName: \"m3e-select\",\r\n elementClass: M3eSelectElement,\r\n react: React,\r\n events: {\r\n onInput: \"input\",\r\n onChange: \"change\",\r\n },\r\n});\r\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"select.js","sources":["../../src/select/Select.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eSelectElement } from \"@m3e/web/select\";\r\nexport type { M3eSelectElement } from \"@m3e/web/select\";\r\n\r\n/**\r\n * React binding for the `m3e-select` Web Component from `@m3e/web/select`.\r\n *\r\n * This component renders the underlying `<m3e-select>` 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-select>` instance for imperative access.\r\n *\r\n * See the `m3e-select` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eSelect = createComponent({\r\n tagName: \"m3e-select\",\r\n elementClass: M3eSelectElement,\r\n react: React,\r\n events: {\r\n onInput: \"input\",\r\n onChange: \"change\",\r\n },\r\n});\r\n"],"names":["M3eSelect","createComponent","tagName","elementClass","M3eSelectElement","react","React","events","onInput","onChange"],"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,OAAO,EAAE,OAAO;AAChBC,IAAAA,QAAQ,EAAE;AACX;AACF,CAAA;;;;"}
|
package/dist/shape.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 { M3eShapeElement } from '@m3e/web/shape';
|
|
@@ -22,9 +21,9 @@ import { M3eShapeElement } from '@m3e/web/shape';
|
|
|
22
21
|
* accessibility, and supported events.
|
|
23
22
|
*/
|
|
24
23
|
const M3eShape = createComponent({
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
24
|
+
tagName: "m3e-shape",
|
|
25
|
+
elementClass: M3eShapeElement,
|
|
26
|
+
react: React
|
|
28
27
|
});
|
|
29
28
|
|
|
30
29
|
export { M3eShape };
|
package/dist/shape.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"shape.js","sources":["../../src/shape/Shape.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eShapeElement } from \"@m3e/web/shape\";\r\nexport type { M3eShapeElement, ShapeName } from \"@m3e/web/shape\";\r\n\r\n/**\r\n * React binding for the `m3e-shape` Web Component from `@m3e/web/shape`.\r\n *\r\n * This component renders the underlying `<m3e-shape>` 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-shape>` instance for imperative access.\r\n *\r\n * See the `m3e-shape` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eShape = createComponent({\r\n tagName: \"m3e-shape\",\r\n elementClass: M3eShapeElement,\r\n react: React,\r\n});\r\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"shape.js","sources":["../../src/shape/Shape.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eShapeElement } from \"@m3e/web/shape\";\r\nexport type { M3eShapeElement, ShapeName } from \"@m3e/web/shape\";\r\n\r\n/**\r\n * React binding for the `m3e-shape` Web Component from `@m3e/web/shape`.\r\n *\r\n * This component renders the underlying `<m3e-shape>` 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-shape>` instance for imperative access.\r\n *\r\n * See the `m3e-shape` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eShape = createComponent({\r\n tagName: \"m3e-shape\",\r\n elementClass: M3eShapeElement,\r\n react: React,\r\n});\r\n"],"names":["M3eShape","createComponent","tagName","elementClass","M3eShapeElement","react","React"],"mappings":";;;;;;;;;AAMA;;;;;;;;;;;;AAYG;AACI,MAAMA,QAAQ,GAAGC,eAAe,CAAC;AACtCC,EAAAA,OAAO,EAAE,WAAW;AACpBC,EAAAA,YAAY,EAAEC,eAAe;AAC7BC,EAAAA,KAAK,EAAEC;AACR,CAAA;;;;"}
|
package/dist/slide-group.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 { M3eSlideGroupElement } from '@m3e/web/slide-group';
|
|
@@ -22,9 +21,9 @@ import { M3eSlideGroupElement } from '@m3e/web/slide-group';
|
|
|
22
21
|
* accessibility, and supported events.
|
|
23
22
|
*/
|
|
24
23
|
const M3eSlideGroup = createComponent({
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
24
|
+
tagName: "m3e-slide-group",
|
|
25
|
+
elementClass: M3eSlideGroupElement,
|
|
26
|
+
react: React
|
|
28
27
|
});
|
|
29
28
|
|
|
30
29
|
export { M3eSlideGroup };
|
package/dist/slide-group.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"slide-group.js","sources":["../../src/slide-group/SlideGroup.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eSlideGroupElement } from \"@m3e/web/slide-group\";\r\nexport type { M3eSlideGroupElement } from \"@m3e/web/slide-group\";\r\n\r\n/**\r\n * React binding for the `m3e-slide-group` Web Component from `@m3e/web/slide-group`.\r\n *\r\n * This component renders the underlying `<m3e-slide-group>` 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-group>` instance for imperative access.\r\n *\r\n * See the `m3e-slide-group` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eSlideGroup = createComponent({\r\n tagName: \"m3e-slide-group\",\r\n elementClass: M3eSlideGroupElement,\r\n react: React,\r\n});\r\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"slide-group.js","sources":["../../src/slide-group/SlideGroup.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eSlideGroupElement } from \"@m3e/web/slide-group\";\r\nexport type { M3eSlideGroupElement } from \"@m3e/web/slide-group\";\r\n\r\n/**\r\n * React binding for the `m3e-slide-group` Web Component from `@m3e/web/slide-group`.\r\n *\r\n * This component renders the underlying `<m3e-slide-group>` 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-group>` instance for imperative access.\r\n *\r\n * See the `m3e-slide-group` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eSlideGroup = createComponent({\r\n tagName: \"m3e-slide-group\",\r\n elementClass: M3eSlideGroupElement,\r\n react: React,\r\n});\r\n"],"names":["M3eSlideGroup","createComponent","tagName","elementClass","M3eSlideGroupElement","react","React"],"mappings":";;;;;;;;;AAMA;;;;;;;;;;;;AAYG;AACI,MAAMA,aAAa,GAAGC,eAAe,CAAC;AAC3CC,EAAAA,OAAO,EAAE,iBAAiB;AAC1BC,EAAAA,YAAY,EAAEC,oBAAoB;AAClCC,EAAAA,KAAK,EAAEC;AACR,CAAA;;;;"}
|
package/dist/slider.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 { M3eSliderElement, M3eSliderThumbElement } from '@m3e/web/slider';
|
|
@@ -22,9 +21,9 @@ import { M3eSliderElement, M3eSliderThumbElement } from '@m3e/web/slider';
|
|
|
22
21
|
* accessibility, and supported events.
|
|
23
22
|
*/
|
|
24
23
|
const M3eSlider = createComponent({
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
24
|
+
tagName: "m3e-slider",
|
|
25
|
+
elementClass: M3eSliderElement,
|
|
26
|
+
react: React
|
|
28
27
|
});
|
|
29
28
|
|
|
30
29
|
/**
|
|
@@ -41,14 +40,14 @@ const M3eSlider = createComponent({
|
|
|
41
40
|
* accessibility, and supported events.
|
|
42
41
|
*/
|
|
43
42
|
const M3eSliderThumb = createComponent({
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
43
|
+
tagName: "m3e-slider-thumb",
|
|
44
|
+
elementClass: M3eSliderThumbElement,
|
|
45
|
+
react: React,
|
|
46
|
+
events: {
|
|
47
|
+
onInput: "input",
|
|
48
|
+
onChange: "change",
|
|
49
|
+
onClick: "click"
|
|
50
|
+
}
|
|
52
51
|
});
|
|
53
52
|
|
|
54
53
|
export { M3eSlider, M3eSliderThumb };
|
package/dist/slider.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"slider.js","sources":["../../src/slider/Slider.ts","../../src/slider/SliderThumb.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eSliderElement } from \"@m3e/web/slider\";\r\nexport type { M3eSliderElement, SliderSize } from \"@m3e/web/slider\";\r\n\r\n/**\r\n * React binding for the `m3e-slider` Web Component from `@m3e/web/slider`.\r\n *\r\n * This component renders the underlying `<m3e-slider>` 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-slider>` instance for imperative access.\r\n *\r\n * See the `m3e-slider` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eSlider = createComponent({\r\n tagName: \"m3e-slider\",\r\n elementClass: M3eSliderElement,\r\n react: React,\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eSliderThumbElement } from \"@m3e/web/slider\";\r\nexport type { M3eSliderThumbElement } from \"@m3e/web/slider\";\r\n\r\n/**\r\n * React binding for the `m3e-slider-thumb` Web Component from `@m3e/web/slider`.\r\n *\r\n * This component renders the underlying `<m3e-slider-thumb>` 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-slider-thumb>` instance for imperative access.\r\n *\r\n * See the `m3e-slider-thumb` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eSliderThumb = createComponent({\r\n tagName: \"m3e-slider-thumb\",\r\n elementClass: M3eSliderThumbElement,\r\n react: React,\r\n events: {\r\n onInput: \"input\",\r\n onChange: \"change\",\r\n onClick: \"click\",\r\n },\r\n});\r\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"slider.js","sources":["../../src/slider/Slider.ts","../../src/slider/SliderThumb.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eSliderElement } from \"@m3e/web/slider\";\r\nexport type { M3eSliderElement, SliderSize } from \"@m3e/web/slider\";\r\n\r\n/**\r\n * React binding for the `m3e-slider` Web Component from `@m3e/web/slider`.\r\n *\r\n * This component renders the underlying `<m3e-slider>` 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-slider>` instance for imperative access.\r\n *\r\n * See the `m3e-slider` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eSlider = createComponent({\r\n tagName: \"m3e-slider\",\r\n elementClass: M3eSliderElement,\r\n react: React,\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eSliderThumbElement } from \"@m3e/web/slider\";\r\nexport type { M3eSliderThumbElement } from \"@m3e/web/slider\";\r\n\r\n/**\r\n * React binding for the `m3e-slider-thumb` Web Component from `@m3e/web/slider`.\r\n *\r\n * This component renders the underlying `<m3e-slider-thumb>` 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-slider-thumb>` instance for imperative access.\r\n *\r\n * See the `m3e-slider-thumb` documentation for full details on behavior, styling,\r\n * accessibility, and supported events.\r\n */\r\nexport const M3eSliderThumb = createComponent({\r\n tagName: \"m3e-slider-thumb\",\r\n elementClass: M3eSliderThumbElement,\r\n react: React,\r\n events: {\r\n onInput: \"input\",\r\n onChange: \"change\",\r\n onClick: \"click\",\r\n },\r\n});\r\n"],"names":["M3eSlider","createComponent","tagName","elementClass","M3eSliderElement","react","React","M3eSliderThumb","M3eSliderThumbElement","events","onInput","onChange","onClick"],"mappings":";;;;;;;;;AAMA;;;;;;;;;;;;AAYG;AACI,MAAMA,SAAS,GAAGC,eAAe,CAAC;AACvCC,EAAAA,OAAO,EAAE,YAAY;AACrBC,EAAAA,YAAY,EAAEC,gBAAgB;AAC9BC,EAAAA,KAAK,EAAEC;AACR,CAAA;;ACjBD;;;;;;;;;;;;AAYG;AACI,MAAMC,cAAc,GAAGN,eAAe,CAAC;AAC5CC,EAAAA,OAAO,EAAE,kBAAkB;AAC3BC,EAAAA,YAAY,EAAEK,qBAAqB;AACnCH,EAAAA,KAAK,EAAEC,KAAK;AACZG,EAAAA,MAAM,EAAE;AACNC,IAAAA,OAAO,EAAE,OAAO;AAChBC,IAAAA,QAAQ,EAAE,QAAQ;AAClBC,IAAAA,OAAO,EAAE;AACV;AACF,CAAA;;;;"}
|
package/dist/snackbar.js
CHANGED
package/dist/snackbar.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"snackbar.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"snackbar.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;"}
|