@visactor/vchart 2.1.2-alpha.5 → 2.1.2-alpha.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 (62) hide show
  1. package/build/tsconfig.tsbuildinfo +1 -1
  2. package/cjs/animation/animation-planner.js +1 -1
  3. package/cjs/animation/callback-disappear.js +1 -1
  4. package/cjs/animation/config.js +1 -1
  5. package/cjs/animation/grammar-dector.js +2 -1
  6. package/cjs/animation/index.js +1 -1
  7. package/cjs/animation/interface.js +1 -1
  8. package/cjs/animation/sequential-animate.js +1 -1
  9. package/cjs/animation/spec.js +1 -1
  10. package/cjs/animation/state-transition.js +1 -1
  11. package/cjs/animation/utils.js +1 -1
  12. package/cjs/chart/index.js +1 -1
  13. package/cjs/chart/stack.js +1 -1
  14. package/cjs/chart/util.js +1 -1
  15. package/cjs/compile/compiler.js +2 -1
  16. package/cjs/compile/morph.js +1 -2
  17. package/cjs/constant/box-plot.js +1 -2
  18. package/cjs/constant/correlation.js +2 -1
  19. package/cjs/core/index.js +1 -1
  20. package/cjs/core/instance-manager.js +1 -1
  21. package/cjs/core/interface.js +1 -1
  22. package/cjs/core/util.js +1 -1
  23. package/cjs/core/vchart.js +1 -1
  24. package/cjs/data/data-view-utils.js +1 -2
  25. package/cjs/data/initialize.js +1 -1
  26. package/cjs/data/register.js +1 -1
  27. package/cjs/event/bubble.js +1 -1
  28. package/cjs/event/event-dispatcher.js +1 -1
  29. package/cjs/event/event.js +1 -1
  30. package/cjs/event/index.js +1 -1
  31. package/cjs/event/interface.js +1 -1
  32. package/esm/animation/animation-planner.js +1 -1
  33. package/esm/animation/callback-disappear.js +1 -1
  34. package/esm/animation/config.js +1 -1
  35. package/esm/animation/grammar-dector.js +2 -1
  36. package/esm/animation/index.js +1 -1
  37. package/esm/animation/interface.js +1 -1
  38. package/esm/animation/sequential-animate.js +1 -1
  39. package/esm/animation/spec.js +1 -1
  40. package/esm/animation/state-transition.js +1 -1
  41. package/esm/animation/utils.js +1 -1
  42. package/esm/chart/index.js +1 -1
  43. package/esm/chart/stack.js +1 -1
  44. package/esm/chart/util.js +1 -1
  45. package/esm/compile/compiler.js +2 -1
  46. package/esm/compile/morph.js +1 -2
  47. package/esm/constant/box-plot.js +1 -2
  48. package/esm/constant/correlation.js +2 -1
  49. package/esm/core/index.js +1 -1
  50. package/esm/core/instance-manager.js +1 -1
  51. package/esm/core/interface.js +1 -1
  52. package/esm/core/util.js +1 -1
  53. package/esm/core/vchart.js +1 -1
  54. package/esm/data/data-view-utils.js +1 -2
  55. package/esm/data/initialize.js +1 -1
  56. package/esm/data/register.js +1 -1
  57. package/esm/event/bubble.js +1 -1
  58. package/esm/event/event-dispatcher.js +1 -1
  59. package/esm/event/event.js +1 -1
  60. package/esm/event/index.js +1 -1
  61. package/esm/event/interface.js +1 -1
  62. package/package.json +10 -10
@@ -50,4 +50,4 @@ class AnimationPlanner {
50
50
  }
51
51
 
52
52
  exports.AnimationPlanner = AnimationPlanner;
53
- //# sourceMappingURL=animation-planner.js.map
53
+ //# sourceMappingURL=animation-planner.js.map
@@ -23,4 +23,4 @@ class CallbackDisappearAnimate extends custom_animate_1.AStageAnimate {
23
23
  }
24
24
 
25
25
  exports.CallbackDisappearAnimate = CallbackDisappearAnimate;
26
- //# sourceMappingURL=callback-disappear.js.map
26
+ //# sourceMappingURL=callback-disappear.js.map
@@ -178,4 +178,4 @@ const registerStageAnimation = () => {
178
178
  };
