evui 3.4.140 → 3.4.141

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
@@ -11200,7 +11200,7 @@ $({ target: 'Number', stat: true }, {
11200
11200
  /***/ "9224":
11201
11201
  /***/ (function(module) {
11202
11202
 
11203
- module.exports = JSON.parse("{\"a\":\"3.4.140\"}");
11203
+ module.exports = JSON.parse("{\"a\":\"3.4.141\"}");
11204
11204
 
11205
11205
  /***/ }),
11206
11206
 
@@ -46330,11 +46330,12 @@ var scale_linear_LinearScale = /*#__PURE__*/function (_Scale) {
46330
46330
  var data = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
46331
46331
 
46332
46332
  if (this.formatter) {
46333
- var formattedLabel = this.formatter(this.getTruthyValue(value), _objectSpread2(_objectSpread2({}, data), {}, {
46333
+ var currentDecimalPointValue = this.getTruthyValue(value);
46334
+ var formattedLabel = this.formatter(currentDecimalPointValue, _objectSpread2(_objectSpread2({}, data), {}, {
46334
46335
  prevOriginalValue: data === null || data === void 0 ? void 0 : data.prev,
46335
46336
  prevDecimalPointValue: this.getTruthyValue(data === null || data === void 0 ? void 0 : data.prev),
46336
46337
  currentOriginalValue: value,
46337
- currentDecimalPointValue: Number(value.toFixed(this.decimalPoint))
46338
+ currentDecimalPointValue: currentDecimalPointValue
46338
46339
  }));
46339
46340
 
46340
46341
  if (typeof formattedLabel === 'string') {