@newview/tools 1.1.6 → 1.1.8
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/dist/tools.esm.js +1 -1
- package/dist/tools.esm.js.map +1 -1
- package/package.json +4 -3
- package/readme.md +3 -0
- package/tsconfig.json +2 -2
- package/types/index.d.ts +3 -0
- package/types/supcan/SupcanReport.d.ts +1077 -0
- package/types/supcan/reportModel.d.ts +80 -0
- package/types/supcan/supcan/dev/nstd.d.ts +26 -0
- package/types/supcan/supcan/dynaload-jQuery.d.ts +26 -0
- package/types/supcan/supcan/dynaload.d.ts +13 -0
- package/types/supcan/supcan/dynaloadNG.d.ts +26 -0
- package/types/supcan/supcan/echarts/chart/bar.d.ts +0 -0
- package/types/supcan/supcan/echarts/chart/chord.d.ts +0 -0
- package/types/supcan/supcan/echarts/chart/eventRiver.d.ts +0 -0
- package/types/supcan/supcan/echarts/chart/force.d.ts +0 -0
- package/types/supcan/supcan/echarts/chart/funnel.d.ts +0 -0
- package/types/supcan/supcan/echarts/chart/gauge.d.ts +0 -0
- package/types/supcan/supcan/echarts/chart/heatmap.d.ts +0 -0
- package/types/supcan/supcan/echarts/chart/k.d.ts +0 -0
- package/types/supcan/supcan/echarts/chart/line.d.ts +0 -0
- package/types/supcan/supcan/echarts/chart/map.d.ts +0 -0
- package/types/supcan/supcan/echarts/chart/pie.d.ts +0 -0
- package/types/supcan/supcan/echarts/chart/radar.d.ts +0 -0
- package/types/supcan/supcan/echarts/chart/scatter.d.ts +0 -0
- package/types/supcan/supcan/echarts/chart/tree.d.ts +0 -0
- package/types/supcan/supcan/echarts/chart/treemap.d.ts +0 -0
- package/types/supcan/supcan/echarts/chart/venn.d.ts +0 -0
- package/types/supcan/supcan/echarts/chart/wordCloud.d.ts +0 -0
- package/types/supcan/supcan/echarts/echarts.d.ts +3 -0
- package/types/supcan/supcan/echarts/theme/blue.d.ts +0 -0
- package/types/supcan/supcan/echarts/theme/dark.d.ts +0 -0
- package/types/supcan/supcan/echarts/theme/default.d.ts +0 -0
- package/types/supcan/supcan/echarts/theme/gray.d.ts +0 -0
- package/types/supcan/supcan/echarts/theme/green.d.ts +0 -0
- package/types/supcan/supcan/echarts/theme/helianthus.d.ts +0 -0
- package/types/supcan/supcan/echarts/theme/infographic.d.ts +0 -0
- package/types/supcan/supcan/echarts/theme/macarons.d.ts +0 -0
- package/types/supcan/supcan/echarts/theme/macarons2.d.ts +0 -0
- package/types/supcan/supcan/echarts/theme/mint.d.ts +0 -0
- package/types/supcan/supcan/echarts/theme/red.d.ts +0 -0
- package/types/supcan/supcan/echarts/theme/roma.d.ts +0 -0
- package/types/supcan/supcan/echarts/theme/sakura.d.ts +0 -0
- package/types/supcan/supcan/echarts/theme/shine.d.ts +0 -0
- package/types/supcan/supcan/format_freeform/nstd.d.ts +26 -0
- package/types/supcan/supcan/format_treelist/nstd.d.ts +26 -0
- package/types/supcan/validatorHelper.d.ts +281 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@newview/tools",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.8",
|
|
4
4
|
"author": "newview",
|
|
5
5
|
"main": "dist/tools.js",
|
|
6
6
|
"module": "./dist/tools.esm.js",
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
"@types/crypto-js": "4.1.1",
|
|
17
17
|
"microbundle": "0.15.1",
|
|
18
18
|
"typescript": "4.9.3",
|
|
19
|
-
"vite": "4.0.0"
|
|
19
|
+
"vite": "4.0.0",
|
|
20
|
+
"x2js": "3.4.4"
|
|
20
21
|
},
|
|
21
22
|
"dependencies": {
|
|
22
23
|
"crypto-js": "4.1.1",
|
|
@@ -24,4 +25,4 @@
|
|
|
24
25
|
"immutable": "4.1.0",
|
|
25
26
|
"moment": "2.29.4"
|
|
26
27
|
}
|
|
27
|
-
}
|
|
28
|
+
}
|
package/tsconfig.json
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compilerOptions": {
|
|
3
|
+
"noUnusedLocals": false, // 允许未使用的局部变量
|
|
4
|
+
"noUnusedParameters": false, // 允许未使用的参数
|
|
3
5
|
"target": "ESNext",
|
|
4
6
|
"useDefineForClassFields": true,
|
|
5
7
|
"module": "ESNext",
|
|
@@ -10,8 +12,6 @@
|
|
|
10
12
|
"isolatedModules": true,
|
|
11
13
|
"esModuleInterop": true,
|
|
12
14
|
"noEmit": true,
|
|
13
|
-
"noUnusedLocals": true,
|
|
14
|
-
"noUnusedParameters": true,
|
|
15
15
|
"noImplicitReturns": true,
|
|
16
16
|
"skipLibCheck": true
|
|
17
17
|
},
|
package/types/index.d.ts
CHANGED