@vaadin/virtual-list 23.0.9 → 23.0.10

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/virtual-list",
3
- "version": "23.0.9",
3
+ "version": "23.0.10",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -34,17 +34,17 @@
34
34
  ],
35
35
  "dependencies": {
36
36
  "@polymer/polymer": "^3.0.0",
37
- "@vaadin/component-base": "^23.0.9",
38
- "@vaadin/vaadin-lumo-styles": "^23.0.9",
39
- "@vaadin/vaadin-material-styles": "^23.0.9",
40
- "@vaadin/vaadin-themable-mixin": "^23.0.9"
37
+ "@vaadin/component-base": "^23.0.10",
38
+ "@vaadin/vaadin-lumo-styles": "^23.0.10",
39
+ "@vaadin/vaadin-material-styles": "^23.0.10",
40
+ "@vaadin/vaadin-themable-mixin": "^23.0.10"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@esm-bundle/chai": "^4.3.4",
44
- "@vaadin/polymer-legacy-adapter": "^23.0.9",
44
+ "@vaadin/polymer-legacy-adapter": "^23.0.10",
45
45
  "@vaadin/testing-helpers": "^0.3.2",
46
46
  "lit": "^2.0.0",
47
47
  "sinon": "^9.2.4"
48
48
  },
49
- "gitHead": "4d687bdd48ba78d55f3371a78b70818e4dfca1a3"
49
+ "gitHead": "e8402a55ce0e823ae6da5c97486998cfd931b1d3"
50
50
  }
@@ -16,7 +16,7 @@ export interface VirtualListItemModel<TItem> {
16
16
  export type VirtualListRenderer<TItem> = (
17
17
  root: HTMLElement,
18
18
  virtualList: VirtualList<TItem>,
19
- model: VirtualListItemModel<TItem>
19
+ model: VirtualListItemModel<TItem>,
20
20
  ) => void;
21
21
 
22
22
  /**
@@ -84,7 +84,7 @@ class VirtualList extends ElementMixin(ThemableMixin(PolymerElement)) {
84
84
  renderer: Function,
85
85
 
86
86
  /** @private */
87
- __virtualizer: Object
87
+ __virtualizer: Object,
88
88
  };
89
89
  }
90
90
 
@@ -101,7 +101,7 @@ class VirtualList extends ElementMixin(ThemableMixin(PolymerElement)) {
101
101
  updateElement: this.__updateElement.bind(this),
102
102
  elementsContainer: this,
103
103
  scrollTarget: this,
104
- scrollContainer: this.shadowRoot.querySelector('#items')
104
+ scrollContainer: this.shadowRoot.querySelector('#items'),
105
105
  });
106
106
 
107
107
  processTemplates(this);