@object-ui/plugin-charts 3.1.5 → 3.3.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.
Files changed (36) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/README.md +24 -0
  3. package/dist/{AdvancedChartImpl-DmHTUUVD.js → AdvancedChartImpl-DxaZtNlE.js} +1214 -1206
  4. package/dist/{BarChart-XZkfLmcU.js → BarChart-BQS4sYHd.js} +3859 -3766
  5. package/dist/{ChartImpl-0VlpsMWG.js → ChartImpl-BaXisyXJ.js} +6 -6
  6. package/dist/index.d.ts +1 -1
  7. package/dist/index.js +207 -63
  8. package/dist/index.umd.cjs +19 -19
  9. package/dist/{jsx-runtime-C8d0IhUE.js → jsx-runtime-Caia9pQX.js} +1 -1
  10. package/dist/packages/plugin-charts/src/ObjectChart.d.ts +31 -0
  11. package/package.json +34 -10
  12. package/.turbo/turbo-build.log +0 -26
  13. package/dist/src/ObjectChart.d.ts +0 -12
  14. package/examples/chart-examples.ts +0 -54
  15. package/src/AdvancedChartImpl.tsx +0 -309
  16. package/src/ChartContainerImpl.tsx +0 -353
  17. package/src/ChartImpl.tsx +0 -91
  18. package/src/ChartRenderer.tsx +0 -112
  19. package/src/ObjectChart.stories.tsx +0 -104
  20. package/src/ObjectChart.tsx +0 -145
  21. package/src/__tests__/ObjectChart.aggregation.test.ts +0 -166
  22. package/src/__tests__/ObjectChart.dataFetch.test.tsx +0 -303
  23. package/src/index.test.ts +0 -136
  24. package/src/index.tsx +0 -172
  25. package/src/types.ts +0 -68
  26. package/tsconfig.json +0 -17
  27. package/vite.config.ts +0 -61
  28. package/vitest.config.ts +0 -13
  29. package/vitest.setup.ts +0 -1
  30. /package/dist/{src → packages/plugin-charts/src}/AdvancedChartImpl.d.ts +0 -0
  31. /package/dist/{src → packages/plugin-charts/src}/ChartContainerImpl.d.ts +0 -0
  32. /package/dist/{src → packages/plugin-charts/src}/ChartImpl.d.ts +0 -0
  33. /package/dist/{src → packages/plugin-charts/src}/ChartRenderer.d.ts +0 -0
  34. /package/dist/{src → packages/plugin-charts/src}/ObjectChart.stories.d.ts +0 -0
  35. /package/dist/{src → packages/plugin-charts/src}/index.d.ts +0 -0
  36. /package/dist/{src → packages/plugin-charts/src}/types.d.ts +0 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # @object-ui/plugin-charts
2
2
 
3
+ ## 3.3.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [b429568]
8
+ - @object-ui/components@3.3.1
9
+ - @object-ui/types@3.3.1
10
+ - @object-ui/core@3.3.1
11
+ - @object-ui/react@3.3.1
12
+
13
+ ## 3.3.0
14
+
15
+ ### Patch Changes
16
+
17
+ - @object-ui/types@3.3.0
18
+ - @object-ui/core@3.3.0
19
+ - @object-ui/react@3.3.0
20
+ - @object-ui/components@3.3.0
21
+
22
+ ## 3.2.0
23
+
24
+ ### Patch Changes
25
+
26
+ - @object-ui/types@3.2.0
27
+ - @object-ui/core@3.2.0
28
+ - @object-ui/react@3.2.0
29
+ - @object-ui/components@3.2.0
30
+
3
31
  ## 3.1.5
4
32
 
5
33
  ### Patch Changes
package/README.md CHANGED
@@ -119,3 +119,27 @@ By using lazy loading, the main application bundle stays lean:
119
119
  - With lazy loading: +0.19 KB on initial load, +541 KB only when chart is rendered
120
120
 
121
121
  This results in significantly faster initial page loads for applications that don't use charts on every page.
122
+
123
+ <!-- release-metadata:v3.3.0 -->
124
+
125
+ ## Compatibility
126
+
127
+ - **React:** 18.x or 19.x
128
+ - **Node.js:** ≥ 18
129
+ - **TypeScript:** ≥ 5.0 (strict mode)
130
+ - **`@objectstack/spec`:** ^3.3.0
131
+ - **`@objectstack/client`:** ^3.3.0
132
+ - **Tailwind CSS:** ≥ 3.4 (for packages with UI)
133
+
134
+ ## Links
135
+
136
+ - 📚 [Documentation](https://www.objectui.org/docs/plugins/plugin-charts)
137
+ - 📦 [npm package](https://www.npmjs.com/package/@object-ui/plugin-charts)
138
+ - 📝 [Changelog](./CHANGELOG.md)
139
+ - 🐛 [Report an issue](https://github.com/objectstack-ai/objectui/issues)
140
+ - 🤝 [Contributing Guide](https://github.com/objectstack-ai/objectui/blob/main/CONTRIBUTING.md)
141
+ - 🗺️ [Roadmap](https://github.com/objectstack-ai/objectui/blob/main/ROADMAP.md)
142
+
143
+ ## License
144
+
145
+ MIT — see [LICENSE](./LICENSE).