@vaadin/virtual-list 24.0.0-alpha5 → 24.0.0-alpha7

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": "24.0.0-alpha5",
3
+ "version": "24.0.0-alpha7",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -38,15 +38,15 @@
38
38
  ],
39
39
  "dependencies": {
40
40
  "@polymer/polymer": "^3.0.0",
41
- "@vaadin/component-base": "24.0.0-alpha5",
42
- "@vaadin/lit-renderer": "24.0.0-alpha5",
43
- "@vaadin/vaadin-lumo-styles": "24.0.0-alpha5",
44
- "@vaadin/vaadin-material-styles": "24.0.0-alpha5",
45
- "@vaadin/vaadin-themable-mixin": "24.0.0-alpha5"
41
+ "@vaadin/component-base": "24.0.0-alpha7",
42
+ "@vaadin/lit-renderer": "24.0.0-alpha7",
43
+ "@vaadin/vaadin-lumo-styles": "24.0.0-alpha7",
44
+ "@vaadin/vaadin-material-styles": "24.0.0-alpha7",
45
+ "@vaadin/vaadin-themable-mixin": "24.0.0-alpha7"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@esm-bundle/chai": "^4.3.4",
49
- "@vaadin/polymer-legacy-adapter": "24.0.0-alpha5",
49
+ "@vaadin/polymer-legacy-adapter": "24.0.0-alpha7",
50
50
  "@vaadin/testing-helpers": "^0.3.2",
51
51
  "lit": "^2.0.0",
52
52
  "sinon": "^13.0.2"
@@ -55,5 +55,5 @@
55
55
  "web-types.json",
56
56
  "web-types.lit.json"
57
57
  ],
58
- "gitHead": "fc0b1721eda9e39cb289b239e440fc9e29573a31"
58
+ "gitHead": "aeb4535336813636736759e0a5de148b26bfc3b6"
59
59
  }
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/virtual-list",
4
- "version": "24.0.0-alpha5",
4
+ "version": "24.0.0-alpha7",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -24,6 +24,44 @@
24
24
  ],
25
25
  "js": {
26
26
  "properties": [
27
+ {
28
+ "name": "rootPath",
29
+ "description": "",
30
+ "value": {
31
+ "type": [
32
+ "string"
33
+ ]
34
+ }
35
+ },
36
+ {
37
+ "name": "importPath",
38
+ "description": "",
39
+ "value": {
40
+ "type": [
41
+ "string"
42
+ ]
43
+ }
44
+ },
45
+ {
46
+ "name": "root",
47
+ "description": "",
48
+ "value": {
49
+ "type": [
50
+ "StampedTemplate",
51
+ "HTMLElement",
52
+ "ShadowRoot"
53
+ ]
54
+ }
55
+ },
56
+ {
57
+ "name": "$",
58
+ "description": "",
59
+ "value": {
60
+ "type": [
61
+ "Object.<string, Element>"
62
+ ]
63
+ }
64
+ },
27
65
  {
28
66
  "name": "items",
29
67
  "description": "An array containing items determining how many instances to render.",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/virtual-list",
4
- "version": "24.0.0-alpha5",
4
+ "version": "24.0.0-alpha7",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {
@@ -19,6 +19,34 @@
19
19
  "description": "`<vaadin-virtual-list>` is a Web Component for displaying a virtual/infinite list of items.\n\n```html\n<vaadin-virtual-list></vaadin-virtual-list>\n```\n```js\nconst list = document.querySelector('vaadin-virtual-list');\nlist.items = items; // An array of data items\nlist.renderer = (root, list, {item, index}) => {\n root.textContent = `#${index}: ${item.name}`\n}\n```\n\nThe following state attributes are available for styling:\n\nAttribute | Description\n-----------------|--------------------------------------------\n`overflow` | Set to `top`, `bottom`, both, or none.\n\nSee [Virtual List](https://vaadin.com/docs/latest/components/virtual-list) documentation.",
20
20
  "extension": true,
21
21
  "attributes": [
22
+ {
23
+ "name": ".rootPath",
24
+ "description": "",
25
+ "value": {
26
+ "kind": "expression"
27
+ }
28
+ },
29
+ {
30
+ "name": ".importPath",
31
+ "description": "",
32
+ "value": {
33
+ "kind": "expression"
34
+ }
35
+ },
36
+ {
37
+ "name": ".root",
38
+ "description": "",
39
+ "value": {
40
+ "kind": "expression"
41
+ }
42
+ },
43
+ {
44
+ "name": ".$",
45
+ "description": "",
46
+ "value": {
47
+ "kind": "expression"
48
+ }
49
+ },
22
50
  {
23
51
  "name": ".items",
24
52
  "description": "An array containing items determining how many instances to render.",