@vaadin/virtual-list 24.3.0-beta2 → 24.3.0-rc2
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 +10 -8
- package/src/vaadin-virtual-list-mixin.js +2 -2
- package/web-types.json +1 -1
- package/web-types.lit.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/virtual-list",
|
|
3
|
-
"version": "24.3.0-
|
|
3
|
+
"version": "24.3.0-rc2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -27,7 +27,9 @@
|
|
|
27
27
|
"vaadin-*.d.ts",
|
|
28
28
|
"vaadin-*.js",
|
|
29
29
|
"web-types.json",
|
|
30
|
-
"web-types.lit.json"
|
|
30
|
+
"web-types.lit.json",
|
|
31
|
+
"!vaadin-lit-*.d.ts",
|
|
32
|
+
"!vaadin-lit-*.js"
|
|
31
33
|
],
|
|
32
34
|
"keywords": [
|
|
33
35
|
"Vaadin",
|
|
@@ -39,11 +41,11 @@
|
|
|
39
41
|
"dependencies": {
|
|
40
42
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
41
43
|
"@polymer/polymer": "^3.0.0",
|
|
42
|
-
"@vaadin/component-base": "24.3.0-
|
|
43
|
-
"@vaadin/lit-renderer": "24.3.0-
|
|
44
|
-
"@vaadin/vaadin-lumo-styles": "24.3.0-
|
|
45
|
-
"@vaadin/vaadin-material-styles": "24.3.0-
|
|
46
|
-
"@vaadin/vaadin-themable-mixin": "24.3.0-
|
|
44
|
+
"@vaadin/component-base": "24.3.0-rc2",
|
|
45
|
+
"@vaadin/lit-renderer": "24.3.0-rc2",
|
|
46
|
+
"@vaadin/vaadin-lumo-styles": "24.3.0-rc2",
|
|
47
|
+
"@vaadin/vaadin-material-styles": "24.3.0-rc2",
|
|
48
|
+
"@vaadin/vaadin-themable-mixin": "24.3.0-rc2"
|
|
47
49
|
},
|
|
48
50
|
"devDependencies": {
|
|
49
51
|
"@esm-bundle/chai": "^4.3.4",
|
|
@@ -55,5 +57,5 @@
|
|
|
55
57
|
"web-types.json",
|
|
56
58
|
"web-types.lit.json"
|
|
57
59
|
],
|
|
58
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "4a393bc5d4706745d3ccca73632e6b1e207cc830"
|
|
59
61
|
}
|
|
@@ -20,7 +20,7 @@ export const VirtualListMixin = (superClass) =>
|
|
|
20
20
|
* An array containing items determining how many instances to render.
|
|
21
21
|
* @type {Array<!VirtualListItem> | undefined}
|
|
22
22
|
*/
|
|
23
|
-
items: { type: Array },
|
|
23
|
+
items: { type: Array, sync: true },
|
|
24
24
|
|
|
25
25
|
/**
|
|
26
26
|
* Custom function for rendering the content of every item.
|
|
@@ -34,7 +34,7 @@ export const VirtualListMixin = (superClass) =>
|
|
|
34
34
|
* - `model.item` The item.
|
|
35
35
|
* @type {VirtualListRenderer | undefined}
|
|
36
36
|
*/
|
|
37
|
-
renderer: Function,
|
|
37
|
+
renderer: { type: Function, sync: true },
|
|
38
38
|
|
|
39
39
|
/** @private */
|
|
40
40
|
__virtualizer: Object,
|
package/web-types.json
CHANGED