evui 3.4.128 → 3.4.130

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.128\"}");
11177
+ module.exports = JSON.parse("{\"a\":\"3.4.130\"}");
11178
11178
 
11179
11179
  /***/ }),
11180
11180
 
@@ -44640,7 +44640,7 @@ var element_heatmap_HeatMap = /*#__PURE__*/function () {
44640
44640
  key: "findSelectionRange",
44641
44641
  value: function findSelectionRange(rangeInfo) {
44642
44642
  var xsp = rangeInfo.xsp,
44643
- ycp = rangeInfo.ycp,
44643
+ ysp = rangeInfo.ysp,
44644
44644
  width = rangeInfo.width,
44645
44645
  height = rangeInfo.height,
44646
44646
  range = rangeInfo.range;
@@ -44668,7 +44668,6 @@ var element_heatmap_HeatMap = /*#__PURE__*/function () {
44668
44668
  var gapX = (x2 - x1) / labelXCount;
44669
44669
  var gapY = (y2 - y1) / labelYCount;
44670
44670
  var xep = xsp + width;
44671
- var ysp = ycp;
44672
44671
  var yep = ysp + height;
44673
44672
  var xIndex = {
44674
44673
  min: Math.floor((xsp - x1) / gapX),
@@ -44676,8 +44675,8 @@ var element_heatmap_HeatMap = /*#__PURE__*/function () {
44676
44675
  };
44677
44676
  var lastIndexY = labelYCount - 1;
44678
44677
  var yIndex = {
44679
- min: lastIndexY - Math.floor((yep - y1 - gapY) / gapY),
44680
- max: lastIndexY - Math.floor((ysp - y1) / gapY)
44678
+ min: lastIndexY - Math.round((yep - y1 - gapY) / gapY),
44679
+ max: lastIndexY - Math.round((ysp - y1) / gapY)
44681
44680
  };
44682
44681
  var filteredLabelX = this.getFilteredLabel(labelX, labelXCount, xMin, xMax);
44683
44682
  var filteredLabelY = this.getFilteredLabel(labelY, labelYCount, yMin, yMax);