Releases: Akryum/vue-virtual-scroller
Releases · Akryum/vue-virtual-scroller
v1.1.0
Features
- Create grids with the new
gridItems
prop (#27) - New
itemSecondarySize
prop - add skipHover prop to deactive the hover detection (#752)
- update event provide range of the visible items (#115)
- adds configurable list/item tags for semantic html (#203)
- throw error when key field does not exist in item (#265)
- custom classes for list wrapper and list items. (#397)
- add an empty slot (#398)
- Emit events for scroll to begin and end of list (#364)
Bug fixes
- DynamicScrollerItem: watch item prop (#700)
- Account for the height of the leading and trailing slots when calculating visible items, fix #685
- restore scroll in keep-alive (#724)
- DynamicScroller should pass its own keyField prop to child RecycleScroller (#732)
- issue with beforeDestroy hook (#748)
- avoid jumping scroll position when upper item size is calculated (#374)
- scrollToItem works with pageMode (#396)
- clamp endIndex if less items than prerender (#473)
- wrap the callback in requestAnimationFrame, fix #516 (#517)
v1.0.10
v1.0.8 - 1.0.9
v1.0.7
v1.0.5 - 1.0.6
v1.0.4
v1.0.0-1.0.3
v1.0.0-rc.2
Fixed
- issue with Vue 2.6 compiler, revert back to 2.5, closes #136
v1.0.0-rc.1
BREAKING CHANGES
- Renamed props in
RecycleScroller
andDynamicScroller
:
itemHeight => itemSize
minItemHeight => minItemSize
heightField => sizeField
- Renamed slots in
RecycleScroller
andDynamicScroller
:
before-container => before
after-container => after
- Slot variables changed in
DynamicScroller
:
itemWithHeight => itemWithSize
New
direction
prop (either'vertical'
or'horizontal'
)