Skip to content

Commit dcce0de

Browse files
author
Guillaume Chau
committed
Version bump
1 parent b7779c4 commit dcce0de

4 files changed

+6
-6
lines changed

dist/vue-virtual-scroller.esm.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ var VirtualScroller = { render: function render() {
422422
containerHeight = l * itemHeight;
423423
}
424424

425-
if (this._startIndex !== startIndex || this._endIndex !== endIndex || this._offsetTop !== offsetTop || this._height !== containerHeight || this._length !== l) {
425+
if (force || this._startIndex !== startIndex || this._endIndex !== endIndex || this._offsetTop !== offsetTop || this._height !== containerHeight || this._length !== l) {
426426
this.keysEnabled = !(startIndex > this._endIndex || endIndex < this._startIndex);
427427

428428
this.itemContainerStyle = {
@@ -540,7 +540,7 @@ function registerComponents(Vue, prefix) {
540540

541541
var plugin = {
542542
// eslint-disable-next-line no-undef
543-
version: "0.10.4",
543+
version: "0.10.5",
544544
install: function install(Vue, options) {
545545
var finalOptions = Object.assign({}, {
546546
installComponents: true,

dist/vue-virtual-scroller.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vue-virtual-scroller.umd.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ var VirtualScroller = { render: function render() {
428428
containerHeight = l * itemHeight;
429429
}
430430

431-
if (this._startIndex !== startIndex || this._endIndex !== endIndex || this._offsetTop !== offsetTop || this._height !== containerHeight || this._length !== l) {
431+
if (force || this._startIndex !== startIndex || this._endIndex !== endIndex || this._offsetTop !== offsetTop || this._height !== containerHeight || this._length !== l) {
432432
this.keysEnabled = !(startIndex > this._endIndex || endIndex < this._startIndex);
433433

434434
this.itemContainerStyle = {
@@ -546,7 +546,7 @@ function registerComponents(Vue, prefix) {
546546

547547
var plugin = {
548548
// eslint-disable-next-line no-undef
549-
version: "0.10.4",
549+
version: "0.10.5",
550550
install: function install(Vue, options) {
551551
var finalOptions = Object.assign({}, {
552552
installComponents: true,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vue-virtual-scroller",
33
"description": "Smooth scrolling for any amount of data",
4-
"version": "0.10.4",
4+
"version": "0.10.5",
55
"author": {
66
"name": "Guillaume Chau",
77
"email": "[email protected]"

0 commit comments

Comments
 (0)