@vaadin/component-base 24.4.0-alpha14 → 24.4.0-alpha16
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.4.0-
|
|
3
|
+
"version": "24.4.0-alpha16",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"@vaadin/testing-helpers": "^0.6.0",
|
|
43
43
|
"sinon": "^13.0.2"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "2d797855c2b3a3828ee7b0d90aeb227b56c32e76"
|
|
46
46
|
}
|
package/src/define.js
CHANGED
|
@@ -143,7 +143,6 @@ export class IronListAdapter {
|
|
|
143
143
|
}
|
|
144
144
|
|
|
145
145
|
flush() {
|
|
146
|
-
const startPhysicalCount = this._physicalCount;
|
|
147
146
|
// The scroll target is hidden.
|
|
148
147
|
if (this.scrollTarget.offsetHeight === 0) {
|
|
149
148
|
return;
|
|
@@ -161,11 +160,6 @@ export class IronListAdapter {
|
|
|
161
160
|
if (this.__debouncerWheelAnimationFrame) {
|
|
162
161
|
this.__debouncerWheelAnimationFrame.flush();
|
|
163
162
|
}
|
|
164
|
-
|
|
165
|
-
if (this._physicalCount !== startPhysicalCount) {
|
|
166
|
-
// Flushing again until physical count stabilizes fixes https://github.com/vaadin/flow-components/issues/5595#issuecomment-1770278913
|
|
167
|
-
this.flush();
|
|
168
|
-
}
|
|
169
163
|
}
|
|
170
164
|
|
|
171
165
|
update(startIndex = 0, endIndex = this.size - 1) {
|