ng-virtual-list 21.11.0 → 21.11.2
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 +12 -8
- package/fesm2022/ng-virtual-list.mjs +209 -127
- package/fesm2022/ng-virtual-list.mjs.map +1 -1
- package/package.json +1 -1
- package/types/ng-virtual-list.d.ts +142 -90
package/README.md
CHANGED
|
@@ -16,9 +16,12 @@ Works correctly in all browsers and platforms.
|
|
|
16
16
|

|
|
17
17
|

|
|
18
18
|
|
|
19
|
-
[
|
|
19
|
+
[Chat Demo](https://chat-demo.eugene-grebennikov.pro/)
|
|
20
20
|
[(Code)](https://github.com/DjonnyX/ng-virtual-list-chat-demo)
|
|
21
21
|
|
|
22
|
+
[News Feed Demo](https://news-feed-demo.eugene-grebennikov.pro/)
|
|
23
|
+
[(Code)](https://github.com/DjonnyX/ng-virtual-list-news-feed-demo)
|
|
24
|
+
|
|
22
25
|
[Live Examples (Storybook)](https://ng-virtual-list-examples.eugene-grebennikov.pro/)
|
|
23
26
|
|
|
24
27
|
[Examples](https://ng-virtual-list.eugene-grebennikov.pro/)
|
|
@@ -635,6 +638,7 @@ Inputs
|
|
|
635
638
|
| scrollbarThumbRenderer | TemplateRef<any> \| null = null | Scrollbar customization template. |
|
|
636
639
|
| scrollbarThumbParams | {[propName: string]: any;} \| null | Additional options for the scrollbar. |
|
|
637
640
|
| scrollBehavior | ScrollBehavior? = 'smooth' | Defines the scrolling behavior for any element on the page. The default value is "smooth". |
|
|
641
|
+
| scrollingSettings | [IScrollingSettings](https://github.com/DjonnyX/ng-virtual-list/blob/21.x/projects/ng-virtual-list/src/lib/interfaces/scrolling-settings.ts) = {frictionalForce: 0.035, mass: 0.005, maxDistance: 12500, maxDuration: 4000, speedScale: 15, optimization: true} | Scrolling settings. |
|
|
638
642
|
| trackBy | string? = 'id' | The name of the property by which tracking is performed. |
|
|
639
643
|
|
|
640
644
|
<br/>
|
|
@@ -690,13 +694,13 @@ Properties
|
|
|
690
694
|
|
|
691
695
|
| Angular version | ng-virtual-list version | git | npm |
|
|
692
696
|
|--|--|--|--|
|
|
693
|
-
| 20.x | 20.11.
|
|
694
|
-
| 19.x | 19.11.
|
|
695
|
-
| 18.x | 18.11.
|
|
696
|
-
| 17.x | 17.11.
|
|
697
|
-
| 16.x | 16.11.
|
|
698
|
-
| 15.x | 15.11.
|
|
699
|
-
| 14.x | 14.11.
|
|
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) |
|
|
700
704
|
<br/>
|
|
701
705
|
|
|
702
706
|
## 🤝 Contributing
|