@object-ui/plugin-charts 3.1.0 → 3.1.2

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @object-ui/plugin-charts@3.1.0 build /home/runner/work/objectui/objectui/packages/plugin-charts
2
+ > @object-ui/plugin-charts@3.1.2 build /home/runner/work/objectui/objectui/packages/plugin-charts
3
3
  > vite build
4
4
 
5
5
  vite v7.3.1 building client environment for production...
@@ -9,7 +9,7 @@ rendering chunks...
9
9
  
10
10
  [vite:dts] Start generate declaration files...
11
11
  computing gzip size...
12
- [vite:dts] Declaration files built in 25831ms.
12
+ [vite:dts] Declaration files built in 20858ms.
13
13
  
14
14
  dist/index.js  0.20 kB │ gzip: 0.16 kB
15
15
  dist/ChartImpl-WXTkPN08.js  3.26 kB │ gzip: 1.11 kB
@@ -17,4 +17,4 @@ computing gzip size...
17
17
  dist/AdvancedChartImpl-D5NQFQLZ.js 130.06 kB │ gzip: 26.85 kB
18
18
  dist/BarChart-C_I0OFbj.js 555.79 kB │ gzip: 138.30 kB
19
19
  dist/index.umd.cjs 485.22 kB │ gzip: 139.51 kB
20
- ✓ built in 46.03s
20
+ ✓ built in 33.95s
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # @object-ui/plugin-charts
2
2
 
3
+ ## 3.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - @object-ui/types@3.1.2
8
+ - @object-ui/core@3.1.2
9
+ - @object-ui/react@3.1.2
10
+ - @object-ui/components@3.1.2
11
+
12
+ ## 3.1.1
13
+
14
+ ### Patch Changes
15
+
16
+ - Updated dependencies
17
+ - @object-ui/types@3.1.1
18
+ - @object-ui/components@3.1.1
19
+ - @object-ui/core@3.1.1
20
+ - @object-ui/react@3.1.1
21
+
3
22
  ## 3.0.3
4
23
 
5
24
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@object-ui/plugin-charts",
3
- "version": "3.1.0",
3
+ "version": "3.1.2",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "Chart components plugin for Object UI, powered by Recharts",
@@ -25,10 +25,10 @@
25
25
  },
26
26
  "dependencies": {
27
27
  "recharts": "^3.7.0",
28
- "@object-ui/components": "3.1.0",
29
- "@object-ui/core": "3.1.0",
30
- "@object-ui/react": "3.1.0",
31
- "@object-ui/types": "3.1.0"
28
+ "@object-ui/components": "3.1.2",
29
+ "@object-ui/core": "3.1.2",
30
+ "@object-ui/react": "3.1.2",
31
+ "@object-ui/types": "3.1.2"
32
32
  },
33
33
  "peerDependencies": {
34
34
  "react": "^18.0.0 || ^19.0.0",
@@ -1,22 +0,0 @@
1
- import React from 'react';
2
- import { render, screen } from '@testing-library/react';
3
- import { describe, it, expect, vi, beforeAll } from 'vitest';
4
- import { ComponentRegistry } from '@object-ui/core';
5
-
6
- describe('Plugin Charts Registration', () => {
7
- beforeAll(async () => {
8
- await import('./index');
9
- }, 30000);
10
-
11
- it('registers bar-chart component', () => {
12
- const config = ComponentRegistry.get('bar-chart');
13
- expect(config).toBeDefined();
14
- });
15
-
16
- it('registers chart component types', () => {
17
- expect(ComponentRegistry.get('chart')).toBeDefined(); // Assuming base
18
- // Verify aliases if they exist
19
- expect(ComponentRegistry.get('pie-chart')).toBeDefined();
20
- expect(ComponentRegistry.get('donut-chart')).toBeDefined();
21
- });
22
- });