@annalib/anna-core 4.2.4 → 4.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.
@@ -1179,21 +1179,7 @@ class AnnaFilterService {
1179
1179
  this.tooltipMap = new Map();
1180
1180
  this.tooltipSelectedMap = new Map();
1181
1181
  this.appliedFiltersArray = [];
1182
- this.sliderCurrencySet = new Set([
1183
- 'booked',
1184
- 'cpp',
1185
- 'cpm',
1186
- 'rcvPreempt',
1187
- 'osPreempt',
1188
- 'postedAdu',
1189
- 'scheduledAdu',
1190
- 'audienceDeficit',
1191
- 'Rate',
1192
- 'userADUs',
1193
- 'buyerChanges',
1194
- 'userChanges',
1195
- 'userMG',
1196
- ]);
1182
+ this.sliderCurrencySet = new Set(["booked", "cpp", "cpm", "rcvPreempt", "osPreempt", "postedAdu", "scheduledAdu", "audienceDeficit", "Rate"]);
1197
1183
  this.isFilterSortActive = null;
1198
1184
  this.percentTranslateFunction = (data) => {
1199
1185
  const val = data.toFixed(1) + "%";
@@ -2443,6 +2429,12 @@ class AnnaNonEditableGenericTableComponent {
2443
2429
  this.disableSliderApplyButton = true;
2444
2430
  this.incorrectSliderInput = true;
2445
2431
  }
2432
+ else if (this.showSliderMaxValueError || this.showSliderMinValueError) {
2433
+ this.incorrectSliderInput = true;
2434
+ }
2435
+ else {
2436
+ this.incorrectSliderInput = false;
2437
+ }
2446
2438
  this.disableSliderApplyBtn();
2447
2439
  }
2448
2440
  isValueInRange(val) {