ng-virtual-list 21.11.2 → 21.11.3

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/README.md CHANGED
@@ -694,13 +694,13 @@ Properties
694
694
 
695
695
  | Angular version | ng-virtual-list version | git | npm |
696
696
  |--|--|--|--|
697
- | 20.x | 20.11.10 | [20.x](https://github.com/DjonnyX/ng-virtual-list/tree/21.x) | [20.11.10](https://www.npmjs.com/package/ng-virtual-list/v/20.11.10) |
698
- | 19.x | 19.11.3 | [19.x](https://github.com/DjonnyX/ng-virtual-list/tree/19.x) | [19.11.3](https://www.npmjs.com/package/ng-virtual-list/v/19.11.3) |
699
- | 18.x | 18.11.2 | [18.x](https://github.com/DjonnyX/ng-virtual-list/tree/18.x) | [18.11.2](https://www.npmjs.com/package/ng-virtual-list/v/18.11.2) |
700
- | 17.x | 17.11.2 | [17.x](https://github.com/DjonnyX/ng-virtual-list/tree/17.x) | [17.11.2](https://www.npmjs.com/package/ng-virtual-list/v/17.11.2) |
701
- | 16.x | 16.11.3 | [16.x](https://github.com/DjonnyX/ng-virtual-list/tree/16.x) | [16.11.3](https://www.npmjs.com/package/ng-virtual-list/v/16.11.3) |
702
- | 15.x | 15.11.4 | [15.x](https://github.com/DjonnyX/ng-virtual-list/tree/15.x) | [15.11.4](https://www.npmjs.com/package/ng-virtual-list/v/15.11.4) |
703
- | 14.x | 14.11.4 | [14.x](https://github.com/DjonnyX/ng-virtual-list/tree/14.x) | [14.11.4](https://www.npmjs.com/package/ng-virtual-list/v/14.11.4) |
697
+ | 20.x | 20.11.11 | [20.x](https://github.com/DjonnyX/ng-virtual-list/tree/21.x) | [20.11.12](https://www.npmjs.com/package/ng-virtual-list/v/20.11.11) |
698
+ | 19.x | 19.11.4 | [19.x](https://github.com/DjonnyX/ng-virtual-list/tree/19.x) | [19.11.4](https://www.npmjs.com/package/ng-virtual-list/v/19.11.4) |
699
+ | 18.x | 18.11.3 | [18.x](https://github.com/DjonnyX/ng-virtual-list/tree/18.x) | [18.11.3](https://www.npmjs.com/package/ng-virtual-list/v/18.11.3) |
700
+ | 17.x | 17.11.3 | [17.x](https://github.com/DjonnyX/ng-virtual-list/tree/17.x) | [17.11.3](https://www.npmjs.com/package/ng-virtual-list/v/17.11.3) |
701
+ | 16.x | 16.11.4 | [16.x](https://github.com/DjonnyX/ng-virtual-list/tree/16.x) | [16.11.4](https://www.npmjs.com/package/ng-virtual-list/v/16.11.4) |
702
+ | 15.x | 15.11.5 | [15.x](https://github.com/DjonnyX/ng-virtual-list/tree/15.x) | [15.11.5](https://www.npmjs.com/package/ng-virtual-list/v/15.11.5) |
703
+ | 14.x | 14.11.5 | [14.x](https://github.com/DjonnyX/ng-virtual-list/tree/14.x) | [14.11.5](https://www.npmjs.com/package/ng-virtual-list/v/14.11.5) |
704
704
  <br/>
705
705
 
706
706
  ## 🤝 Contributing
@@ -6833,7 +6833,7 @@ class NgVirtualListComponent {
6833
6833
  }
6834
6834
  if (!!this._snappedDisplayComponents) {
6835
6835
  while (this._snappedDisplayComponents.length > 0) {
6836
- const comp = this._displayComponents.shift();
6836
+ const comp = this._snappedDisplayComponents.shift();
6837
6837
  comp?.destroy();
6838
6838
  }
6839
6839
  }