evui 3.3.69 → 3.3.70
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.
- package/dist/evui.common.js +8 -4
- package/dist/evui.common.js.map +1 -1
- package/dist/evui.umd.js +8 -4
- package/dist/evui.umd.js.map +1 -1
- package/dist/evui.umd.min.js +1 -1
- package/dist/evui.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/chartBrush/chartBrush.core.js +5 -2
- package/src/components/chartBrush/uses.js +1 -0
package/dist/evui.common.js
CHANGED
|
@@ -10949,7 +10949,7 @@ $({ target: 'Number', stat: true }, {
|
|
|
10949
10949
|
/***/ "9224":
|
|
10950
10950
|
/***/ (function(module) {
|
|
10951
10951
|
|
|
10952
|
-
module.exports = JSON.parse("{\"a\":\"3.3.
|
|
10952
|
+
module.exports = JSON.parse("{\"a\":\"3.3.70\"}");
|
|
10953
10953
|
|
|
10954
10954
|
/***/ }),
|
|
10955
10955
|
|
|
@@ -51327,8 +51327,11 @@ var chartBrush_core_EvChartBrush = /*#__PURE__*/function () {
|
|
|
51327
51327
|
this.brushCanvas[type]('mousedown', this.onMouseDown);
|
|
51328
51328
|
this.brushCanvas[type]('mouseup', this.onMouseUp);
|
|
51329
51329
|
this.brushCanvas[type]('mouseleave', this.onMouseLeave);
|
|
51330
|
-
|
|
51331
|
-
|
|
51330
|
+
|
|
51331
|
+
if (this.evChartBrushOptions.value.useWheelMove) {
|
|
51332
|
+
this.brushCanvas[type]('wheel', this.onWheel);
|
|
51333
|
+
this.brushCanvas[type]('wheel', this.onWheelDebounce);
|
|
51334
|
+
}
|
|
51332
51335
|
}
|
|
51333
51336
|
}, {
|
|
51334
51337
|
key: "removeBrushWrapper",
|
|
@@ -51660,7 +51663,8 @@ var chartBrush_uses_DEFAULT_OPTIONS = {
|
|
|
51660
51663
|
selection: {
|
|
51661
51664
|
fillColor: '#38ACEC',
|
|
51662
51665
|
opacity: 0.65
|
|
51663
|
-
}
|
|
51666
|
+
},
|
|
51667
|
+
useWheelMove: true
|
|
51664
51668
|
}; // eslint-disable-next-line import/prefer-default-export
|
|
51665
51669
|
|
|
51666
51670
|
var uses_useBrushModel = function useBrushModel() {
|