@nuralyui/breadcrumb 0.0.1

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/index.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ export * from './breadcrumb.component.js';
2
+ //# sourceMappingURL=index.d.ts.map
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ export * from './breadcrumb.component.js';
2
+ //# sourceMappingURL=index.js.map
package/index.js.map ADDED
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/components/breadcrumb/index.ts"],"names":[],"mappings":"AAAA,cAAc,2BAA2B,CAAC","sourcesContent":["export * from './breadcrumb.component.js';\n"]}
package/package.json ADDED
@@ -0,0 +1,44 @@
1
+ {
2
+ "name": "@nuralyui/breadcrumb",
3
+ "version": "0.0.1",
4
+ "description": "Breadcrumb component for NuralyUI library",
5
+ "main": "index.js",
6
+ "type": "module",
7
+ "exports": {
8
+ ".": {
9
+ "import": "./index.js"
10
+ },
11
+ "./bundle": {
12
+ "import": "./bundle.js"
13
+ }
14
+ },
15
+ "files": [
16
+ "*.js",
17
+ "*.d.ts",
18
+ "*.js.map",
19
+ "breadcrumb.bundled.js",
20
+ "bundle.js"
21
+ ],
22
+ "scripts": {
23
+ "test": "echo \"Error: no test specified\" && exit 1"
24
+ },
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "https://github.com/NuralyUI/NuralyUI.git",
28
+ "directory": "src/components/breadcrumb"
29
+ },
30
+ "keywords": [
31
+ "breadcrumb",
32
+ "navigation",
33
+ "web-components",
34
+ "lit-element",
35
+ "nuralyui",
36
+ "ui-components"
37
+ ],
38
+ "author": "Nuraly, Laabidi Aymen",
39
+ "license": "MIT",
40
+ "bugs": {
41
+ "url": "https://github.com/NuralyUI/NuralyUI/issues"
42
+ },
43
+ "homepage": "https://github.com/NuralyUI/NuralyUI#readme"
44
+ }
package/react.d.ts ADDED
@@ -0,0 +1,5 @@
1
+ import { NrBreadcrumbElement } from './breadcrumb.component.js';
2
+ export declare const NrBreadcrumb: import("@lit-labs/react").ReactWebComponent<NrBreadcrumbElement, {
3
+ onBreadcrumbClick: string;
4
+ }>;
5
+ //# sourceMappingURL=react.d.ts.map
package/react.js ADDED
@@ -0,0 +1,12 @@
1
+ import { createComponent } from '@lit-labs/react';
2
+ import * as React from 'react';
3
+ import { NrBreadcrumbElement } from './breadcrumb.component.js';
4
+ export const NrBreadcrumb = createComponent({
5
+ tagName: 'nr-breadcrumb',
6
+ elementClass: NrBreadcrumbElement,
7
+ react: React,
8
+ events: {
9
+ onBreadcrumbClick: 'nr-breadcrumb-click',
10
+ },
11
+ });
12
+ //# sourceMappingURL=react.js.map
package/react.js.map ADDED
@@ -0,0 +1 @@
1
+ {"version":3,"file":"react.js","sourceRoot":"","sources":["../../../src/components/breadcrumb/react.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAClD,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,mBAAmB,EAAE,MAAM,2BAA2B,CAAC;AAChE,MAAM,CAAC,MAAM,YAAY,GAAG,eAAe,CAAC;IAC1C,OAAO,EAAE,eAAe;IACxB,YAAY,EAAE,mBAAmB;IACjC,KAAK,EAAE,KAAK;IACZ,MAAM,EAAE;QACN,iBAAiB,EAAE,qBAAqB;KACzC;CACF,CAAC,CAAC","sourcesContent":["import { createComponent } from '@lit-labs/react';\nimport * as React from 'react';\nimport { NrBreadcrumbElement } from './breadcrumb.component.js';\nexport const NrBreadcrumb = createComponent({\n tagName: 'nr-breadcrumb',\n elementClass: NrBreadcrumbElement,\n react: React,\n events: {\n onBreadcrumbClick: 'nr-breadcrumb-click',\n },\n});\n"]}