@vaadin/component-base 24.4.0-alpha15 → 24.4.0-alpha17

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-alpha15",
3
+ "version": "24.4.0-alpha17",
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": "8b548bae8d7fac98517c16e45636d44b9370857c"
45
+ "gitHead": "eb6b4dac66be1c0ddc77757bed5f84a6d355e5cf"
46
46
  }
package/src/define.js CHANGED
@@ -9,7 +9,7 @@ export function defineCustomElement(CustomElement) {
9
9
  if (!defined) {
10
10
  Object.defineProperty(CustomElement, 'version', {
11
11
  get() {
12
- return '24.4.0-alpha15';
12
+ return '24.4.0-alpha17';
13
13
  },
14
14
  });
15
15
 
@@ -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) {