@manzanohq/charts 0.1.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.
@@ -0,0 +1 @@
1
+ {"version":3,"file":"chart.types.d.ts","sourceRoot":"","sources":["../src/chart.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,YAAY,EAAE,MAAM,UAAU,CAAC;AAExD,4BAA4B;AAC5B,MAAM,MAAM,WAAW,GACnB,KAAK,GACL,MAAM,GACN,KAAK,GACL,UAAU,GACV,OAAO,GACP,WAAW,GACX,SAAS,GACT,QAAQ,CAAC;AAEb,mDAAmD;AACnD,YAAY,EAAE,SAAS,EAAE,YAAY,EAAE,CAAC;AAExC,+CAA+C;AAC/C,MAAM,WAAW,gBAAgB;IAC/B,YAAY,EAAE,MAAM,CAAC;IACrB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;CACf"}
@@ -0,0 +1 @@
1
+ //# sourceMappingURL=chart.types.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": [],
4
+ "sourcesContent": [],
5
+ "mappings": "",
6
+ "names": []
7
+ }
@@ -0,0 +1,3 @@
1
+ export { MzChart } from './chart.component.js';
2
+ export type { MzChartType, ChartData, ChartOptions, ChartClickDetail } from './chart.types.js';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,sBAAsB,CAAC;AAC/C,YAAY,EAAE,WAAW,EAAE,SAAS,EAAE,YAAY,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,5 @@
1
+ import { MzChart } from "./chart.component.js";
2
+ export {
3
+ MzChart
4
+ };
5
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../src/index.ts"],
4
+ "sourcesContent": ["export { MzChart } from './chart.component.js';\nexport type { MzChartType, ChartData, ChartOptions, ChartClickDetail } from './chart.types.js';\n"],
5
+ "mappings": "AAAA,SAAS,eAAe;",
6
+ "names": []
7
+ }
package/package.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "@manzanohq/charts",
3
+ "version": "0.1.1",
4
+ "description": "Manzano Charts — Chart.js wrapper as a Lit web component",
5
+ "license": "Apache-2.0",
6
+ "type": "module",
7
+ "exports": {
8
+ ".": {
9
+ "types": "./dist/index.d.ts",
10
+ "default": "./dist/index.js"
11
+ },
12
+ "./dist/*": "./dist/*"
13
+ },
14
+ "files": [
15
+ "dist",
16
+ "cdn"
17
+ ],
18
+ "dependencies": {
19
+ "chart.js": "^4.4.0"
20
+ },
21
+ "peerDependencies": {
22
+ "lit": "^3.0.0",
23
+ "@manzanohq/components": "0.1.1"
24
+ },
25
+ "devDependencies": {
26
+ "esbuild": "^0.25.0",
27
+ "globby": "^14.1.0",
28
+ "del": "^8.0.0",
29
+ "@open-wc/testing": "^4.0.0",
30
+ "@web/test-runner": "^0.20.0",
31
+ "@web/test-runner-playwright": "^0.11.0",
32
+ "@web/dev-server-esbuild": "^1.0.0",
33
+ "typescript": "~5.8.0"
34
+ },
35
+ "scripts": {
36
+ "build": "node scripts/build.js",
37
+ "test": "wtr",
38
+ "clean": "node -e \"import('del').then(m => m.deleteAsync(['dist', 'cdn']))\""
39
+ }
40
+ }