179
179
 
180
180
  exports.registerStageAnimation = registerStageAnimation;
181
- //# sourceMappingURL=config.js.map
181
+ //# sourceMappingURL=config.js.map
@@ -102,4 +102,5 @@ class GrammarDetector {
102
102
  }
103
103
  }
104
104
 
105
- exports.GrammarDetector = GrammarDetector;
105
+ exports.GrammarDetector = GrammarDetector;
106
+ //# sourceMappingURL=grammar-dector.js.map
@@ -83,4 +83,4 @@ Object.defineProperty(exports, "animationConfig", {
83
83
  return utils_1.shouldMarkDoMorph;
84
84
  }
85
85
  });
86
- //# sourceMappingURL=index.js.map
86
+ //# sourceMappingURL=index.js.map
@@ -9,4 +9,4 @@ Object.defineProperty(exports, "__esModule", {
9
9
  AnimationStateEnum.enter = "enter", AnimationStateEnum.update = "update", AnimationStateEnum.state = "state",
10
10
  AnimationStateEnum.exit = "exit", AnimationStateEnum.normal = "normal", AnimationStateEnum.none = "none";
11
11
  }(AnimationStateEnum = exports.AnimationStateEnum || (exports.AnimationStateEnum = {}));
12
- //# sourceMappingURL=interface.js.map
12
+ //# sourceMappingURL=interface.js.map
@@ -39,4 +39,4 @@ function registerSequentialAnimate() {
39
39
  }
40
40
 
41
41
  exports.registerSequentialAnimate = registerSequentialAnimate;
42
- //# sourceMappingURL=sequential-animate.js.map
42
+ //# sourceMappingURL=sequential-animate.js.map
@@ -3,4 +3,4 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: !0
5
5
  });
6
- //# sourceMappingURL=spec.js.map
6
+ //# sourceMappingURL=spec.js.map
@@ -30,4 +30,4 @@ function registerStateTransition() {
30
30
  }
31
31
 
32
32
  exports.registerStateTransition = registerStateTransition;
33
- //# sourceMappingURL=state-transition.js.map
33
+ //# sourceMappingURL=state-transition.js.map
@@ -131,4 +131,4 @@ exports.animationConfig = animationConfig, exports.userAnimationConfig = userAni
131
131
  exports.shouldMarkDoMorph = shouldMarkDoMorph, exports.isTimeLineAnimation = isTimeLineAnimation,
132
132
  exports.isChannelAnimation = isChannelAnimation, exports.uniformAnimationConfig = uniformAnimationConfig,
133
133
  exports.isAnimationEnabledForSeries = isAnimationEnabledForSeries;
134
- //# sourceMappingURL=utils.js.map
134
+ //# sourceMappingURL=utils.js.map
@@ -485,4 +485,4 @@ Object.defineProperty(exports, "setDefaultCrosshairForCartesianChart", {
485
485
  return util_1.setDefaultCrosshairForCartesianChart;
486
486
  }
487
487
  });
488
- //# sourceMappingURL=index.js.map
488
+ //# sourceMappingURL=index.js.map
@@ -55,4 +55,4 @@ class StackChartMixin {
55
55
  }
56
56
 
57
57
  exports.StackChartMixin = StackChartMixin;
58
- //# sourceMappingURL=stack.js.map
58
+ //# sourceMappingURL=stack.js.map
package/cjs/chart/util.js CHANGED
@@ -109,4 +109,4 @@ function getTrimPaddingConfig(chartType, spec) {
109
109
  exports.normalizeUpdateSpecEffects = normalizeUpdateSpecEffects, exports.isUpdateSpecResultLocalOnly = isUpdateSpecResultLocalOnly,
110
110
  exports.isUpdateSpecResultComponentOnly = isUpdateSpecResultComponentOnly, exports.mergeUpdateResult = mergeUpdateResult,
111
111
  exports.getTrimPaddingConfig = getTrimPaddingConfig;
112
- //# sourceMappingURL=util.js.map
112
+ //# sourceMappingURL=util.js.map
@@ -443,4 +443,5 @@ class Compiler {
443
443
  }
444
444
  }
