@visactor/vrender-components 0.13.1 → 0.13.2-alpha.2

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 (53) hide show
  1. package/cjs/axis/line.js +9 -3
  2. package/cjs/axis/line.js.map +1 -1
  3. package/cjs/core/type.js +2 -1
  4. package/cjs/crosshair/circle.js +1 -2
  5. package/cjs/index.d.ts +1 -1
  6. package/cjs/index.js +1 -1
  7. package/cjs/index.js.map +1 -1
  8. package/cjs/indicator/type.js +2 -1
  9. package/cjs/label/symbol.js +1 -2
  10. package/cjs/marker/area.js +1 -1
  11. package/cjs/marker/base.js +2 -1
  12. package/cjs/marker/config.js +1 -1
  13. package/cjs/marker/index.js +1 -1
  14. package/cjs/marker/line.js +1 -1
  15. package/cjs/marker/point.js +1 -1
  16. package/cjs/marker/type.js +1 -1
  17. package/cjs/pager/pager.js +1 -2
  18. package/cjs/pager/type.js +1 -1
  19. package/cjs/player/base-player.js +1 -1
  20. package/cjs/player/constant.js +1 -1
  21. package/cjs/player/continuous-player.js +1 -1
  22. package/cjs/player/discrete-player.js +1 -1
  23. package/cjs/player/index.js +1 -1
  24. package/cjs/player/utils.js +1 -1
  25. package/dist/index.js +25 -11
  26. package/dist/index.min.js +1 -1
  27. package/dist/vrender-components.js.js +1 -0
  28. package/dist/vrender-components.js.min.js +1 -0
  29. package/es/axis/line.js +9 -3
  30. package/es/axis/line.js.map +1 -1
  31. package/es/core/type.js +2 -1
  32. package/es/crosshair/circle.js +1 -2
  33. package/es/index.d.ts +1 -1
  34. package/es/index.js +1 -1
  35. package/es/index.js.map +1 -1
  36. package/es/indicator/type.js +2 -1
  37. package/es/label/symbol.js +1 -2
  38. package/es/marker/area.js +1 -1
  39. package/es/marker/base.js +2 -1
  40. package/es/marker/config.js +1 -1
  41. package/es/marker/index.js +1 -1
  42. package/es/marker/line.js +1 -1
  43. package/es/marker/point.js +1 -1
  44. package/es/marker/type.js +1 -1
  45. package/es/pager/pager.js +1 -2
  46. package/es/pager/type.js +1 -1
  47. package/es/player/base-player.js +1 -1
  48. package/es/player/constant.js +1 -1
  49. package/es/player/continuous-player.js +1 -1
  50. package/es/player/discrete-player.js +1 -1
  51. package/es/player/index.js +1 -1
  52. package/es/player/utils.js +1 -1
  53. package/package.json +2 -2
@@ -62,5 +62,4 @@ SymbolLabel.defaultAttributes = {
62
62
  position: "top",
63
63
  offset: 5,
64
64
  pickable: !1
65
- };
66
- //# sourceMappingURL=symbol.js.map
65
+ };
package/es/marker/area.js CHANGED
@@ -70,4 +70,4 @@ export class MarkArea extends Marker {
70
70
  }
71
71
 
72
72
  MarkArea.defaultAttributes = DEFAULT_MARK_AREA_THEME;
73
- //# sourceMappingURL=area.js.map
73
+ //# sourceMappingURL=area.js.map
package/es/marker/base.js CHANGED
@@ -12,4 +12,5 @@ export class Marker extends AbstractComponent {
12
12
  group.name = "marker-container", this.add(group), this._container = group, this.initMarker(group);
13
13
  }
14
14
  }
15
- }
15
+ }
16
+ //# sourceMappingURL=base.js.map
@@ -229,4 +229,4 @@ export const DEFAULT_MARK_POINT_TEXT_STYLE_MAP = {
229
229
  textBaseline: "middle"
230
230
  }
231
231
  };
232
- //# sourceMappingURL=config.js.map
232
+ //# sourceMappingURL=config.js.map
@@ -5,4 +5,4 @@ export * from "./line";
5
5
  export * from "./area";
6
6
 
7
7
  export * from "./point";
