win-chart 2.6.2 → 2.7.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.
- package/package.json +17 -25
- package/dist/bundle.esm.js +0 -22
- package/dist/bundle.esm.js.map +0 -1
- package/dist/index.d.ts +0 -159
- package/dist/types/app.d.ts +0 -1
- package/dist/types/components/ChartWrapper.d.ts +0 -2
- package/dist/types/components/EarthChart.d.ts +0 -15
- package/dist/types/components/WinChart.d.ts +0 -4
- package/dist/types/index.d.ts +0 -4
- package/dist/types/types/index.d.ts +0 -118
- package/dist/types/utils/const.d.ts +0 -8
- package/dist/types/utils/getAreaSpec.d.ts +0 -14
- package/dist/types/utils/getBarSpec.d.ts +0 -8
- package/dist/types/utils/getChartOptions.d.ts +0 -7
- package/dist/types/utils/getColumnSpec.d.ts +0 -14
- package/dist/types/utils/getDualSpec.d.ts +0 -13
- package/dist/types/utils/getFunnelSpec.d.ts +0 -8
- package/dist/types/utils/getLineSpec.d.ts +0 -8
- package/dist/types/utils/getPieSpec.d.ts +0 -13
- package/dist/types/utils/getRadarSpec.d.ts +0 -7
- package/dist/types/utils/tool.d.ts +0 -76
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "win-chart",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.7.1",
|
|
4
4
|
"description": "菜鸟地网统一图表组件",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -10,12 +10,8 @@
|
|
|
10
10
|
"types": "dist/index.d.ts",
|
|
11
11
|
"type": "module",
|
|
12
12
|
"scripts": {
|
|
13
|
-
"build": "rollup -c",
|
|
14
|
-
"build:watch": "rollup -c -w",
|
|
15
|
-
"clean": "rimraf dist",
|
|
16
13
|
"dev": "rsbuild dev",
|
|
17
|
-
"
|
|
18
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
14
|
+
"build": "rollup -c"
|
|
19
15
|
},
|
|
20
16
|
"keywords": [
|
|
21
17
|
"chart",
|
|
@@ -23,38 +19,34 @@
|
|
|
23
19
|
"component"
|
|
24
20
|
],
|
|
25
21
|
"dependencies": {
|
|
26
|
-
"core-js": "^3.36.1",
|
|
27
22
|
"deepmerge": "^4.3.1",
|
|
28
|
-
"echarts": "^5.
|
|
23
|
+
"echarts": "^5.5.0",
|
|
29
24
|
"echarts-gl": "^2.0.9",
|
|
30
|
-
"polished": "^4.
|
|
31
|
-
"react": "^
|
|
32
|
-
"react-dom": "^18.
|
|
33
|
-
"styled-components": "^6.1.
|
|
25
|
+
"polished": "^4.3.1",
|
|
26
|
+
"react": "^18.3.1",
|
|
27
|
+
"react-dom": "^18.3.1",
|
|
28
|
+
"styled-components": "^6.1.11"
|
|
34
29
|
},
|
|
35
30
|
"devDependencies": {
|
|
36
31
|
"@rollup/plugin-alias": "^5.1.0",
|
|
37
|
-
"@rollup/plugin-commonjs": "^25.0.
|
|
32
|
+
"@rollup/plugin-commonjs": "^25.0.8",
|
|
38
33
|
"@rollup/plugin-image": "^3.0.3",
|
|
39
34
|
"@rollup/plugin-json": "^6.1.0",
|
|
40
35
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
41
36
|
"@rollup/plugin-terser": "^0.4.4",
|
|
42
37
|
"@rollup/plugin-typescript": "^11.1.6",
|
|
43
|
-
"@rsbuild/core": "^0.6.
|
|
44
|
-
"@rsbuild/plugin-react": "^0.6.
|
|
45
|
-
"@types/node": "^20.
|
|
46
|
-
"@types/react": "^18.
|
|
47
|
-
"@types/react-dom": "^18.
|
|
48
|
-
"eslint": "^8.
|
|
38
|
+
"@rsbuild/core": "^0.6.15",
|
|
39
|
+
"@rsbuild/plugin-react": "^0.6.15",
|
|
40
|
+
"@types/node": "^20.14.2",
|
|
41
|
+
"@types/react": "^18.3.3",
|
|
42
|
+
"@types/react-dom": "^18.3.0",
|
|
43
|
+
"eslint": "^8.57.0",
|
|
49
44
|
"eslint-config-prettier": "^9.1.0",
|
|
50
45
|
"eslint-config-react-app": "^7.0.1",
|
|
51
|
-
"rollup": "^4.
|
|
52
|
-
"rollup-plugin-dts": "^6.1.
|
|
46
|
+
"rollup": "^4.18.0",
|
|
47
|
+
"rollup-plugin-dts": "^6.1.1",
|
|
53
48
|
"rollup-plugin-postcss": "^4.0.2",
|
|
54
|
-
"tslib": "^2.6.
|
|
55
|
-
},
|
|
56
|
-
"peerDependencies": {
|
|
57
|
-
"react": "^17 || ^18"
|
|
49
|
+
"tslib": "^2.6.3"
|
|
58
50
|
},
|
|
59
51
|
"publishConfig": {
|
|
60
52
|
"access": "public"
|