@annalib/anna-core 4.2.7 → 4.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.
- package/esm2020/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +7 -5
- package/fesm2015/annalib-anna-core.mjs +6 -4
- package/fesm2015/annalib-anna-core.mjs.map +1 -1
- package/fesm2020/annalib-anna-core.mjs +6 -4
- package/fesm2020/annalib-anna-core.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -2441,6 +2441,12 @@ class AnnaNonEditableGenericTableComponent {
|
|
|
2441
2441
|
this.disableSliderApplyButton = true;
|
|
2442
2442
|
this.incorrectSliderInput = true;
|
|
2443
2443
|
}
|
|
2444
|
+
else if (this.showSliderMaxValueError || this.showSliderMinValueError) {
|
|
2445
|
+
this.incorrectSliderInput = true;
|
|
2446
|
+
}
|
|
2447
|
+
else {
|
|
2448
|
+
this.incorrectSliderInput = false;
|
|
2449
|
+
}
|
|
2444
2450
|
this.disableSliderApplyBtn();
|
|
2445
2451
|
}
|
|
2446
2452
|
isValueInRange(val) {
|
|
@@ -3280,10 +3286,6 @@ class AnnaNonEditableGenericTableComponent {
|
|
|
3280
3286
|
const tableViewHeight = e.target.offsetHeight; // viewport
|
|
3281
3287
|
const tableScrollHeight = e.target.scrollHeight; // length of all table
|
|
3282
3288
|
const scrollLocation = e.target.scrollTop; // how far user scrolled
|
|
3283
|
-
const elements = document.getElementsByClassName("remarks-info-tooltip");
|
|
3284
|
-
while (elements.length > 0) {
|
|
3285
|
-
elements[0].remove();
|
|
3286
|
-
}
|
|
3287
3289
|
// If the user has scrolled within 150px of the bottom, add more data
|
|
3288
3290
|
const buffer = 150;
|
|
3289
3291
|
const limit = tableScrollHeight - tableViewHeight - buffer;
|