@vaadin/vaadin-virtual-list
Advanced tools
Comparing version 21.0.0 to 21.0.1
{ | ||
"name": "@vaadin/vaadin-virtual-list", | ||
"version": "21.0.0", | ||
"version": "21.0.1", | ||
"description": "Web Component for displaying a virtual/infinite list or items.", | ||
@@ -29,6 +29,6 @@ "main": "vaadin-virtual-list.js", | ||
"@polymer/polymer": "^3.0.0", | ||
"@vaadin/vaadin-element-mixin": "^21.0.0", | ||
"@vaadin/vaadin-lumo-styles": "^21.0.0", | ||
"@vaadin/vaadin-material-styles": "^21.0.0", | ||
"@vaadin/vaadin-themable-mixin": "^21.0.0" | ||
"@vaadin/vaadin-element-mixin": "^21.0.1", | ||
"@vaadin/vaadin-lumo-styles": "^21.0.1", | ||
"@vaadin/vaadin-material-styles": "^21.0.1", | ||
"@vaadin/vaadin-themable-mixin": "^21.0.1" | ||
}, | ||
@@ -44,3 +44,3 @@ "devDependencies": { | ||
}, | ||
"gitHead": "b3216700eb7d19fcae32962199d39d5899f342b6" | ||
"gitHead": "91e44dcfa63dc5e30e1e8d18be499b3e1e17b1c4" | ||
} |
@@ -65,3 +65,3 @@ /** | ||
static get version() { | ||
return '21.0.0'; | ||
return '21.0.1'; | ||
} | ||
@@ -68,0 +68,0 @@ |
@@ -163,2 +163,7 @@ import { timeOut, animationFrame } from './async.js'; | ||
this.__size = size; | ||
// Flush before invoking items change to avoid | ||
// creating excess elements on the following flush() | ||
flush(); | ||
this._itemsChanged({ | ||
@@ -165,0 +170,0 @@ path: 'items' |
81146
1954