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