@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.
@@ -2564,14 +2564,11 @@
2564
2564
  SdTable.prototype.ngOnInit = function () {
2565
2565
  __classPrivateFieldGet(this, _initCellDef).call(this);
2566
2566
  };
2567
- SdTable.prototype.ngAfterViewChecked = function () {
2568
- if (this.table)
2569
- this.table.updateStickyColumnStyles();
2570
- };
2571
2567
  SdTable.prototype.ngAfterViewInit = function () {
2572
2568
  var _this = this;
2573
2569
  __classPrivateFieldGet(this, _subscription$1).add(__classPrivateFieldGet(this, _reload).pipe(operators.debounceTime(200), operators.switchMap(function (data) { return __awaiter(_this, void 0, void 0, function () {
2574
2570
  var filterInfo, result;
2571
+ var _this = this;
2575
2572
  return __generator(this, function (_8) {
2576
2573
  switch (_8.label) {
2577
2574
  case 0:
@@ -2580,6 +2577,10 @@
2580
2577
  case 1:
2581
2578
  result = _8.sent();
2582
2579
  __classPrivateFieldSet(this, _loadCompleted, true);
2580
+ setTimeout(function () {
2581
+ var _a;
2582
+ (_a = _this.table) === null || _a === void 0 ? void 0 : _a.updateStickyColumnStyles();
2583
+ }, 0);
2583
2584
  return [2 /*return*/, result];
2584
2585
  }
2585
2586
  });