evui 3.4.202 → 3.4.203

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.
@@ -11174,7 +11174,7 @@ module.exports = exports;
11174
11174
  /***/ "9224":
11175
11175
  /***/ (function(module) {
11176
11176
 
11177
- module.exports = JSON.parse("{\"a\":\"3.4.202\"}");
11177
+ module.exports = JSON.parse("{\"a\":\"3.4.203\"}");
11178
11178
 
11179
11179
  /***/ }),
11180
11180
 
@@ -44722,7 +44722,7 @@ var element_heatmap_HeatMap = /*#__PURE__*/function () {
44722
44722
  key: "findSelectionRange",
44723
44723
  value: function findSelectionRange(rangeInfo) {
44724
44724
  var xsp = rangeInfo.xsp,
44725
- ycp = rangeInfo.ycp,
44725
+ ysp = rangeInfo.ysp,
44726
44726
  width = rangeInfo.width,
44727
44727
  height = rangeInfo.height,
44728
44728
  range = rangeInfo.range;
@@ -44750,7 +44750,6 @@ var element_heatmap_HeatMap = /*#__PURE__*/function () {
44750
44750
  var gapX = (x2 - x1) / labelXCount;
44751
44751
  var gapY = (y2 - y1) / labelYCount;
44752
44752
  var xep = xsp + width;
44753
- var ysp = ycp;
44754
44753
  var yep = ysp + height;
44755
44754
  var xIndex = {
44756
44755
  min: Math.floor((xsp - x1) / gapX),
@@ -44758,8 +44757,8 @@ var element_heatmap_HeatMap = /*#__PURE__*/function () {
44758
44757
  };
44759
44758
  var lastIndexY = labelYCount - 1;
44760
44759
  var yIndex = {
44761
- min: lastIndexY - Math.floor((yep - y1 - gapY) / gapY),
44762
- max: lastIndexY - Math.floor((ysp - y1) / gapY)
44760
+ min: lastIndexY - Math.round((yep - y1 - gapY) / gapY),
44761
+ max: lastIndexY - Math.round((ysp - y1) / gapY)
44763
44762
  };
44764
44763
  var filteredLabelX = this.getFilteredLabel(labelX, labelXCount, xMin, xMax);
44765
44764
  var filteredLabelY = this.getFilteredLabel(labelY, labelYCount, yMin, yMax);
@@ -45470,10 +45469,6 @@ var scale_Scale = /*#__PURE__*/function () {
45470
45469
  var maxY = aPos.y2; // bottom
45471
45470
 
45472
45471
  (_this$plotBands2 = this.plotBands) === null || _this$plotBands2 === void 0 ? void 0 : _this$plotBands2.forEach(function (plotBand) {
45473
- if (!plotBand.from && !plotBand.to) {
45474
- return;
45475
- }
45476
-
45477
45472
  var mergedPlotBandOpt = lodash_es_defaultsDeep({}, plotBand, PLOT_BAND_OPTION);
45478
45473
  var userDefinedFrom = mergedPlotBandOpt.from,
45479
45474
  userDefinedTo = mergedPlotBandOpt.to,