@vaadin/component-base 24.1.13 → 24.1.15
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/component-base",
|
|
3
|
-
"version": "24.1.
|
|
3
|
+
"version": "24.1.15",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"@vaadin/testing-helpers": "^0.4.2",
|
|
43
43
|
"sinon": "^13.0.2"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "9cf98ac30128388bee2710410afe01a6b725b0aa"
|
|
46
46
|
}
|
package/src/element-mixin.js
CHANGED
|
@@ -278,7 +278,9 @@ export class IronListAdapter {
|
|
|
278
278
|
this.__preventElementUpdates = false;
|
|
279
279
|
} else {
|
|
280
280
|
// Already initialized, just update _virtualCount
|
|
281
|
+
this._updateScrollerSize();
|
|
281
282
|
this._virtualCount = this.items.length;
|
|
283
|
+
this._render();
|
|
282
284
|
}
|
|
283
285
|
|
|
284
286
|
// When reducing size while invisible, iron-list does not update items, so
|