@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.
Files changed (47) hide show
  1. package/dist/tools.esm.js +1 -1
  2. package/dist/tools.esm.js.map +1 -1
  3. package/package.json +4 -3
  4. package/readme.md +3 -0
  5. package/tsconfig.json +2 -2
  6. package/types/index.d.ts +3 -0
  7. package/types/supcan/SupcanReport.d.ts +1077 -0
  8. package/types/supcan/reportModel.d.ts +80 -0
  9. package/types/supcan/supcan/dev/nstd.d.ts +26 -0
  10. package/types/supcan/supcan/dynaload-jQuery.d.ts +26 -0
  11. package/types/supcan/supcan/dynaload.d.ts +13 -0
  12. package/types/supcan/supcan/dynaloadNG.d.ts +26 -0
  13. package/types/supcan/supcan/echarts/chart/bar.d.ts +0 -0
  14. package/types/supcan/supcan/echarts/chart/chord.d.ts +0 -0
  15. package/types/supcan/supcan/echarts/chart/eventRiver.d.ts +0 -0
  16. package/types/supcan/supcan/echarts/chart/force.d.ts +0 -0
  17. package/types/supcan/supcan/echarts/chart/funnel.d.ts +0 -0
  18. package/types/supcan/supcan/echarts/chart/gauge.d.ts +0 -0
  19. package/types/supcan/supcan/echarts/chart/heatmap.d.ts +0 -0
  20. package/types/supcan/supcan/echarts/chart/k.d.ts +0 -0
  21. package/types/supcan/supcan/echarts/chart/line.d.ts +0 -0
  22. package/types/supcan/supcan/echarts/chart/map.d.ts +0 -0
  23. package/types/supcan/supcan/echarts/chart/pie.d.ts +0 -0
  24. package/types/supcan/supcan/echarts/chart/radar.d.ts +0 -0
  25. package/types/supcan/supcan/echarts/chart/scatter.d.ts +0 -0
  26. package/types/supcan/supcan/echarts/chart/tree.d.ts +0 -0
  27. package/types/supcan/supcan/echarts/chart/treemap.d.ts +0 -0
  28. package/types/supcan/supcan/echarts/chart/venn.d.ts +0 -0
  29. package/types/supcan/supcan/echarts/chart/wordCloud.d.ts +0 -0
  30. package/types/supcan/supcan/echarts/echarts.d.ts +3 -0
  31. package/types/supcan/supcan/echarts/theme/blue.d.ts +0 -0
  32. package/types/supcan/supcan/echarts/theme/dark.d.ts +0 -0
  33. package/types/supcan/supcan/echarts/theme/default.d.ts +0 -0
  34. package/types/supcan/supcan/echarts/theme/gray.d.ts +0 -0
  35. package/types/supcan/supcan/echarts/theme/green.d.ts +0 -0
  36. package/types/supcan/supcan/echarts/theme/helianthus.d.ts +0 -0
  37. package/types/supcan/supcan/echarts/theme/infographic.d.ts +0 -0
  38. package/types/supcan/supcan/echarts/theme/macarons.d.ts +0 -0
  39. package/types/supcan/supcan/echarts/theme/macarons2.d.ts +0 -0
  40. package/types/supcan/supcan/echarts/theme/mint.d.ts +0 -0
  41. package/types/supcan/supcan/echarts/theme/red.d.ts +0 -0
  42. package/types/supcan/supcan/echarts/theme/roma.d.ts +0 -0
  43. package/types/supcan/supcan/echarts/theme/sakura.d.ts +0 -0
  44. package/types/supcan/supcan/echarts/theme/shine.d.ts +0 -0
  45. package/types/supcan/supcan/format_freeform/nstd.d.ts +26 -0
  46. package/types/supcan/supcan/format_treelist/nstd.d.ts +26 -0
  47. 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.6",
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/readme.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 1.1.8
2
+ 硕正报表
3
+
1
4
  ## 1.1.6
2
5
  加密/解密异常处理
3
6
 
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
@@ -1 +1,4 @@
1
+ import SupcanReport from "./supcan/SupcanReport";
1
2
  export * from "./Utilities";
3
+ export * from "./supcan/reportModel";
4
+ export { SupcanReport };