@vaadin/component-base 23.0.8 → 23.0.9

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": "23.0.8",
3
+ "version": "23.0.9",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -42,5 +42,5 @@
42
42
  "@vaadin/testing-helpers": "^0.3.2",
43
43
  "sinon": "^9.2.4"
44
44
  },
45
- "gitHead": "43fe9d95c8cd745adc7bef214c0097c47f4f83ed"
45
+ "gitHead": "4d687bdd48ba78d55f3371a78b70818e4dfca1a3"
46
46
  }
@@ -39,7 +39,7 @@ const registered = new Set();
39
39
  export const ElementMixin = (superClass) =>
40
40
  class VaadinElementMixin extends DirMixin(superClass) {
41
41
  static get version() {
42
- return '23.0.8';
42
+ return '23.0.9';
43
43
  }
44
44
 
45
45
  /** @protected */
@@ -302,7 +302,9 @@ export class IronListAdapter {
302
302
  // After running super._scrollHandler, fix _virtualStart to workaround an iron-list issue.
303
303
  // See https://github.com/vaadin/web-components/issues/1691
304
304
  const reusables = this._getReusables(true);
305
+ this._physicalTop = reusables.physicalTop;
305
306
  this._virtualStart += reusables.indexes.length;
307
+ this._physicalStart += reusables.indexes.length;
306
308
  }
307
309
 
308
310
  if (this.reorderElements) {