Skip to content

Releases: Akryum/vue-virtual-scroller

v0.10.4

26 Oct 14:58
Compare
Choose a tag to compare
v0.10.4 Pre-release
Pre-release

New

  • New 'visible' event emitted when the scroller becomes visible
  • The behavior introduced in 0.10.2 (defer removing previous items) is now disabled by default and enabled with the delay-previous-items boolean prop.

v0.10.2

26 Oct 10:17
Compare
Choose a tag to compare
v0.10.2 Pre-release
Pre-release

New

  • A 'resize' event is emitted when the virtual-scroller size changes
  • New refs: vm.$refs.itemContainer and vm.$refs.items for the container elements.

Improved

  • buffer is now applied around the pool.
  • Some unnecessary updates are now skipped.
  • The previous items are removed the next frame. This fixes nasty issues when dealing with items that change their height multiple times or contain horrible things like iframes.
  • The first update is now skipped if the scroller has been rendered on the server.
  • Source code: Some syntax and code style changes.

v0.10.1

24 Oct 14:53
Compare
Choose a tag to compare
v0.10.1 Pre-release
Pre-release

Breaking changes

  • buffer and poolSize are now in pixels and work for both fixed and variable heights modes.

New

  • emitUpdate boolean prop to enable the new update event when the rendered item list changes.

Improved

  • Now built using rollup instead of webpack.
  • Distribution files availables: browser, UMD and ES Module.

v0.9.0: Removed module index.js

18 Sep 13:13
Compare
Choose a tag to compare
Pre-release

Breaking changes

  • The CSS file should now imported manually when using a bundler.

v0.8.1

03 Aug 16:31
Compare
Choose a tag to compare

New

  • SSR support
  • New prerender prop (doc)

Fixes

  • Default import for bundlers that supports modules
  • Handle window resizing in page mode
  • Some initialization issues

v0.7.7

13 Jul 09:56
Compare
Choose a tag to compare

Fixed

  • Vue 2.4.x warning about keys
  • Fix invisible elements PR #28 (thx @akernet)

v0.7.5

27 Jun 16:48
Compare
Choose a tag to compare

Fixed

  • Better reactivity when item height changes.
  • Fix negative start index in static height mode.
  • Other fixes

v0.7.1

27 Jun 13:57
Compare
Choose a tag to compare

Fixed

  • Fixed scrollToItem in variable height mode.

v0.7.0

27 Jun 13:52
Compare
Choose a tag to compare

New

  • Variable height mode (doc)

Improved

v0.5.1

09 Jan 16:30
Compare
Choose a tag to compare
  • New page mode.
  • Performance improvements thanks to smarter vue key attribute usage
  • Scoped slots gets a new itemKey prop that should be used as the key for the item elements.