445
445
 
446
- exports.Compiler = Compiler;
446
+ exports.Compiler = Compiler;
447
+ //# sourceMappingURL=compiler.js.map
@@ -89,5 +89,4 @@ const morphing_1 = require("@visactor/vrender-animate/custom/morphing"), vutils_
89
89
  })), 0 === morphCount && onMorphEnd(), !0;
90
90
  };
91
91
 
92
- exports.morph = morph;
93
- //# sourceMappingURL=morph.js.map
92
+ exports.morph = morph;
@@ -13,5 +13,4 @@ function(BOX_PLOT_TOOLTIP_KEYS) {
13
13
  BOX_PLOT_TOOLTIP_KEYS.OUTLIER = "outlier", BOX_PLOT_TOOLTIP_KEYS.MAX = "max", BOX_PLOT_TOOLTIP_KEYS.MIN = "min",
14
14
  BOX_PLOT_TOOLTIP_KEYS.MEDIAN = "median", BOX_PLOT_TOOLTIP_KEYS.Q1 = "q1", BOX_PLOT_TOOLTIP_KEYS.Q3 = "q3",
15
15
  BOX_PLOT_TOOLTIP_KEYS.SERIES_FIELD = "seriesField";
16
- }(BOX_PLOT_TOOLTIP_KEYS = exports.BOX_PLOT_TOOLTIP_KEYS || (exports.BOX_PLOT_TOOLTIP_KEYS = {}));
17
- //# sourceMappingURL=box-plot.js.map
16
+ }(BOX_PLOT_TOOLTIP_KEYS = exports.BOX_PLOT_TOOLTIP_KEYS || (exports.BOX_PLOT_TOOLTIP_KEYS = {}));
@@ -7,4 +7,5 @@ Object.defineProperty(exports, "__esModule", {
7
7
  const base_1 = require("./base");
8
8
 
9
9
  exports.CORRELATION_X = `${base_1.PREFIX}_CORRELATION_X`, exports.CORRELATION_Y = `${base_1.PREFIX}_CORRELATION_Y`,
10
- exports.CORRELATION_SIZE = `${base_1.PREFIX}_CORRELATION_SIZE`;
10
+ exports.CORRELATION_SIZE = `${base_1.PREFIX}_CORRELATION_SIZE`;
11
+ //# sourceMappingURL=correlation.js.map
package/cjs/core/index.js CHANGED
@@ -203,4 +203,4 @@ Object.defineProperty(exports, "measureText", {
203
203
  return text_1.measureText;
204
204
  }
205
205
  });
206
- //# sourceMappingURL=index.js.map
206
+ //# sourceMappingURL=index.js.map
@@ -28,4 +28,4 @@ class InstanceManager {
28
28
  }
29
29
 
30
30
  exports.InstanceManager = InstanceManager, InstanceManager.instances = new Map;
31
- //# sourceMappingURL=instance-manager.js.map
31
+ //# sourceMappingURL=instance-manager.js.map
@@ -3,4 +3,4 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: !0
5
5
  });
6
- //# sourceMappingURL=interface.js.map
6
+ //# sourceMappingURL=interface.js.map
package/cjs/core/util.js CHANGED
@@ -9,4 +9,4 @@ const util_1 = require("../util");
9
9
  exports.VCHART_UTILS = {
10
10
  measureText: util_1.measureText
11
11
  };
12
- //# sourceMappingURL=util.js.map
12
+ //# sourceMappingURL=util.js.map
@@ -975,4 +975,4 @@ const registerVChartCore = () => {
975
975
  };
976
976
 
977
977
  exports.registerVChartCore = registerVChartCore, (0, exports.registerVChartCore)();
978
- //# sourceMappingURL=vchart.js.map
978
+ //# sourceMappingURL=vchart.js.map
@@ -54,5 +54,4 @@ const releaseDataViewWithDependencies = (dataView, shouldReleaseDependency) => {
54
54
  collectReleaseDependencies(dataView), (0, exports.releaseDataViews)([ dataView, ...releaseDependencies ]);
55
55
  };
56
56
 
