@annalib/anna-core 7.1.2 → 7.1.3

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