@annalib/anna-core 7.2.5 → 7.2.8

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.
@@ -2388,7 +2388,7 @@ class AnnaNonEditableGenericTableComponent {
2388
2388
  }
2389
2389
  minValueChanged(val) {
2390
2390
  if (val || val == '0') {
2391
- this.sliderEnteredMinValue = parseInt(val);
2391
+ this.sliderEnteredMinValue = +val;
2392
2392
  this.isMinTextBoxEmpty = false;
2393
2393
  if (this.isMaxTextBoxEmpty) {
2394
2394
  if ((this.sliderEnteredMinValue > this.options.ceil) || (this.sliderEnteredMinValue < this.options.floor)) {
@@ -2440,7 +2440,7 @@ class AnnaNonEditableGenericTableComponent {
2440
2440
  }
2441
2441
  maxValueChanged(val) {
2442
2442
  if (val || val == "0") {
2443
- this.sliderEnteredMaxValue = parseInt(val);
2443
+ this.sliderEnteredMaxValue = +val;
2444
2444
  this.isMaxTextBoxEmpty = false;
2445
2445
  if (this.isMinTextBoxEmpty) {
2446
2446
  if ((this.sliderEnteredMaxValue < this.options.floor) || (this.sliderEnteredMaxValue > this.options.ceil)) {