tvcharts 0.9.27 → 0.9.29

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.
@@ -47,6 +47,8 @@ import ChartView from '../../view/Chart.js';
47
47
  import { createClipPath } from '../helper/createClipPathFromCoordSys.js';
48
48
  import NormalBoxPath from '../candlePlot/NormalBoxPath.js';
49
49
  import WickPath from '../candlePlot/WickPath.js';
50
+ import { getECData } from '../../util/innerStore.js';
51
+ import { toggleHoverEmphasis } from '../../util/states.js';
50
52
  // const SKIP_PROPS = ['color', 'borderColor'] as const;
51
53
  var HeikinAshiView = /** @class */function (_super) {
52
54
  __extends(HeikinAshiView, _super);
@@ -125,10 +127,9 @@ var HeikinAshiView = /** @class */function (_super) {
125
127
  } else {
126
128
  this.group.removeClipPath();
127
129
  }
128
- // toggleHoverEmphasis(this.group, null, null, false);
129
- // getECData(this.group).groupId = groupId;
130
+ toggleHoverEmphasis(this.group, null, null, false);
131
+ getECData(this.group).groupId = groupId;
130
132
  };
131
-
132
133
  HeikinAshiView.prototype.remove = function (ecModel) {
133
134
  this._clear();
134
135
  };
@@ -110,6 +110,9 @@ function createCoordSysRecord(api, coordSysModel) {
110
110
  // const axis = axisProxy.getAxisModel().axis;
111
111
  api.trigger('loadmore', valueData);
112
112
  }
113
+ if (dzInfo.model.isDragging) {
114
+ dzInfo.model.isDragging = false;
115
+ }
113
116
  });
114
117
  api.trigger('zoomend');
115
118
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tvcharts",
3
- "version": "0.9.27",
3
+ "version": "0.9.29",
4
4
  "main": "dist/echarts.js",
5
5
  "module": "index.js",
6
6
  "jsdelivr": "dist/echarts.min.js",