57
- exports.releaseDataViewWithDependencies = releaseDataViewWithDependencies;
58
- //# sourceMappingURL=data-view-utils.js.map
57
+ exports.releaseDataViewWithDependencies = releaseDataViewWithDependencies;
@@ -85,4 +85,4 @@ function(TransformLevel) {
85
85
  TransformLevel[TransformLevel.linkDotInfo = -7] = "linkDotInfo", TransformLevel[TransformLevel.sankeyLayout = -7] = "sankeyLayout",
86
86
  TransformLevel[TransformLevel.dataZoomFilter = -6] = "dataZoomFilter", TransformLevel[TransformLevel.legendFilter = -5] = "legendFilter";
87
87
  }(TransformLevel = exports.TransformLevel || (exports.TransformLevel = {}));
88
- //# sourceMappingURL=initialize.js.map
88
+ //# sourceMappingURL=initialize.js.map
@@ -12,4 +12,4 @@ Object.defineProperty(exports, "__esModule", {
12
12
  value: !0
13
13
  }), exports.registerDataSetInstanceParser = exports.registerDataSetInstanceTransform = void 0,
14
14
  exports.registerDataSetInstanceTransform = registerDataSetInstanceTransform, exports.registerDataSetInstanceParser = registerDataSetInstanceParser;
15
- //# sourceMappingURL=register.js.map
15
+ //# sourceMappingURL=register.js.map
@@ -51,4 +51,4 @@ class Bubble {
51
51
  }
52
52
 
53
53
  exports.Bubble = Bubble;
54
- //# sourceMappingURL=bubble.js.map
54
+ //# sourceMappingURL=bubble.js.map
@@ -213,4 +213,4 @@ class EventDispatcher {
213
213
  }
214
214
 
215
215
  exports.EventDispatcher = EventDispatcher;
216
- //# sourceMappingURL=event-dispatcher.js.map
216
+ //# sourceMappingURL=event-dispatcher.js.map
@@ -87,4 +87,4 @@ class Event {
87
87
  }
88
88
 
89
89
  exports.Event = Event;
90
- //# sourceMappingURL=event.js.map
90
+ //# sourceMappingURL=event.js.map
@@ -38,4 +38,4 @@ Object.defineProperty(exports, "getCartesianDimensionInfo", {
38
38
  return util_1.getDimensionInfoByValue;
39
39
  }
40
40
  });
41
- //# sourceMappingURL=index.js.map
41
+ //# sourceMappingURL=index.js.map
@@ -3,4 +3,4 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: !0
5
5
  });
6
- //# sourceMappingURL=interface.js.map
6
+ //# sourceMappingURL=interface.js.map
@@ -42,4 +42,4 @@ export class AnimationPlanner {
42
42
  }));
43
43
  }
44
44
  }
45
- //# sourceMappingURL=animation-planner.js.map
45
+ //# sourceMappingURL=animation-planner.js.map
@@ -15,4 +15,4 @@ export class CallbackDisappearAnimate extends AStageAnimate {
15
15
  return null === (_b = null === (_a = this.params) || void 0 === _a ? void 0 : _a.callBack) || void 0 === _b ? void 0 : _b.call(_a, stage, canvas, this.currentAnimationRatio, this.animationTime);
16
16
  }
17
17
  }
18
- //# sourceMappingURL=callback-disappear.js.map
18
+ //# sourceMappingURL=callback-disappear.js.map
@@ -182,4 +182,4 @@ export const registerPolygonAnimation = () => {
182
182
  export const registerStageAnimation = () => {
183
183
  AnimateExecutor.registerBuiltInAnimate(BuiltIn_DISAPPEAR_ANIMATE_NAME, CallbackDisappearAnimate);
184
184
  };
185
- //# sourceMappingURL=config.js.map
185
+ //# sourceMappingURL=config.js.map
@@ -100,4 +100,5 @@ export class GrammarDetector {
100
100
  result.hasAppear && animationConfig.appear && planners.push(new AnimationPlanner("appear", result.appearGraphics, animationConfig.appear)),
101
101
  planners;
102
102
  }
103
- }
103
+ }
104
+ //# sourceMappingURL=grammar-dector.js.map
@@ -7,4 +7,4 @@ export { registerSequentialAnimate } from "./sequential-animate";
7
7
  export { registerPolygonAnimation, registerRectAnimation, registerArcAnimation, registerScaleInOutAnimation, DEFAULT_ANIMATION_CONFIG } from "./config";
