@visactor/vrender-components 0.19.6-alpha.3 → 0.19.6

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 (52) hide show
  1. package/cjs/axis/util.js +2 -1
  2. package/cjs/brush/type.js +1 -2
  3. package/cjs/index.d.ts +1 -1
  4. package/cjs/index.js +1 -1
  5. package/cjs/index.js.map +1 -1
  6. package/cjs/marker/common-line.js +1 -1
  7. package/cjs/marker/common-line.js.map +1 -1
  8. package/cjs/marker/config.d.ts +1 -0
  9. package/cjs/marker/config.js +54 -6
  10. package/cjs/marker/config.js.map +1 -1
  11. package/cjs/marker/line.js +5 -9
  12. package/cjs/marker/line.js.map +1 -1
  13. package/cjs/marker/point.d.ts +4 -3
  14. package/cjs/marker/point.js +34 -29
  15. package/cjs/marker/point.js.map +1 -1
  16. package/cjs/marker/type.d.ts +8 -2
  17. package/cjs/marker/type.js +7 -4
  18. package/cjs/marker/type.js.map +1 -1
  19. package/cjs/segment/arc-segment.js +4 -4
  20. package/cjs/segment/arc-segment.js.map +1 -1
  21. package/cjs/segment/segment.js +6 -6
  22. package/cjs/segment/segment.js.map +1 -1
  23. package/cjs/util/common.d.ts +7 -2
  24. package/cjs/util/common.js +17 -7
  25. package/cjs/util/common.js.map +1 -1
  26. package/dist/index.es.js +978 -1327
  27. package/es/axis/util.js +2 -1
  28. package/es/brush/type.js +1 -2
  29. package/es/index.d.ts +1 -1
  30. package/es/index.js +1 -1
  31. package/es/index.js.map +1 -1
  32. package/es/marker/common-line.js +1 -1
  33. package/es/marker/common-line.js.map +1 -1
  34. package/es/marker/config.d.ts +1 -0
  35. package/es/marker/config.js +54 -4
  36. package/es/marker/config.js.map +1 -1
  37. package/es/marker/line.js +5 -11
  38. package/es/marker/line.js.map +1 -1
  39. package/es/marker/point.d.ts +4 -3
  40. package/es/marker/point.js +30 -29
  41. package/es/marker/point.js.map +1 -1
  42. package/es/marker/type.d.ts +8 -2
  43. package/es/marker/type.js +7 -4
  44. package/es/marker/type.js.map +1 -1
  45. package/es/segment/arc-segment.js +4 -4
  46. package/es/segment/arc-segment.js.map +1 -1
  47. package/es/segment/segment.js +7 -5
  48. package/es/segment/segment.js.map +1 -1
  49. package/es/util/common.d.ts +7 -2
  50. package/es/util/common.js +14 -4
  51. package/es/util/common.js.map +1 -1
  52. package/package.json +10 -9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visactor/vrender-components",
3
- "version": "0.19.6-alpha.3",
3
+ "version": "0.19.6",
4
4
  "description": "components library for dp visualization",
5
5
  "sideEffects": false,
6
6
  "main": "cjs/index.js",
@@ -12,8 +12,8 @@
12
12
  "dist"
13
13
  ],
14
14
  "dependencies": {
15
- "@visactor/vrender-core": "0.19.6-alpha.3",
16
- "@visactor/vrender-kits": "0.19.6-alpha.3",
15
+ "@visactor/vrender-core": "0.19.6",
16
+ "@visactor/vrender-kits": "0.19.6",
17
17
  "@visactor/vutils": "~0.18.9",
18
18
  "@visactor/vscale": "~0.18.9"
19
19
  },
@@ -28,9 +28,10 @@
28
28
  "eslint": "~8.18.0",
29
29
  "vite": "3.2.6",
30
30
  "typescript": "4.9.5",
31
+ "cross-env": "^7.0.3",
31
32
  "@internal/bundler": "0.0.1",
32
- "@internal/eslint-config": "0.0.1",
33
- "@internal/ts-config": "0.0.1"
33
+ "@internal/ts-config": "0.0.1",
34
+ "@internal/eslint-config": "0.0.1"
34
35
  },
35
36
  "keywords": [
36
37
  "VisActor",
@@ -66,13 +67,13 @@
66
67
  "scripts": {
67
68
  "compile": "tsc --noEmit",
68
69
  "eslint": "eslint --debug --fix src/",
69
- "build": "bundle",
70
- "dev": "bundle --clean -f es -w",
70
+ "build": "cross-env DEBUG='Bundler*' bundle",
71
+ "dev": "cross-env DEBUG='Bundler*' bundle --clean -f es -w",
71
72
  "start": "vite ./__tests__/browser",
72
73
  "test": "jest",
73
74
  "test-cov": "jest --coverage",
74
75
  "test-live": "npm run test-watch __tests__/unit/",
75
- "test-watch": "DEBUG_MODE=1 jest --watch",
76
- "analysis-core": "bundle -f umd -a -i core.ts"
76
+ "test-watch": "cross-env DEBUG_MODE=1 jest --watch",
77
+ "analysis-core": "cross-env DEBUG='Bundler*' bundle -f umd -a -i core.ts"
77
78
  }
78
79
  }