@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
|
@@ -2386,7 +2386,7 @@ class AnnaNonEditableGenericTableComponent {
|
|
|
2386
2386
|
}
|
|
2387
2387
|
minValueChanged(val) {
|
|
2388
2388
|
if (val || val == '0') {
|
|
2389
|
-
this.sliderEnteredMinValue =
|
|
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 =
|
|
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)) {
|