@annalib/anna-core 22.1.27 → 22.1.28

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.
@@ -1334,7 +1334,7 @@ class AnnaFilterService {
1334
1334
  ]);
1335
1335
  this.isFilterSortActive = {};
1336
1336
  this.resetFilterSortActiveStatus = true;
1337
- this.showSktLoaderInGTTable = new BehaviorSubject(null);
1337
+ this.showSktLoaderInGTTable$ = new BehaviorSubject(null);
1338
1338
  this.percentTranslateFunction = (data) => {
1339
1339
  if (Math.abs(data) >= 1000) {
1340
1340
  let isNegVal = data < 0;
@@ -3546,7 +3546,7 @@ class AnnaNonEditableGenericTableComponent {
3546
3546
  this.tableBottomBorderClass = null;
3547
3547
  this.showCheckboxesForTimeFilter = false;
3548
3548
  this.setTooltipRadioNames();
3549
- this.annaFilterService.showSktLoaderInGTTable.subscribe((showLoader) => {
3549
+ this.annaFilterService.showSktLoaderInGTTable$.subscribe((showLoader) => {
3550
3550
  if (showLoader != null) {
3551
3551
  this.showSkeletonLoading = showLoader;
3552
3552
  }