@object-ui/plugin-charts 0.3.1 → 2.0.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/.turbo/turbo-build.log +20 -0
- package/CHANGELOG.md +14 -0
- package/dist/AdvancedChartImpl-DFmeUY4Q.js +4529 -0
- package/dist/{BarChart-RKJxvg5Y.js → BarChart-C_I0OFbj.js} +6033 -5763
- package/dist/ChartImpl-B5LY4On3.js +79 -0
- package/dist/index-DSBO2Kdy.js +494 -0
- package/dist/index.js +5 -6
- package/dist/index.umd.cjs +22 -22
- package/dist/src/AdvancedChartImpl.d.ts +1 -1
- package/dist/src/ChartRenderer.d.ts +35 -0
- package/dist/src/ObjectChart.d.ts +1 -0
- package/dist/src/index.d.ts +5 -39
- package/dist/src/types.d.ts +1 -1
- package/examples/chart-examples.ts +54 -0
- package/package.json +7 -7
- package/src/AdvancedChartImpl.tsx +94 -18
- package/src/ChartRenderer.tsx +112 -0
- package/src/ObjectChart.tsx +79 -0
- package/src/index.test.ts +1 -1
- package/src/index.tsx +82 -121
- package/src/registration.test.tsx +22 -0
- package/vite.config.ts +13 -0
- package/vitest.config.ts +13 -0
- package/vitest.setup.ts +1 -0
- package/dist/AdvancedChartImpl-DJcN3TPx.js +0 -2530
- package/dist/ChartImpl-CE1UGkNR.js +0 -275
- package/dist/index-CTfEtwhn.js +0 -387
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
|
|
2
|
+
> @object-ui/plugin-charts@2.0.0 build /home/runner/work/objectui/objectui/packages/plugin-charts
|
|
3
|
+
> vite build
|
|
4
|
+
|
|
5
|
+
[36mvite v7.3.1 [32mbuilding client environment for production...[36m[39m
|
|
6
|
+
transforming...
|
|
7
|
+
[32m✓[39m 659 modules transformed.
|
|
8
|
+
rendering chunks...
|
|
9
|
+
[32m
|
|
10
|
+
[36m[vite:dts][32m Start generate declaration files...[39m
|
|
11
|
+
computing gzip size...
|
|
12
|
+
[32m[36m[vite:dts][32m Declaration files built in 24061ms.
|
|
13
|
+
[39m
|
|
14
|
+
[2mdist/[22m[36mindex.js [39m[1m[2m 0.20 kB[22m[1m[22m[2m │ gzip: 0.16 kB[22m
|
|
15
|
+
[2mdist/[22m[36mChartImpl-B5LY4On3.js [39m[1m[2m 3.25 kB[22m[1m[22m[2m │ gzip: 1.10 kB[22m
|
|
16
|
+
[2mdist/[22m[36mindex-DSBO2Kdy.js [39m[1m[2m 15.55 kB[22m[1m[22m[2m │ gzip: 4.54 kB[22m
|
|
17
|
+
[2mdist/[22m[36mAdvancedChartImpl-DFmeUY4Q.js [39m[1m[2m127.68 kB[22m[1m[22m[2m │ gzip: 26.51 kB[22m
|
|
18
|
+
[2mdist/[22m[36mBarChart-C_I0OFbj.js [39m[1m[33m555.79 kB[39m[22m[2m │ gzip: 138.30 kB[22m
|
|
19
|
+
[2mdist/[22m[36mindex.umd.cjs [39m[1m[2m482.37 kB[22m[1m[22m[2m │ gzip: 138.79 kB[22m
|
|
20
|
+
[32m✓ built in 43.95s[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @object-ui/plugin-charts
|
|
2
2
|
|
|
3
|
+
## 2.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- b859617: Release v1.0.0 — unify all package versions to 1.0.0
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [b859617]
|
|
12
|
+
- @object-ui/types@2.0.0
|
|
13
|
+
- @object-ui/core@2.0.0
|
|
14
|
+
- @object-ui/react@2.0.0
|
|
15
|
+
- @object-ui/components@2.0.0
|
|
16
|
+
|
|
3
17
|
## 0.3.1
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|