@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.
@@ -2443,6 +2443,12 @@ class AnnaNonEditableGenericTableComponent {
2443
2443
  this.disableSliderApplyButton = true;
2444
2444
  this.incorrectSliderInput = true;
2445
2445
  }
2446
+ else if (this.showSliderMaxValueError || this.showSliderMinValueError) {
2447
+ this.incorrectSliderInput = true;
2448
+ }
2449
+ else {
2450
+ this.incorrectSliderInput = false;
2451
+ }
2446
2452
  this.disableSliderApplyBtn();
2447
2453
  }
2448
2454
  isValueInRange(val) {
@@ -3282,10 +3288,6 @@ class AnnaNonEditableGenericTableComponent {
3282
3288
  const tableViewHeight = e.target.offsetHeight; // viewport
3283
3289
  const tableScrollHeight = e.target.scrollHeight; // length of all table
3284
3290
  const scrollLocation = e.target.scrollTop; // how far user scrolled
3285
- const elements = document.getElementsByClassName("remarks-info-tooltip");
3286
- while (elements.length > 0) {
3287
- elements[0].remove();
3288
- }
3289
3291
  // If the user has scrolled within 150px of the bottom, add more data
3290
3292
  const buffer = 150;
3291
3293
  const limit = tableScrollHeight - tableViewHeight - buffer;