@vaadin/virtual-list 24.2.0-alpha9 → 24.2.0-beta1
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 +7 -7
- package/src/vaadin-virtual-list.js +3 -1
- 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.2.0-
|
|
3
|
+
"version": "24.2.0-beta1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -38,11 +38,11 @@
|
|
|
38
38
|
],
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@polymer/polymer": "^3.0.0",
|
|
41
|
-
"@vaadin/component-base": "24.2.0-
|
|
42
|
-
"@vaadin/lit-renderer": "24.2.0-
|
|
43
|
-
"@vaadin/vaadin-lumo-styles": "24.2.0-
|
|
44
|
-
"@vaadin/vaadin-material-styles": "24.2.0-
|
|
45
|
-
"@vaadin/vaadin-themable-mixin": "24.2.0-
|
|
41
|
+
"@vaadin/component-base": "24.2.0-beta1",
|
|
42
|
+
"@vaadin/lit-renderer": "24.2.0-beta1",
|
|
43
|
+
"@vaadin/vaadin-lumo-styles": "24.2.0-beta1",
|
|
44
|
+
"@vaadin/vaadin-material-styles": "24.2.0-beta1",
|
|
45
|
+
"@vaadin/vaadin-themable-mixin": "24.2.0-beta1"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@esm-bundle/chai": "^4.3.4",
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"web-types.json",
|
|
55
55
|
"web-types.lit.json"
|
|
56
56
|
],
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "67c8eef57d1c59e7476e29adaf003cf4548878f2"
|
|
58
58
|
}
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
import { html, PolymerElement } from '@polymer/polymer/polymer-element.js';
|
|
7
7
|
import { ControllerMixin } from '@vaadin/component-base/src/controller-mixin.js';
|
|
8
|
+
import { defineCustomElement } from '@vaadin/component-base/src/define.js';
|
|
8
9
|
import { ElementMixin } from '@vaadin/component-base/src/element-mixin.js';
|
|
9
10
|
import { OverflowController } from '@vaadin/component-base/src/overflow-controller.js';
|
|
10
11
|
import { processTemplates } from '@vaadin/component-base/src/templates.js';
|
|
@@ -34,6 +35,7 @@ import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mix
|
|
|
34
35
|
*
|
|
35
36
|
* See [Virtual List](https://vaadin.com/docs/latest/components/virtual-list) documentation.
|
|
36
37
|
*
|
|
38
|
+
* @customElement
|
|
37
39
|
* @extends HTMLElement
|
|
38
40
|
* @mixes ControllerMixin
|
|
39
41
|
* @mixes ElementMixin
|
|
@@ -205,6 +207,6 @@ class VirtualList extends ElementMixin(ControllerMixin(ThemableMixin(PolymerElem
|
|
|
205
207
|
}
|
|
206
208
|
}
|
|
207
209
|
|
|
208
|
-
|
|
210
|
+
defineCustomElement(VirtualList);
|
|
209
211
|
|
|
210
212
|
export { VirtualList };
|
package/web-types.json
CHANGED
package/web-types.lit.json
CHANGED