8
8
 
9
9
  export { animationConfig, userAnimationConfig, shouldMarkDoMorph } from "./utils";
10
- //# sourceMappingURL=index.js.map
10
+ //# sourceMappingURL=index.js.map
@@ -5,4 +5,4 @@ export var AnimationStateEnum;
5
5
  AnimationStateEnum.enter = "enter", AnimationStateEnum.update = "update", AnimationStateEnum.state = "state",
6
6
  AnimationStateEnum.exit = "exit", AnimationStateEnum.normal = "normal", AnimationStateEnum.none = "none";
7
7
  }(AnimationStateEnum || (AnimationStateEnum = {}));
8
- //# sourceMappingURL=interface.js.map
8
+ //# sourceMappingURL=interface.js.map
@@ -34,4 +34,4 @@ class SequentialAnimate {
34
34
  export function registerSequentialAnimate() {
35
35
  mixin(BaseMark, SequentialAnimate);
36
36
  }
37
- //# sourceMappingURL=sequential-animate.js.map
37
+ //# sourceMappingURL=sequential-animate.js.map
@@ -1,2 +1,2 @@
1
1
  export { };
2
- //# sourceMappingURL=spec.js.map
2
+ //# sourceMappingURL=spec.js.map
@@ -22,4 +22,4 @@ export function registerStateTransition() {
22
22
  stopOriginalTransition: !0
23
23
  })));
24
24
  }
25
- //# sourceMappingURL=state-transition.js.map
25
+ //# sourceMappingURL=state-transition.js.map
@@ -125,4 +125,4 @@ export function isAnimationEnabledForSeries(series) {
125
125
  config.progressiveThreshold && (animationThreshold = Math.min(animationThreshold, config.progressiveThreshold)));
126
126
  })), !((null === (_f = null === (_e = series.getRawData()) || void 0 === _e ? void 0 : _e.latestData) || void 0 === _f ? void 0 : _f.length) >= animationThreshold);
127
127
  }
128
- //# sourceMappingURL=utils.js.map
128
+ //# sourceMappingURL=utils.js.map
@@ -69,4 +69,4 @@ export { AreaChart, BarChart, BarChartSpecTransformer, BoxPlotChart, CirclePacki
69
69
  export { registerLineChart, registerAreaChart, registerBarChart, registerBoxplotChart, registerCirclePackingChart, registerCircularProgressChart, registerCommonChart, registerFunnelChart, registerGaugeChart, registerHeatmapChart, registerHistogramChart, registerLinearProgressChart, registerMapChart, registerPieChart, registerRadarChart, registerRangeAreaChart, registerRangeColumnChart, registerRoseChart, registerSankeyChart, registerScatterChart, registerSequenceChart, registerSunburstChart, registerTreemapChart, registerWaterfallChart, registerWordCloudChart, registerCorrelationChart, registerLiquidChart, registerWordCloudShapeChart, registerVennChart, registerMosaicChart };
70
70
 
71
71
  export { setDefaultCrosshairForCartesianChart } from "./util";
72
- //# sourceMappingURL=index.js.map
72
+ //# sourceMappingURL=index.js.map
@@ -48,4 +48,4 @@ export class StackChartMixin {
48
48
  this._stack = new Stack(this), this._stack.init();
49
49
  }
50
50
  }
51
- //# sourceMappingURL=stack.js.map
51
+ //# sourceMappingURL=stack.js.map
package/esm/chart/util.js CHANGED
@@ -101,4 +101,4 @@ export function getTrimPaddingConfig(chartType, spec) {
101
101
  paddingOuter: 0
102
102
  };
103
103
  }
104
- //# sourceMappingURL=util.js.map
104
+ //# sourceMappingURL=util.js.map
@@ -451,4 +451,5 @@ export class Compiler {
451
451
  entry.clearProgressive();
452
452
  })), this._progressiveMarks = null);
453
453
  }
454
- }
454
+ }
455
+ //# sourceMappingURL=compiler.js.map
@@ -85,5 +85,4 @@ export const morph = (prevMarks, nextMarks, morphConfig = {}) => {
85
85
  morphCount += 1;
86
86
  }
