@annalib/anna-core 11.2.22 → 11.2.24

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.
@@ -2274,6 +2274,7 @@ class AnnaNonEditableGenericTableComponent {
2274
2274
  let minValue = this.annaFilterService.returnMaxAndMinValue(optionsData, header, true);
2275
2275
  let maxValue = this.annaFilterService.returnMaxAndMinValue(optionsData, header, false);
2276
2276
  let obj = this.annaFilterService.setOptionValues(minValue, maxValue);
2277
+ console.log(obj);
2277
2278
  if (translateFunc === "normal") {
2278
2279
  obj.translate = this.annaFilterService.normalTranslateFunction;
2279
2280
  }
@@ -2287,8 +2288,8 @@ class AnnaNonEditableGenericTableComponent {
2287
2288
  this.options.step = 1;
2288
2289
  this.sliderFilterTextBoxStep = "1";
2289
2290
  if (header !== "WeekNumber") {
2290
- this.options.step = 0.1;
2291
- this.sliderFilterTextBoxStep = "0.1";
2291
+ this.options.step = 0.01;
2292
+ this.sliderFilterTextBoxStep = "0.01";
2292
2293
  }
2293
2294
  }
2294
2295
  setSelectedRangeForSlider(header) {
@@ -2305,6 +2306,8 @@ class AnnaNonEditableGenericTableComponent {
2305
2306
  }
2306
2307
  this.sliderEnteredMinValue = this.sliderMinValue;
2307
2308
  this.sliderEnteredMaxValue = this.sliderMaxValue;
2309
+ console.log(this.sliderEnteredMinValue);
2310
+ console.log(this.sliderEnteredMaxValue);
2308
2311
  }
2309
2312
  getCheckboxData(header) {
2310
2313
  let tooltipOptions = this.createListForCheckboxFilter(header);