@annalib/anna-core 4.3.8 → 4.3.9

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.
@@ -2389,8 +2389,10 @@ class AnnaNonEditableGenericTableComponent {
2389
2389
  this.disableSliderApplyButton = false;
2390
2390
  this.incorrectSliderInput = false;
2391
2391
  }
2392
+ console.log(this.sliderEnteredMinValue);
2392
2393
  }
2393
2394
  else {
2395
+ console.log('inside else condition');
2394
2396
  this.sliderEnteredMinValue = this.options.floor;
2395
2397
  this.isMinTextBoxEmpty = true;
2396
2398
  this.showSliderMinValueError = false;
@@ -2447,6 +2449,7 @@ class AnnaNonEditableGenericTableComponent {
2447
2449
  this.sliderEnteredMaxValue = this.options.ceil;
2448
2450
  this.isMaxTextBoxEmpty = true;
2449
2451
  this.showSliderMaxValueError = false;
2452
+ console.log(this.sliderEnteredMaxValue);
2450
2453
  }
2451
2454
  this.showErrorForMinAndMaxValue();
2452
2455
  }
@@ -3247,6 +3250,7 @@ class AnnaNonEditableGenericTableComponent {
3247
3250
  checkIfSortingChanged() {
3248
3251
  this.isSortChanged = this.tempSortOrder != null && this.tempSortOrder != this.annaSortService.columnSortState.get(this.annaFilterService.selectedRadio);
3249
3252
  ;
3253
+ console.log(this.isSortChanged);
3250
3254
  return this.isSortChanged;
3251
3255
  }
3252
3256
  disableApplyButtonOfSelectedFilter() {