@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.
- package/bundles/sd-angular-core-grid-material.umd.js +1 -1
- package/bundles/sd-angular-core-grid-material.umd.js.map +1 -1
- package/bundles/sd-angular-core-grid-material.umd.min.js +1 -1
- package/bundles/sd-angular-core-grid-material.umd.min.js.map +1 -1
- package/bundles/sd-angular-core-table.umd.js +5 -4
- package/bundles/sd-angular-core-table.umd.js.map +1 -1
- package/bundles/sd-angular-core-table.umd.min.js +1 -1
- package/bundles/sd-angular-core-table.umd.min.js.map +1 -1
- package/esm2015/grid-material/src/lib/grid-material.component.js +2 -2
- package/esm2015/table/src/lib/table.component.js +5 -5
- package/fesm2015/sd-angular-core-grid-material.js +1 -1
- package/fesm2015/sd-angular-core-grid-material.js.map +1 -1
- package/fesm2015/sd-angular-core-table.js +4 -4
- package/fesm2015/sd-angular-core-table.js.map +1 -1
- package/grid-material/sd-angular-core-grid-material.metadata.json +1 -1
- package/package.json +1 -1
- package/{sd-angular-core-1.3.219.tgz → sd-angular-core-1.3.220.tgz} +0 -0
- package/table/sd-angular-core-table.metadata.json +1 -1
- package/table/src/lib/table.component.d.ts +0 -1
|
@@ -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)));
|