8
- //# sourceMappingURL=index.js.map
8
+ //# sourceMappingURL=index.js.map
package/es/marker/line.js CHANGED
@@ -55,4 +55,4 @@ export class MarkLine extends Marker {
55
55
  }
56
56
 
57
57
  MarkLine.defaultAttributes = DEFAULT_MARK_LINE_THEME;
58
- //# sourceMappingURL=line.js.map
58
+ //# sourceMappingURL=line.js.map
@@ -131,4 +131,4 @@ export class MarkPoint extends Marker {
131
131
  }
132
132
 
133
133
  MarkPoint.defaultAttributes = DEFAULT_MARK_POINT_THEME;
134
- //# sourceMappingURL=point.js.map
134
+ //# sourceMappingURL=point.js.map
package/es/marker/type.js CHANGED
@@ -24,4 +24,4 @@ export var IMarkPointItemPosition;
24
24
  IMarkPointItemPosition.insideTop = "insideTop", IMarkPointItemPosition.insideBottom = "insideBottom",
25
25
  IMarkPointItemPosition.insideMiddle = "insideMiddle";
26
26
  }(IMarkPointItemPosition || (IMarkPointItemPosition = {}));
27
- //# sourceMappingURL=type.js.map
27
+ //# sourceMappingURL=type.js.map
package/es/pager/pager.js CHANGED
@@ -130,5 +130,4 @@ Pager.defaultAttributes = {
130
130
  fill: "rgb(51, 51, 51)",
131
131
  fontSize: 12
132
132
  }
133
- };
134
- //# sourceMappingURL=pager.js.map
133
+ };
package/es/pager/type.js CHANGED
@@ -1,2 +1,2 @@
1
1
  export { };
2
- //# sourceMappingURL=type.js.map
2
+ //# sourceMappingURL=type.js.map
@@ -211,4 +211,4 @@ BasePlayer.defaultAttributes = {
211
211
  })
212
212
  }
213
213
  };
214
- //# sourceMappingURL=base-player.js.map
214
+ //# sourceMappingURL=base-player.js.map
@@ -11,4 +11,4 @@ export const defaultControllerAttributes = {
11
11
  };
12
12
 
13
13
  export const RailDefaultSize = [ 200, 10 ];
14
- //# sourceMappingURL=constant.js.map
14
+ //# sourceMappingURL=constant.js.map
@@ -101,4 +101,4 @@ export class ContinuousPlayer extends BasePlayer {
101
101
  super.render();
102
102
  }
103
103
  }
104
- //# sourceMappingURL=continuous-player.js.map
104
+ //# sourceMappingURL=continuous-player.js.map
@@ -83,4 +83,4 @@ export class DiscretePlayer extends BasePlayer {
83
83
  super.dispatchCustomEvent(event, this._dataIndex);
84
84
  }
85
85
  }
86
- //# sourceMappingURL=discrete-player.js.map
86
+ //# sourceMappingURL=discrete-player.js.map
@@ -5,4 +5,4 @@ export * from "./type";
5
5
  export * from "./discrete-player";
6
6
 
7
7
  export * from "./continuous-player";
8
- //# sourceMappingURL=index.js.map
8
+ //# sourceMappingURL=index.js.map
@@ -42,4 +42,4 @@ export const isVertical = orient => "left" === orient || "right" === orient;
42
42
  export const isHorizontal = orient => "top" === orient || "bottom" === orient;
43
43
 
44
44
  export const forwardStep = (direction, currentIndex, min, max) => "default" === direction ? Math.min(currentIndex + 1, max) : Math.max(currentIndex - 1, min);
45
- //# sourceMappingURL=utils.js.map
45
+ //# sourceMappingURL=utils.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visactor/vrender-components",
3
- "version": "0.13.1",
3
+ "version": "0.13.2-alpha.2",
4
4
  "description": "components library for dp visualization",
5
5
  "sideEffects": false,
6
6
  "main": "cjs/index.js",
@@ -28,8 +28,8 @@
28
28
  "eslint": "~8.18.0",
29
29
  "vite": "3.2.6",
30
30
  "typescript": "4.9.5",
31
- "@internal/bundler": "0.0.1",
32
31
  "@internal/ts-config": "0.0.1",
32
+ "@internal/bundler": "0.0.1",
33
33
  "@internal/eslint-config": "0.0.1"
34
34
  },
35
35
  "keywords": [