87
87
  })), 0 === morphCount && onMorphEnd(), !0;
88
- };
89
- //# sourceMappingURL=morph.js.map
88
+ };
@@ -8,5 +8,4 @@ export var BOX_PLOT_TOOLTIP_KEYS;
8
8
  BOX_PLOT_TOOLTIP_KEYS.OUTLIER = "outlier", BOX_PLOT_TOOLTIP_KEYS.MAX = "max", BOX_PLOT_TOOLTIP_KEYS.MIN = "min",
9
9
  BOX_PLOT_TOOLTIP_KEYS.MEDIAN = "median", BOX_PLOT_TOOLTIP_KEYS.Q1 = "q1", BOX_PLOT_TOOLTIP_KEYS.Q3 = "q3",
10
10
  BOX_PLOT_TOOLTIP_KEYS.SERIES_FIELD = "seriesField";
11
- }(BOX_PLOT_TOOLTIP_KEYS || (BOX_PLOT_TOOLTIP_KEYS = {}));
12
- //# sourceMappingURL=box-plot.js.map
11
+ }(BOX_PLOT_TOOLTIP_KEYS || (BOX_PLOT_TOOLTIP_KEYS = {}));
@@ -4,4 +4,5 @@ export const CORRELATION_X = `${PREFIX}_CORRELATION_X`;
4
4
 
5
5
  export const CORRELATION_Y = `${PREFIX}_CORRELATION_Y`;
6
6
 
7
- export const CORRELATION_SIZE = `${PREFIX}_CORRELATION_SIZE`;
7
+ export const CORRELATION_SIZE = `${PREFIX}_CORRELATION_SIZE`;
8
+ //# sourceMappingURL=correlation.js.map
package/esm/core/index.js CHANGED
@@ -57,4 +57,4 @@ export { lookup } from "../data/transforms/lookup";
57
57
  export { warn } from "../util/debug";
58
58
 
59
59
  export { measureText } from "../util/text";
60
- //# sourceMappingURL=index.js.map
60
+ //# sourceMappingURL=index.js.map
@@ -22,4 +22,4 @@ export class InstanceManager {
22
22
  }
23
23
 
24
24
  InstanceManager.instances = new Map;
25
- //# sourceMappingURL=instance-manager.js.map
25
+ //# sourceMappingURL=instance-manager.js.map
@@ -1,2 +1,2 @@
1
1
  export { };
2
- //# sourceMappingURL=interface.js.map
2
+ //# sourceMappingURL=interface.js.map
package/esm/core/util.js CHANGED
@@ -3,4 +3,4 @@ import { measureText } from "../util";
3
3
  export const VCHART_UTILS = {
4
4
  measureText: measureText
5
5
  };
6
- //# sourceMappingURL=util.js.map
6
+ //# sourceMappingURL=util.js.map
@@ -1043,4 +1043,4 @@ export const registerVChartCore = () => {
1043
1043
  Factory.registerRegion("region", Region), Factory.registerLayout("base", Layout),
1044
1044
  registerGroupMark(), registerGesturePlugin(), registerElementHighlight(), registerElementSelect(),
1045
1045
  registerTheme(darkTheme.name, darkTheme);
1046
- //# sourceMappingURL=vchart.js.map
1046
+ //# sourceMappingURL=vchart.js.map
@@ -42,5 +42,4 @@ export const releaseDataViewWithDependencies = (dataView, shouldReleaseDependenc
42
42
  }));
43
43
  };
44
44
  collectReleaseDependencies(dataView), releaseDataViews([ dataView, ...releaseDependencies ]);
45
- };
46
- //# sourceMappingURL=data-view-utils.js.map
45
+ };
@@ -81,4 +81,4 @@ export var TransformLevel;
81
81
  TransformLevel[TransformLevel.linkDotInfo = -7] = "linkDotInfo", TransformLevel[TransformLevel.sankeyLayout = -7] = "sankeyLayout",
82
82
  TransformLevel[TransformLevel.dataZoomFilter = -6] = "dataZoomFilter", TransformLevel[TransformLevel.legendFilter = -5] = "legendFilter";
