ng-virtual-list 19.10.2 → 19.10.4
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 +0 -1
- package/fesm2022/ng-virtual-list.mjs +449 -283
- package/fesm2022/ng-virtual-list.mjs.map +1 -1
- package/lib/components/list-item/ng-virtual-list-item.component.d.ts +1 -1
- package/lib/components/list-item/ng-virtual-list-item.module.d.ts +9 -0
- package/lib/components/ng-scroll-bar/ng-scroll-bar.component.d.ts +1 -1
- package/lib/components/ng-scroll-bar/ng-scroll-bar.module.d.ts +9 -0
- package/lib/components/ng-scroll-view/ng-scroll-view.component.d.ts +6 -1
- package/lib/components/scroller/ng-scroller.component.d.ts +1 -1
- package/lib/components/scroller/ng-scroller.module.d.ts +11 -0
- package/lib/components/substrate/substrate.component.d.ts +1 -1
- package/lib/components/substrate/substrate.module.d.ts +8 -0
- package/lib/directives/index.d.ts +3 -2
- package/lib/directives/item-click/item-click.directive.d.ts +2 -2
- package/lib/directives/item-click/item-click.module.d.ts +8 -0
- package/lib/directives/locale-sensitive/locale-sensitive.directive.d.ts +2 -2
- package/lib/directives/locale-sensitive/locale-sensitive.module.d.ts +8 -0
- package/lib/ng-virtual-list.component.d.ts +20 -18
- package/lib/ng-virtual-list.module.d.ts +11 -0
- package/lib/types/animation-params.d.ts +0 -6
- package/lib/utils/animator/animator.d.ts +1 -7
- package/lib/utils/animator/ease.d.ts +0 -12
- package/lib/utils/animator/types/easing.d.ts +0 -6
- package/lib/utils/scroll-event.d.ts +1 -0
- package/lib/utils/track-box.d.ts +4 -11
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/lib/directives/item-click/index.d.ts +0 -2
package/README.md
CHANGED
|
@@ -710,7 +710,6 @@ Methods
|
|
|
710
710
|
| scrollToEnd | | Scrolls the list to the end of the content height. |
|
|
711
711
|
| getItemBounds | (id: [Id](https://github.com/DjonnyX/ng-virtual-list/blob/19.x/projects/ng-virtual-list/src/lib/types/id.ts), behavior?: ScrollBehavior) => void | Returns the bounds of an element with a given id |
|
|
712
712
|
| focus | [Id](https://github.com/DjonnyX/ng-virtual-list/blob/19.x/projects/ng-virtual-list/src/lib/types/id.ts), align: [FocusAlignment](https://github.com/DjonnyX/ng-virtual-list/blob/19.x/projects/ng-virtual-list/src/lib/types/focus-alignment.ts) = [FocusAlignments.NONE](https://github.com/DjonnyX/ng-virtual-list/blob/19.x/projects/ng-virtual-list/src/lib/enums/focus-alignments.ts) | Focus an list item by a given id. |
|
|
713
|
-
| cacheClean | | Force clearing the cache. |
|
|
714
713
|
| stopSnappingScrollToEnd | | Stops the list from snapping to the bottom edge. |
|
|
715
714
|
|
|
716
715
|
<br/>
|