win-chart 2.8.3 → 2.9.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 +20 -16
- package/dist/bundle.esm.js +0 -22
- package/dist/bundle.esm.js.map +0 -1
- package/dist/index.d.ts +0 -169
- package/dist/types/app.d.ts +0 -1
- package/dist/types/components/ChartWrapper.d.ts +0 -1
- package/dist/types/components/ContractChart.d.ts +0 -10
- package/dist/types/components/EarthChart.d.ts +0 -15
- package/dist/types/components/GanttChart.d.ts +0 -9
- package/dist/types/components/WinChart.d.ts +0 -4
- package/dist/types/components/WinGanttChart.d.ts +0 -1
- package/dist/types/index.d.ts +0 -4
- package/dist/types/types/index.d.ts +0 -125
- package/dist/types/utils/const.d.ts +0 -8
- package/dist/types/utils/data.d.ts +0 -20
- package/dist/types/utils/getAreaSpec.d.ts +0 -14
- package/dist/types/utils/getBarSpec.d.ts +0 -14
- 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 -82
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "win-chart",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.9.1",
|
|
4
4
|
"description": "菜鸟地网统一图表组件",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"component"
|
|
20
20
|
],
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"dayjs": "^1.11.
|
|
22
|
+
"dayjs": "^1.11.13",
|
|
23
23
|
"deepmerge": "^4.3.1",
|
|
24
24
|
"echarts": "^5.5.1",
|
|
25
25
|
"echarts-gl": "^2.0.9",
|
|
@@ -27,29 +27,33 @@
|
|
|
27
27
|
"react": "^18.3.1",
|
|
28
28
|
"react-dom": "^18.3.1",
|
|
29
29
|
"react-ganttastic": "^1.1.94",
|
|
30
|
-
"styled-components": "^6.1.
|
|
30
|
+
"styled-components": "^6.1.13"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@rollup/plugin-alias": "^5.1.
|
|
33
|
+
"@rollup/plugin-alias": "^5.1.1",
|
|
34
34
|
"@rollup/plugin-commonjs": "^25.0.8",
|
|
35
35
|
"@rollup/plugin-image": "^3.0.3",
|
|
36
36
|
"@rollup/plugin-json": "^6.1.0",
|
|
37
|
-
"@rollup/plugin-node-resolve": "^15.
|
|
37
|
+
"@rollup/plugin-node-resolve": "^15.3.0",
|
|
38
38
|
"@rollup/plugin-terser": "^0.4.4",
|
|
39
39
|
"@rollup/plugin-typescript": "^11.1.6",
|
|
40
|
-
"@rsbuild/core": "^0.
|
|
41
|
-
"@rsbuild/plugin-react": "^0.6
|
|
42
|
-
"@types/node": "^20.
|
|
43
|
-
"@types/react": "^18.3.
|
|
44
|
-
"@types/react-dom": "^18.3.
|
|
45
|
-
"
|
|
46
|
-
"eslint-config-prettier": "^9.1.0",
|
|
47
|
-
"eslint-config-react-app": "^7.0.1",
|
|
48
|
-
"rollup": "^4.18.1",
|
|
40
|
+
"@rsbuild/core": "^1.0.19",
|
|
41
|
+
"@rsbuild/plugin-react": "^1.0.6",
|
|
42
|
+
"@types/node": "^20.17.6",
|
|
43
|
+
"@types/react": "^18.3.12",
|
|
44
|
+
"@types/react-dom": "^18.3.1",
|
|
45
|
+
"rollup": "^4.24.4",
|
|
49
46
|
"rollup-plugin-dts": "^6.1.1",
|
|
50
47
|
"rollup-plugin-postcss": "^4.0.2",
|
|
51
|
-
"tslib": "^2.
|
|
52
|
-
"
|
|
48
|
+
"tslib": "^2.8.1",
|
|
49
|
+
"@eslint/js": "^9.14.0",
|
|
50
|
+
"eslint": "^9.14.0",
|
|
51
|
+
"eslint-plugin-react": "^7.37.2",
|
|
52
|
+
"eslint-plugin-react-hooks": "5.0.0",
|
|
53
|
+
"globals": "^15.12.0",
|
|
54
|
+
"prettier": "^3.3.3",
|
|
55
|
+
"typescript": "^5.6.3",
|
|
56
|
+
"typescript-eslint": "^8.13.0"
|
|
53
57
|
},
|
|
54
58
|
"publishConfig": {
|
|
55
59
|
"access": "public"
|