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