evui 3.3.36 → 3.3.37

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.
@@ -7891,7 +7891,7 @@ $({ target: 'Number', stat: true }, {
7891
7891
  /***/ "9224":
7892
7892
  /***/ (function(module) {
7893
7893
 
7894
- module.exports = JSON.parse("{\"a\":\"3.3.36\"}");
7894
+ module.exports = JSON.parse("{\"a\":\"3.3.37\"}");
7895
7895
 
7896
7896
  /***/ }),
7897
7897
 
@@ -32915,14 +32915,14 @@ var modules = {
32915
32915
  gdataValue = gdata.value;
32916
32916
  gdataColor = gdata.color;
32917
32917
  } else {
32918
- gdataValue = gdata;
32918
+ gdataValue = gdata !== null && gdata !== void 0 ? gdata : null;
32919
32919
  }
32920
32920
 
32921
32921
  if (odata !== null && _typeof(odata) === 'object') {
32922
32922
  odataValue = odata.value;
32923
32923
  odataColor = odata.color;
32924
32924
  } else {
32925
- odataValue = odata;
32925
+ odataValue = odata !== null && odata !== void 0 ? odata : null;
32926
32926
  }
32927
32927
 
32928
32928
  if (this.options.horizontal) {
@@ -37534,7 +37534,7 @@ var scale_Scale = /*#__PURE__*/function () {
37534
37534
  increase += interval;
37535
37535
  }
37536
37536
 
37537
- var graphMax = increase > maxValue ? maxValue : increase;
37537
+ var graphMax = increase;
37538
37538
  var graphMin = minValue;
37539
37539
  var graphRange = graphMax - graphMin;
37540
37540
  numberOfSteps = Math.round(graphRange / interval);