@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.
- package/esm2020/lib/anna-core-shared-lib/services/anna-filter.service.mjs +2 -2
- package/esm2020/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +2 -2
- package/fesm2015/annalib-anna-core.mjs +2 -2
- package/fesm2015/annalib-anna-core.mjs.map +1 -1
- package/fesm2020/annalib-anna-core.mjs +2 -2
- package/fesm2020/annalib-anna-core.mjs.map +1 -1
- package/lib/anna-core-shared-lib/services/anna-filter.service.d.ts +1 -1
- package/package.json +1 -1
|
@@ -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
|
|
3549
|
+
this.annaFilterService.showSktLoaderInGTTable$.subscribe((showLoader) => {
|
|
3550
3550
|
if (showLoader != null) {
|
|
3551
3551
|
this.showSkeletonLoading = showLoader;
|
|
3552
3552
|
}
|