@m3e/react 2.4.1 → 2.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/all.js +63 -1
- package/dist/all.js.map +1 -1
- package/dist/all.min.js +1 -1
- package/dist/all.min.js.map +1 -1
- package/dist/breadcrumb.js +52 -0
- package/dist/breadcrumb.js.map +1 -0
- package/dist/breadcrumb.min.js +7 -0
- package/dist/breadcrumb.min.js.map +1 -0
- package/dist/content-pane.js +30 -0
- package/dist/content-pane.js.map +1 -0
- package/dist/content-pane.min.js +7 -0
- package/dist/content-pane.min.js.map +1 -0
- package/dist/src/all.d.ts +2 -0
- package/dist/src/all.d.ts.map +1 -1
- package/dist/src/breadcrumb/Breadcrumb.d.ts +17 -0
- package/dist/src/breadcrumb/Breadcrumb.d.ts.map +1 -0
- package/dist/src/breadcrumb/BreadcrumbItem.d.ts +19 -0
- package/dist/src/breadcrumb/BreadcrumbItem.d.ts.map +1 -0
- package/dist/src/breadcrumb/index.d.ts +3 -0
- package/dist/src/breadcrumb/index.d.ts.map +1 -0
- package/dist/src/content-pane/ContentPane.d.ts +17 -0
- package/dist/src/content-pane/ContentPane.d.ts.map +1 -0
- package/dist/src/content-pane/index.d.ts +2 -0
- package/dist/src/content-pane/index.d.ts.map +1 -0
- package/package.json +10 -2
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license MIT
|
|
3
|
+
* Copyright (c) 2025–2026 matraic
|
|
4
|
+
* See LICENSE file in the project root for full license text.
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import { createComponent } from '@lit/react';
|
|
8
|
+
import { M3eBreadcrumbElement, M3eBreadcrumbItemElement } from '@m3e/web/breadcrumb';
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* React binding for the `m3e-breadcrumb` Web Component from `@m3e/web/breadcrumb`.
|
|
12
|
+
*
|
|
13
|
+
* This component renders the underlying `<m3e-breadcrumb>` element and exposes its
|
|
14
|
+
* properties, attributes, and events through an idiomatic React interface.
|
|
15
|
+
*
|
|
16
|
+
* Props map directly to element properties, and event handlers receive the
|
|
17
|
+
* native DOM events dispatched by the component. Refs are forwarded to the
|
|
18
|
+
* underlying `<m3e-breadcrumb>` instance for imperative access.
|
|
19
|
+
*
|
|
20
|
+
* See the `m3e-breadcrumb` documentation for full details on behavior,
|
|
21
|
+
* styling, accessibility, and supported events.
|
|
22
|
+
*/
|
|
23
|
+
const M3eBreadcrumb = createComponent({
|
|
24
|
+
tagName: "m3e-breadcrumb",
|
|
25
|
+
elementClass: M3eBreadcrumbElement,
|
|
26
|
+
react: React
|
|
27
|
+
});
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* React binding for the `m3e-breadcrumb-item` Web Component from `@m3e/web/breadcrumb`.
|
|
31
|
+
*
|
|
32
|
+
* This component renders the underlying `<m3e-breadcrumb-item>` element and exposes its
|
|
33
|
+
* properties, attributes, and events through an idiomatic React interface.
|
|
34
|
+
*
|
|
35
|
+
* Props map directly to element properties, and event handlers receive the
|
|
36
|
+
* native DOM events dispatched by the component. Refs are forwarded to the
|
|
37
|
+
* underlying `<m3e-breadcrumb-item>` instance for imperative access.
|
|
38
|
+
*
|
|
39
|
+
* See the `m3e-breadcrumb-item` documentation for full details on behavior,
|
|
40
|
+
* styling, accessibility, and supported events.
|
|
41
|
+
*/
|
|
42
|
+
const M3eBreadcrumbItem = createComponent({
|
|
43
|
+
tagName: "m3e-breadcrumb-item",
|
|
44
|
+
elementClass: M3eBreadcrumbItemElement,
|
|
45
|
+
react: React,
|
|
46
|
+
events: {
|
|
47
|
+
onClick: "click"
|
|
48
|
+
}
|
|
49
|
+
});
|
|
50
|
+
|
|
51
|
+
export { M3eBreadcrumb, M3eBreadcrumbItem };
|
|
52
|
+
//# sourceMappingURL=breadcrumb.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"breadcrumb.js","sources":["../../src/breadcrumb/Breadcrumb.ts","../../src/breadcrumb/BreadcrumbItem.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eBreadcrumbElement } from \"@m3e/web/breadcrumb\";\r\nexport type { M3eBreadcrumbElement } from \"@m3e/web/breadcrumb\";\r\n\r\n/**\r\n * React binding for the `m3e-breadcrumb` Web Component from `@m3e/web/breadcrumb`.\r\n *\r\n * This component renders the underlying `<m3e-breadcrumb>` 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-breadcrumb>` instance for imperative access.\r\n *\r\n * See the `m3e-breadcrumb` documentation for full details on behavior,\r\n * styling, accessibility, and supported events.\r\n */\r\nexport const M3eBreadcrumb = createComponent({\r\n tagName: \"m3e-breadcrumb\",\r\n elementClass: M3eBreadcrumbElement,\r\n react: React,\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eBreadcrumbItemElement } from \"@m3e/web/breadcrumb\";\r\nexport type { BreadcrumbItemCurrent, M3eBreadcrumbItemElement } from \"@m3e/web/breadcrumb\";\r\n\r\n/**\r\n * React binding for the `m3e-breadcrumb-item` Web Component from `@m3e/web/breadcrumb`.\r\n *\r\n * This component renders the underlying `<m3e-breadcrumb-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-breadcrumb-item>` instance for imperative access.\r\n *\r\n * See the `m3e-breadcrumb-item` documentation for full details on behavior,\r\n * styling, accessibility, and supported events.\r\n */\r\nexport const M3eBreadcrumbItem = createComponent({\r\n tagName: \"m3e-breadcrumb-item\",\r\n elementClass: M3eBreadcrumbItemElement,\r\n react: React,\r\n events: {\r\n onClick: \"click\",\r\n },\r\n});\r\n"],"names":["M3eBreadcrumb","createComponent","tagName","elementClass","M3eBreadcrumbElement","react","React","M3eBreadcrumbItem","M3eBreadcrumbItemElement","events","onClick"],"mappings":";;;;;;;;;AAMA;;;;;;;;;;;;AAYG;AACI,MAAMA,aAAa,GAAGC,eAAe,CAAC;AAC3CC,EAAAA,OAAO,EAAE,gBAAgB;AACzBC,EAAAA,YAAY,EAAEC,oBAAoB;AAClCC,EAAAA,KAAK,EAAEC;AACR,CAAA;;ACjBD;;;;;;;;;;;;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,OAAO,EAAE;AACV;AACF,CAAA;;;;"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license MIT
|
|
3
|
+
* Copyright (c) 2025–2026 matraic
|
|
4
|
+
* See LICENSE file in the project root for full license text.
|
|
5
|
+
*/
|
|
6
|
+
import e from"react";import{createComponent as m}from"@lit/react";import{M3eBreadcrumbElement as r,M3eBreadcrumbItemElement as t}from"@m3e/web/breadcrumb";const a=m({tagName:"m3e-breadcrumb",elementClass:r,react:e}),c=m({tagName:"m3e-breadcrumb-item",elementClass:t,react:e,events:{onClick:"click"}});export{a as M3eBreadcrumb,c as M3eBreadcrumbItem};
|
|
7
|
+
//# sourceMappingURL=breadcrumb.min.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"breadcrumb.min.js","sources":["../../src/breadcrumb/Breadcrumb.ts","../../src/breadcrumb/BreadcrumbItem.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eBreadcrumbElement } from \"@m3e/web/breadcrumb\";\r\nexport type { M3eBreadcrumbElement } from \"@m3e/web/breadcrumb\";\r\n\r\n/**\r\n * React binding for the `m3e-breadcrumb` Web Component from `@m3e/web/breadcrumb`.\r\n *\r\n * This component renders the underlying `<m3e-breadcrumb>` 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-breadcrumb>` instance for imperative access.\r\n *\r\n * See the `m3e-breadcrumb` documentation for full details on behavior,\r\n * styling, accessibility, and supported events.\r\n */\r\nexport const M3eBreadcrumb = createComponent({\r\n tagName: \"m3e-breadcrumb\",\r\n elementClass: M3eBreadcrumbElement,\r\n react: React,\r\n});\r\n","import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eBreadcrumbItemElement } from \"@m3e/web/breadcrumb\";\r\nexport type { BreadcrumbItemCurrent, M3eBreadcrumbItemElement } from \"@m3e/web/breadcrumb\";\r\n\r\n/**\r\n * React binding for the `m3e-breadcrumb-item` Web Component from `@m3e/web/breadcrumb`.\r\n *\r\n * This component renders the underlying `<m3e-breadcrumb-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-breadcrumb-item>` instance for imperative access.\r\n *\r\n * See the `m3e-breadcrumb-item` documentation for full details on behavior,\r\n * styling, accessibility, and supported events.\r\n */\r\nexport const M3eBreadcrumbItem = createComponent({\r\n tagName: \"m3e-breadcrumb-item\",\r\n elementClass: M3eBreadcrumbItemElement,\r\n react: React,\r\n events: {\r\n onClick: \"click\",\r\n },\r\n});\r\n"],"names":["M3eBreadcrumb","createComponent","tagName","elementClass","M3eBreadcrumbElement","react","React","M3eBreadcrumbItem","M3eBreadcrumbItemElement","events","onClick"],"mappings":";;;;;2JAmBO,MAAMA,EAAgBC,EAAgB,CAC3CC,QAAS,iBACTC,aAAcC,EACdC,MAAOC,ICHIC,EAAoBN,EAAgB,CAC/CC,QAAS,sBACTC,aAAcK,EACdH,MAAOC,EACPG,OAAQ,CACNC,QAAS"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license MIT
|
|
3
|
+
* Copyright (c) 2025–2026 matraic
|
|
4
|
+
* See LICENSE file in the project root for full license text.
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import { createComponent } from '@lit/react';
|
|
8
|
+
import { M3eContentPaneElement } from '@m3e/web/content-pane';
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* React binding for the `m3e-content-pane` Web Component from `@m3e/web/content-pane`.
|
|
12
|
+
*
|
|
13
|
+
* This component renders the underlying `<m3e-content-pane>` element and exposes its
|
|
14
|
+
* properties, attributes, and events through an idiomatic React interface.
|
|
15
|
+
*
|
|
16
|
+
* Props map directly to element properties, and event handlers receive the
|
|
17
|
+
* native DOM events dispatched by the component. Refs are forwarded to the
|
|
18
|
+
* underlying `<m3e-content-pane>` instance for imperative access.
|
|
19
|
+
*
|
|
20
|
+
* See the `m3e-content-pane` documentation for full details on behavior,
|
|
21
|
+
* styling, accessibility, and supported events.
|
|
22
|
+
*/
|
|
23
|
+
const M3eContentPane = createComponent({
|
|
24
|
+
tagName: "m3e-content-pane",
|
|
25
|
+
elementClass: M3eContentPaneElement,
|
|
26
|
+
react: React
|
|
27
|
+
});
|
|
28
|
+
|
|
29
|
+
export { M3eContentPane };
|
|
30
|
+
//# sourceMappingURL=content-pane.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"content-pane.js","sources":["../../src/content-pane/ContentPane.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eContentPaneElement } from \"@m3e/web/content-pane\";\r\nexport type { M3eContentPaneElement } from \"@m3e/web/content-pane\";\r\n\r\n/**\r\n * React binding for the `m3e-content-pane` Web Component from `@m3e/web/content-pane`.\r\n *\r\n * This component renders the underlying `<m3e-content-pane>` 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-content-pane>` instance for imperative access.\r\n *\r\n * See the `m3e-content-pane` documentation for full details on behavior,\r\n * styling, accessibility, and supported events.\r\n */\r\nexport const M3eContentPane = createComponent({\r\n tagName: \"m3e-content-pane\",\r\n elementClass: M3eContentPaneElement,\r\n react: React,\r\n});\r\n"],"names":["M3eContentPane","createComponent","tagName","elementClass","M3eContentPaneElement","react","React"],"mappings":";;;;;;;;;AAMA;;;;;;;;;;;;AAYG;AACI,MAAMA,cAAc,GAAGC,eAAe,CAAC;AAC5CC,EAAAA,OAAO,EAAE,kBAAkB;AAC3BC,EAAAA,YAAY,EAAEC,qBAAqB;AACnCC,EAAAA,KAAK,EAAEC;AACR,CAAA;;;;"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license MIT
|
|
3
|
+
* Copyright (c) 2025–2026 matraic
|
|
4
|
+
* See LICENSE file in the project root for full license text.
|
|
5
|
+
*/
|
|
6
|
+
import e from"react";import{createComponent as t}from"@lit/react";import{M3eContentPaneElement as m}from"@m3e/web/content-pane";const o=t({tagName:"m3e-content-pane",elementClass:m,react:e});export{o as M3eContentPane};
|
|
7
|
+
//# sourceMappingURL=content-pane.min.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"content-pane.min.js","sources":["../../src/content-pane/ContentPane.ts"],"sourcesContent":["import React from \"react\";\r\nimport { createComponent } from \"@lit/react\";\r\n\r\nimport { M3eContentPaneElement } from \"@m3e/web/content-pane\";\r\nexport type { M3eContentPaneElement } from \"@m3e/web/content-pane\";\r\n\r\n/**\r\n * React binding for the `m3e-content-pane` Web Component from `@m3e/web/content-pane`.\r\n *\r\n * This component renders the underlying `<m3e-content-pane>` 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-content-pane>` instance for imperative access.\r\n *\r\n * See the `m3e-content-pane` documentation for full details on behavior,\r\n * styling, accessibility, and supported events.\r\n */\r\nexport const M3eContentPane = createComponent({\r\n tagName: \"m3e-content-pane\",\r\n elementClass: M3eContentPaneElement,\r\n react: React,\r\n});\r\n"],"names":["M3eContentPane","createComponent","tagName","elementClass","M3eContentPaneElement","react","React"],"mappings":";;;;;gIAmBO,MAAMA,EAAiBC,EAAgB,CAC5CC,QAAS,mBACTC,aAAcC,EACdC,MAAOC"}
|
package/dist/src/all.d.ts
CHANGED
|
@@ -3,12 +3,14 @@ export * from "./autocomplete";
|
|
|
3
3
|
export * from "./avatar";
|
|
4
4
|
export * from "./badge";
|
|
5
5
|
export * from "./bottom-sheet";
|
|
6
|
+
export * from "./breadcrumb";
|
|
6
7
|
export * from "./button";
|
|
7
8
|
export * from "./button-group";
|
|
8
9
|
export * from "./calendar";
|
|
9
10
|
export * from "./card";
|
|
10
11
|
export * from "./checkbox";
|
|
11
12
|
export * from "./chips";
|
|
13
|
+
export * from "./content-pane";
|
|
12
14
|
export * from "./core";
|
|
13
15
|
export * from "./datepicker";
|
|
14
16
|
export * from "./dialog";
|
package/dist/src/all.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"all.d.ts","sourceRoot":"","sources":["../../src/all.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,UAAU,CAAC;AACzB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,OAAO,CAAC;AACtB,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,QAAQ,CAAC;AACvB,cAAc,eAAe,CAAC;AAC9B,cAAc,QAAQ,CAAC;AACvB,cAAc,qBAAqB,CAAC;AACpC,cAAc,QAAQ,CAAC;AACvB,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,aAAa,CAAC;AAC5B,cAAc,sBAAsB,CAAC;AACrC,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,oBAAoB,CAAC;AACnC,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,qBAAqB,CAAC;AACpC,cAAc,SAAS,CAAC;AACxB,cAAc,OAAO,CAAC;AACtB,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,QAAQ,CAAC"}
|
|
1
|
+
{"version":3,"file":"all.d.ts","sourceRoot":"","sources":["../../src/all.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC;AACxB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,QAAQ,CAAC;AACvB,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,OAAO,CAAC;AACtB,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,QAAQ,CAAC;AACvB,cAAc,eAAe,CAAC;AAC9B,cAAc,QAAQ,CAAC;AACvB,cAAc,qBAAqB,CAAC;AACpC,cAAc,QAAQ,CAAC;AACvB,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,aAAa,CAAC;AAC5B,cAAc,sBAAsB,CAAC;AACrC,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,oBAAoB,CAAC;AACnC,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,qBAAqB,CAAC;AACpC,cAAc,SAAS,CAAC;AACxB,cAAc,OAAO,CAAC;AACtB,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,QAAQ,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { M3eBreadcrumbElement } from "@m3e/web/breadcrumb";
|
|
2
|
+
export type { M3eBreadcrumbElement } from "@m3e/web/breadcrumb";
|
|
3
|
+
/**
|
|
4
|
+
* React binding for the `m3e-breadcrumb` Web Component from `@m3e/web/breadcrumb`.
|
|
5
|
+
*
|
|
6
|
+
* This component renders the underlying `<m3e-breadcrumb>` element and exposes its
|
|
7
|
+
* properties, attributes, and events through an idiomatic React interface.
|
|
8
|
+
*
|
|
9
|
+
* Props map directly to element properties, and event handlers receive the
|
|
10
|
+
* native DOM events dispatched by the component. Refs are forwarded to the
|
|
11
|
+
* underlying `<m3e-breadcrumb>` instance for imperative access.
|
|
12
|
+
*
|
|
13
|
+
* See the `m3e-breadcrumb` documentation for full details on behavior,
|
|
14
|
+
* styling, accessibility, and supported events.
|
|
15
|
+
*/
|
|
16
|
+
export declare const M3eBreadcrumb: import("@lit/react").ReactWebComponent<M3eBreadcrumbElement, {}>;
|
|
17
|
+
//# sourceMappingURL=Breadcrumb.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Breadcrumb.d.ts","sourceRoot":"","sources":["../../../src/breadcrumb/Breadcrumb.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,oBAAoB,EAAE,MAAM,qBAAqB,CAAC;AAC3D,YAAY,EAAE,oBAAoB,EAAE,MAAM,qBAAqB,CAAC;AAEhE;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,aAAa,kEAIxB,CAAC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { M3eBreadcrumbItemElement } from "@m3e/web/breadcrumb";
|
|
2
|
+
export type { BreadcrumbItemCurrent, M3eBreadcrumbItemElement } from "@m3e/web/breadcrumb";
|
|
3
|
+
/**
|
|
4
|
+
* React binding for the `m3e-breadcrumb-item` Web Component from `@m3e/web/breadcrumb`.
|
|
5
|
+
*
|
|
6
|
+
* This component renders the underlying `<m3e-breadcrumb-item>` element and exposes its
|
|
7
|
+
* properties, attributes, and events through an idiomatic React interface.
|
|
8
|
+
*
|
|
9
|
+
* Props map directly to element properties, and event handlers receive the
|
|
10
|
+
* native DOM events dispatched by the component. Refs are forwarded to the
|
|
11
|
+
* underlying `<m3e-breadcrumb-item>` instance for imperative access.
|
|
12
|
+
*
|
|
13
|
+
* See the `m3e-breadcrumb-item` documentation for full details on behavior,
|
|
14
|
+
* styling, accessibility, and supported events.
|
|
15
|
+
*/
|
|
16
|
+
export declare const M3eBreadcrumbItem: import("@lit/react").ReactWebComponent<M3eBreadcrumbItemElement, {
|
|
17
|
+
onClick: string;
|
|
18
|
+
}>;
|
|
19
|
+
//# sourceMappingURL=BreadcrumbItem.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BreadcrumbItem.d.ts","sourceRoot":"","sources":["../../../src/breadcrumb/BreadcrumbItem.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,wBAAwB,EAAE,MAAM,qBAAqB,CAAC;AAC/D,YAAY,EAAE,qBAAqB,EAAE,wBAAwB,EAAE,MAAM,qBAAqB,CAAC;AAE3F;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,iBAAiB;;EAO5B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/breadcrumb/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,cAAc,kBAAkB,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { M3eContentPaneElement } from "@m3e/web/content-pane";
|
|
2
|
+
export type { M3eContentPaneElement } from "@m3e/web/content-pane";
|
|
3
|
+
/**
|
|
4
|
+
* React binding for the `m3e-content-pane` Web Component from `@m3e/web/content-pane`.
|
|
5
|
+
*
|
|
6
|
+
* This component renders the underlying `<m3e-content-pane>` element and exposes its
|
|
7
|
+
* properties, attributes, and events through an idiomatic React interface.
|
|
8
|
+
*
|
|
9
|
+
* Props map directly to element properties, and event handlers receive the
|
|
10
|
+
* native DOM events dispatched by the component. Refs are forwarded to the
|
|
11
|
+
* underlying `<m3e-content-pane>` instance for imperative access.
|
|
12
|
+
*
|
|
13
|
+
* See the `m3e-content-pane` documentation for full details on behavior,
|
|
14
|
+
* styling, accessibility, and supported events.
|
|
15
|
+
*/
|
|
16
|
+
export declare const M3eContentPane: import("@lit/react").ReactWebComponent<M3eContentPaneElement, {}>;
|
|
17
|
+
//# sourceMappingURL=ContentPane.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ContentPane.d.ts","sourceRoot":"","sources":["../../../src/content-pane/ContentPane.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,qBAAqB,EAAE,MAAM,uBAAuB,CAAC;AAC9D,YAAY,EAAE,qBAAqB,EAAE,MAAM,uBAAuB,CAAC;AAEnE;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,cAAc,mEAIzB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/content-pane/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m3e/react",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.5.0",
|
|
4
4
|
"description": "React bindings for M3E Web Components",
|
|
5
5
|
"author": "matraic <matraic@yahoo.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -35,6 +35,10 @@
|
|
|
35
35
|
"types": "./dist/src/bottom-sheet/index.d.ts",
|
|
36
36
|
"default": "./dist/bottom-sheet.js"
|
|
37
37
|
},
|
|
38
|
+
"./breadcrumb": {
|
|
39
|
+
"types": "./dist/src/breadcrumb/index.d.ts",
|
|
40
|
+
"default": "./dist/breadcrumb.js"
|
|
41
|
+
},
|
|
38
42
|
"./button": {
|
|
39
43
|
"types": "./dist/src/button/index.d.ts",
|
|
40
44
|
"default": "./dist/button.js"
|
|
@@ -59,6 +63,10 @@
|
|
|
59
63
|
"types": "./dist/src/chips/index.d.ts",
|
|
60
64
|
"default": "./dist/chips.js"
|
|
61
65
|
},
|
|
66
|
+
"./content-pane": {
|
|
67
|
+
"types": "./dist/src/content-pane/index.d.ts",
|
|
68
|
+
"default": "./dist/content-pane.js"
|
|
69
|
+
},
|
|
62
70
|
"./core": {
|
|
63
71
|
"types": "./dist/src/core/index.d.ts",
|
|
64
72
|
"default": "./dist/core.js"
|
|
@@ -236,7 +244,7 @@
|
|
|
236
244
|
},
|
|
237
245
|
"peerDependencies": {
|
|
238
246
|
"@lit/react": "^1.0.8",
|
|
239
|
-
"@m3e/web": "^2.
|
|
247
|
+
"@m3e/web": "^2.5.0",
|
|
240
248
|
"lit": "^3.3.0",
|
|
241
249
|
"react": ">=18"
|
|
242
250
|
}
|