@sd-angular/core 1.3.219 → 1.3.220

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.
@@ -1693,15 +1693,15 @@ class SdTable {
1693
1693
  ngOnInit() {
1694
1694
  __classPrivateFieldGet(this, _initCellDef).call(this);
1695
1695
  }
1696
- ngAfterViewChecked() {
1697
- if (this.table)
1698
- this.table.updateStickyColumnStyles();
1699
- }
1700
1696
  ngAfterViewInit() {
1701
1697
  __classPrivateFieldGet(this, _subscription$1).add(__classPrivateFieldGet(this, _reload).pipe(debounceTime(200), switchMap((data) => __awaiter(this, void 0, void 0, function* () {
1702
1698
  const filterInfo = __classPrivateFieldGet(this, _getFilter).call(this);
1703
1699
  const result = yield __classPrivateFieldGet(this, _load).call(this, filterInfo, !__classPrivateFieldGet(this, _loadCompleted) || data.force);
1704
1700
  __classPrivateFieldSet(this, _loadCompleted, true);
1701
+ setTimeout(() => {
1702
+ var _a;
1703
+ (_a = this.table) === null || _a === void 0 ? void 0 : _a.updateStickyColumnStyles();
1704
+ }, 0);
1705
1705
  return result;
1706
1706
  })))
1707
1707
  .subscribe(__classPrivateFieldGet(this, _render)));