83
83
  }(TransformLevel || (TransformLevel = {}));
84
- //# sourceMappingURL=initialize.js.map
84
+ //# sourceMappingURL=initialize.js.map
@@ -5,4 +5,4 @@ export function registerDataSetInstanceTransform(dataSet, name, transform) {
5
5
  export function registerDataSetInstanceParser(dataSet, name, parse) {
6
6
  dataSet.getParser(name) || dataSet.registerParser(name, parse);
7
7
  }
8
- //# sourceMappingURL=register.js.map
8
+ //# sourceMappingURL=register.js.map
@@ -43,4 +43,4 @@ export class Bubble {
43
43
  this._map.clear(), this._levelNodes.clear();
44
44
  }
45
45
  }
46
- //# sourceMappingURL=bubble.js.map
46
+ //# sourceMappingURL=bubble.js.map
@@ -211,4 +211,4 @@ export class EventDispatcher {
211
211
  return eType && (interactionType = eType.split(":")[0], interactionType) && Factory.hasInteractionTrigger(interactionType);
212
212
  }
213
213
  }
214
- //# sourceMappingURL=event-dispatcher.js.map
214
+ //# sourceMappingURL=event-dispatcher.js.map
@@ -79,4 +79,4 @@ export class Event {
79
79
  handlerMap && (handlerMap.delete(callback), handlerMap.size || this._eventHandlerMap.delete(eventType));
80
80
  }
81
81
  }
82
- //# sourceMappingURL=event.js.map
82
+ //# sourceMappingURL=event.js.map
@@ -3,4 +3,4 @@ export * from "./event";
3
3
  export * from "./events";
4
4
 
5
5
  export { getCartesianDimensionInfo, getPolarDimensionInfo, getDimensionInfoByValue } from "./events/dimension/util";
6
- //# sourceMappingURL=index.js.map
6
+ //# sourceMappingURL=index.js.map
@@ -1,2 +1,2 @@
1
1
  export { };
2
- //# sourceMappingURL=interface.js.map
2
+ //# sourceMappingURL=interface.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visactor/vchart",
3
- "version": "2.1.2-alpha.5",
3
+ "version": "2.1.2-alpha.6",
4
4
  "description": "charts lib based @visactor/VGrammar",
5
5
  "main": "cjs/index.js",
6
6
  "module": "esm/index.js",
@@ -85,22 +85,22 @@
85
85
  "@size-limit/file": "9.0.0",
86
86
  "rimraf": "3.0.2",
87
87
  "cross-env": "^7.0.3",
88
- "@internal/typescript-json-schema": "0.0.1",
89
- "@internal/eslint-config": "0.0.1",
90
88
  "@internal/bundler": "0.0.1",
91
- "@internal/ts-config": "0.0.1"
89
+ "@internal/ts-config": "0.0.1",
90
+ "@internal/typescript-json-schema": "0.0.1",
91
+ "@internal/eslint-config": "0.0.1"
92
92
  },
93
93
  "dependencies": {
94
94
  "@visactor/vutils": "~1.0.23",
95
95
  "@visactor/vdataset": "~1.0.23",
96
96
  "@visactor/vscale": "~1.0.23",
97
97
  "@visactor/vlayouts": "~1.0.23",
98
- "@visactor/vrender": "1.1.3-alpha.0",
99
- "@visactor/vrender-core": "1.1.3-alpha.0",
100
- "@visactor/vrender-kits": "1.1.3-alpha.0",
101
- "@visactor/vrender-components": "1.1.3-alpha.0",
102
- "@visactor/vrender-animate": "1.1.3-alpha.0",
103
- "@visactor/vutils-extension": "2.1.2-alpha.5"
98
+ "@visactor/vrender": "1.1.3-alpha.1",
99
+ "@visactor/vrender-core": "1.1.3-alpha.1",
100
+ "@visactor/vrender-kits": "1.1.3-alpha.1",
101
+ "@visactor/vrender-components": "1.1.3-alpha.1",
102
+ "@visactor/vrender-animate": "1.1.3-alpha.1",
103
+ "@visactor/vutils-extension": "2.1.2-alpha.6"
104
104
  },
105
105
  "publishConfig": {
106
106
  "access": "public",