@annalib/anna-core 7.2.5 → 7.2.6
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/esm2020/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +3 -3
- package/fesm2015/annalib-anna-core.mjs +2 -2
- package/fesm2015/annalib-anna-core.mjs.map +1 -1
- package/fesm2020/annalib-anna-core.mjs +2 -2
- package/fesm2020/annalib-anna-core.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -2388,7 +2388,7 @@ class AnnaNonEditableGenericTableComponent {
|
|
|
2388
2388
|
}
|
|
2389
2389
|
minValueChanged(val) {
|
|
2390
2390
|
if (val || val == '0') {
|
|
2391
|
-
this.sliderEnteredMinValue =
|
|
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 =
|
|
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)) {
|