@univerjs-pro/sheets-chart-ui 0.5.2 → 0.5.3
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/lib/cjs/facade.js +1 -1
- package/lib/cjs/index.js +1 -1
- package/lib/cjs/locale/en-US.js +1 -1
- package/lib/cjs/locale/fa-IR.js +1 -1
- package/lib/cjs/locale/fr-FR.js +1 -1
- package/lib/cjs/locale/ru-RU.js +1 -1
- package/lib/cjs/locale/vi-VN.js +1 -1
- package/lib/cjs/locale/zh-CN.js +1 -1
- package/lib/cjs/locale/zh-TW.js +1 -1
- package/lib/es/facade.js +1 -1
- package/lib/es/index.js +1 -1
- package/lib/es/locale/en-US.js +1 -1
- package/lib/es/locale/fa-IR.js +1 -1
- package/lib/es/locale/fr-FR.js +1 -1
- package/lib/es/locale/ru-RU.js +1 -1
- package/lib/es/locale/vi-VN.js +1 -1
- package/lib/es/locale/zh-CN.js +1 -1
- package/lib/es/locale/zh-TW.js +1 -1
- package/lib/index.css +1 -1
- package/lib/types/facade/chart-builder/chart-builder-base.d.ts +88 -41
- package/lib/types/facade/chart-builder/line-chart-builder.d.ts +4 -4
- package/lib/types/facade/chart-builder/pie-chart-builder.d.ts +6 -6
- package/lib/types/facade/chart-builder/radar-chart-builder.d.ts +24 -2
- package/lib/umd/facade.js +1 -1
- package/lib/umd/index.js +1 -1
- package/lib/umd/locale/en-US.js +1 -1
- package/lib/umd/locale/fa-IR.js +1 -1
- package/lib/umd/locale/fr-FR.js +1 -1
- package/lib/umd/locale/ru-RU.js +1 -1
- package/lib/umd/locale/vi-VN.js +1 -1
- package/lib/umd/locale/zh-CN.js +1 -1
- package/lib/umd/locale/zh-TW.js +1 -1
- package/package.json +16 -40
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@univerjs-pro/sheets-chart-ui",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Chart library for Univer.",
|
|
6
6
|
"author": "DreamNum <developer@univer.ai>",
|
|
@@ -62,56 +62,32 @@
|
|
|
62
62
|
"rxjs": ">=7.0.0"
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
|
-
"@univerjs/icons": "^0.2.
|
|
65
|
+
"@univerjs/icons": "^0.2.10",
|
|
66
66
|
"clsx": "^2.1.1",
|
|
67
67
|
"echarts": "^5.5.1",
|
|
68
68
|
"rc-collapse": "3.9.0",
|
|
69
|
-
"@univerjs
|
|
70
|
-
"@univerjs/
|
|
71
|
-
"@univerjs/
|
|
72
|
-
"@univerjs/
|
|
73
|
-
"@univerjs/
|
|
74
|
-
"@univerjs/
|
|
75
|
-
"@univerjs/
|
|
76
|
-
"@univerjs/sheets-drawing-ui": "0.5.
|
|
77
|
-
"@univerjs/
|
|
78
|
-
"@univerjs/sheets-ui": "0.5.
|
|
79
|
-
"@univerjs/ui": "0.5.
|
|
69
|
+
"@univerjs/core": "0.5.3",
|
|
70
|
+
"@univerjs-pro/sheets-chart": "0.5.3",
|
|
71
|
+
"@univerjs/design": "0.5.3",
|
|
72
|
+
"@univerjs/engine-formula": "0.5.3",
|
|
73
|
+
"@univerjs/drawing": "0.5.3",
|
|
74
|
+
"@univerjs/engine-render": "0.5.3",
|
|
75
|
+
"@univerjs/sheets": "0.5.3",
|
|
76
|
+
"@univerjs/sheets-drawing-ui": "0.5.3",
|
|
77
|
+
"@univerjs/ui": "0.5.3",
|
|
78
|
+
"@univerjs/sheets-formula-ui": "0.5.3",
|
|
79
|
+
"@univerjs/sheets-ui": "0.5.3"
|
|
80
80
|
},
|
|
81
81
|
"devDependencies": {
|
|
82
82
|
"postcss": "^8.4.49",
|
|
83
83
|
"react": "^18.3.1",
|
|
84
84
|
"react-dom": "^18.3.1",
|
|
85
85
|
"rxjs": "^7.8.1",
|
|
86
|
-
"tailwindcss": "^3.4.15",
|
|
87
86
|
"typescript": "^5.7.2",
|
|
88
|
-
"vite": "^6.0.
|
|
87
|
+
"vite": "^6.0.6",
|
|
89
88
|
"vitest": "^2.1.8",
|
|
90
|
-
"@univerjs-infra/shared": "0.5.
|
|
91
|
-
"@univerjs/sheets-drawing": "0.5.
|
|
92
|
-
},
|
|
93
|
-
"space": {
|
|
94
|
-
".": {
|
|
95
|
-
"import": "./lib/es/index.js",
|
|
96
|
-
"require": "./lib/cjs/index.js",
|
|
97
|
-
"types": "./lib/types/index.d.ts"
|
|
98
|
-
},
|
|
99
|
-
"./*": {
|
|
100
|
-
"import": "./lib/es/*",
|
|
101
|
-
"require": "./lib/cjs/*",
|
|
102
|
-
"types": "./lib/types/index.d.ts"
|
|
103
|
-
},
|
|
104
|
-
"./locale/*": {
|
|
105
|
-
"import": "./lib/es/locale/*.js",
|
|
106
|
-
"require": "./lib/cjs/locale/*.js",
|
|
107
|
-
"types": "./lib/types/locale/*.d.ts"
|
|
108
|
-
},
|
|
109
|
-
"./facade": {
|
|
110
|
-
"import": "./lib/es/facade.js",
|
|
111
|
-
"require": "./lib/cjs/facade.js",
|
|
112
|
-
"types": "./lib/types/facade/index.d.ts"
|
|
113
|
-
},
|
|
114
|
-
"./lib/*": "./lib/*"
|
|
89
|
+
"@univerjs-infra/shared": "0.5.3",
|
|
90
|
+
"@univerjs/sheets-drawing": "0.5.3"
|
|
115
91
|
},
|
|
116
92
|
"scripts": {
|
|
117
93
|
"test": "vitest run",
|