ng-virtual-list 15.0.21 → 15.0.22
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/LICENSE +1 -1
- package/README.md +1 -1
- package/esm2020/lib/ng-virtual-list.component.mjs +4 -1
- package/fesm2015/ng-virtual-list.mjs +3 -0
- package/fesm2015/ng-virtual-list.mjs.map +1 -1
- package/fesm2020/ng-virtual-list.mjs +3 -0
- package/fesm2020/ng-virtual-list.mjs.map +1 -1
- package/lib/ng-virtual-list.component.d.ts +2 -5
- package/package.json +1 -1
|
@@ -1540,6 +1540,7 @@ class NgVirtualListComponent extends DisposableComponent {
|
|
|
1540
1540
|
this.resetRenderers(itemRenderer);
|
|
1541
1541
|
}));
|
|
1542
1542
|
}
|
|
1543
|
+
/** @internal */
|
|
1543
1544
|
ngOnInit() {
|
|
1544
1545
|
this._$initialized.next(true);
|
|
1545
1546
|
}
|
|
@@ -1670,6 +1671,7 @@ class NgVirtualListComponent extends DisposableComponent {
|
|
|
1670
1671
|
const items = this.items, latItem = items[items.length > 0 ? items.length - 1 : 0];
|
|
1671
1672
|
this.scrollTo(latItem.id, behavior);
|
|
1672
1673
|
}
|
|
1674
|
+
/** @internal */
|
|
1673
1675
|
ngAfterViewInit() {
|
|
1674
1676
|
const containerEl = this._container;
|
|
1675
1677
|
if (containerEl) {
|
|
@@ -1682,6 +1684,7 @@ class NgVirtualListComponent extends DisposableComponent {
|
|
|
1682
1684
|
this._onResizeHandler();
|
|
1683
1685
|
}
|
|
1684
1686
|
}
|
|
1687
|
+
/** @internal */
|
|
1685
1688
|
ngOnDestroy() {
|
|
1686
1689
|
super.ngOnDestroy();
|
|
1687
1690
|
this.clearScrollToRepeatExecutionTimeout();
|