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.
@@ -11191,7 +11191,7 @@ $({ target: 'Number', stat: true }, {
11191
11191
  /***/ "9224":
11192
11192
  /***/ (function(module) {
11193
11193
 
11194
- module.exports = JSON.parse("{\"a\":\"3.4.140\"}");
11194
+ module.exports = JSON.parse("{\"a\":\"3.4.141\"}");
11195
11195
 
11196
11196
  /***/ }),
11197
11197
 
@@ -46321,11 +46321,12 @@ var scale_linear_LinearScale = /*#__PURE__*/function (_Scale) {
46321
46321
  var data = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
46322
46322
 
46323
46323
  if (this.formatter) {
46324
- var formattedLabel = this.formatter(this.getTruthyValue(value), _objectSpread2(_objectSpread2({}, data), {}, {
46324
+ var currentDecimalPointValue = this.getTruthyValue(value);
46325
+ var formattedLabel = this.formatter(currentDecimalPointValue, _objectSpread2(_objectSpread2({}, data), {}, {
46325
46326
  prevOriginalValue: data === null || data === void 0 ? void 0 : data.prev,
46326
46327
  prevDecimalPointValue: this.getTruthyValue(data === null || data === void 0 ? void 0 : data.prev),
46327
46328
  currentOriginalValue: value,
46328
- currentDecimalPointValue: Number(value.toFixed(this.decimalPoint))
46329
+ currentDecimalPointValue: currentDecimalPointValue
46329
46330
  }));
46330
46331
 
46331
46332
  if (typeof formattedLabel === 'string') {