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.
package/dist/evui.umd.js CHANGED
@@ -11183,7 +11183,7 @@ module.exports = exports;
11183
11183
  /***/ "9224":
11184
11184
  /***/ (function(module) {
11185
11185
 
11186
- module.exports = JSON.parse("{\"a\":\"3.4.128\"}");
11186
+ module.exports = JSON.parse("{\"a\":\"3.4.130\"}");
11187
11187
 
11188
11188
  /***/ }),
11189
11189
 
@@ -44649,7 +44649,7 @@ var element_heatmap_HeatMap = /*#__PURE__*/function () {
44649
44649
  key: "findSelectionRange",
44650
44650
  value: function findSelectionRange(rangeInfo) {
44651
44651
  var xsp = rangeInfo.xsp,
44652
- ycp = rangeInfo.ycp,
44652
+ ysp = rangeInfo.ysp,
44653
44653
  width = rangeInfo.width,
44654
44654
  height = rangeInfo.height,
44655
44655
  range = rangeInfo.range;
@@ -44677,7 +44677,6 @@ var element_heatmap_HeatMap = /*#__PURE__*/function () {
44677
44677
  var gapX = (x2 - x1) / labelXCount;
44678
44678
  var gapY = (y2 - y1) / labelYCount;
44679
44679
  var xep = xsp + width;
44680
- var ysp = ycp;
44681
44680
  var yep = ysp + height;
44682
44681
  var xIndex = {
44683
44682
  min: Math.floor((xsp - x1) / gapX),
@@ -44685,8 +44684,8 @@ var element_heatmap_HeatMap = /*#__PURE__*/function () {
44685
44684
  };
44686
44685
  var lastIndexY = labelYCount - 1;
44687
44686
  var yIndex = {
44688
- min: lastIndexY - Math.floor((yep - y1 - gapY) / gapY),
44689
- max: lastIndexY - Math.floor((ysp - y1) / gapY)
44687
+ min: lastIndexY - Math.round((yep - y1 - gapY) / gapY),
44688
+ max: lastIndexY - Math.round((ysp - y1) / gapY)
44690
44689
  };
44691
44690
  var filteredLabelX = this.getFilteredLabel(labelX, labelXCount, xMin, xMax);
44692
44691
  var filteredLabelY = this.getFilteredLabel(labelY, labelYCount, yMin, yMax);