@vaadin/virtual-list 23.2.0-rc1 → 23.2.0

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/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  A web component for rendering a long list of items without sacrificing performance.
4
4
 
5
- [Documentation + Live Demo ↗](https://vaadin.com/docs/latest/ds/components/virtual-list)
5
+ [Documentation + Live Demo ↗](https://vaadin.com/docs/latest/components/virtual-list)
6
6
 
7
7
  [![npm version](https://badgen.net/npm/v/@vaadin/virtual-list)](https://www.npmjs.com/package/@vaadin/virtual-list)
8
8
  [![Discord](https://img.shields.io/discord/732335336448852018?label=discord)](https://discord.gg/PHmkCKC)
@@ -35,7 +35,7 @@ import '@vaadin/virtual-list';
35
35
 
36
36
  ## Themes
37
37
 
38
- Vaadin components come with two built-in [themes](https://vaadin.com/docs/latest/ds/customization/using-themes), Lumo and Material.
38
+ Vaadin components come with two built-in [themes](https://vaadin.com/docs/latest/styling), Lumo and Material.
39
39
  The [main entrypoint](https://github.com/vaadin/web-components/blob/master/packages/virtual-list/vaadin-virtual-list.js) of the package uses the Lumo theme.
40
40
 
41
41
  To use the Material theme, import the component from the `theme/material` folder:
@@ -58,7 +58,7 @@ import '@vaadin/virtual-list/src/vaadin-virtual-list.js';
58
58
 
59
59
  ## Contributing
60
60
 
61
- Read the [contributing guide](https://vaadin.com/docs/latest/guide/contributing/overview) to learn about our development process, how to propose bugfixes and improvements, and how to test your changes to Vaadin components.
61
+ Read the [contributing guide](https://vaadin.com/docs/latest/contributing/overview) to learn about our development process, how to propose bugfixes and improvements, and how to test your changes to Vaadin components.
62
62
 
63
63
  ## License
64
64
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/virtual-list",
3
- "version": "23.2.0-rc1",
3
+ "version": "23.2.0",
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": "23.2.0-rc1",
42
- "@vaadin/lit-renderer": "23.2.0-rc1",
43
- "@vaadin/vaadin-lumo-styles": "23.2.0-rc1",
44
- "@vaadin/vaadin-material-styles": "23.2.0-rc1",
45
- "@vaadin/vaadin-themable-mixin": "23.2.0-rc1"
41
+ "@vaadin/component-base": "^23.2.0",
42
+ "@vaadin/lit-renderer": "^23.2.0",
43
+ "@vaadin/vaadin-lumo-styles": "^23.2.0",
44
+ "@vaadin/vaadin-material-styles": "^23.2.0",
45
+ "@vaadin/vaadin-themable-mixin": "^23.2.0"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@esm-bundle/chai": "^4.3.4",
49
- "@vaadin/polymer-legacy-adapter": "23.2.0-rc1",
49
+ "@vaadin/polymer-legacy-adapter": "^23.2.0",
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": "e78a1f2fe6f42d78cefa3f48085b09a3033c9588"
58
+ "gitHead": "8b1f5941f26ac41ca038e75e24c8584e331bc7a8"
59
59
  }
@@ -41,7 +41,7 @@ export type VirtualListRenderer<TItem> = (
41
41
  * -----------------|--------------------------------------------
42
42
  * `overflow` | Set to `top`, `bottom`, both, or none.
43
43
  *
44
- * See [Virtual List](https://vaadin.com/docs/latest/ds/components/virtual-list) documentation.
44
+ * See [Virtual List](https://vaadin.com/docs/latest/components/virtual-list) documentation.
45
45
  *
46
46
  * @extends HTMLElement
47
47
  * @mixes ElementMixin
@@ -32,7 +32,7 @@ import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mix
32
32
  * -----------------|--------------------------------------------
33
33
  * `overflow` | Set to `top`, `bottom`, both, or none.
34
34
  *
35
- * See [Virtual List](https://vaadin.com/docs/latest/ds/components/virtual-list) documentation.
35
+ * See [Virtual List](https://vaadin.com/docs/latest/components/virtual-list) documentation.
36
36
  *
37
37
  * @extends HTMLElement
38
38
  * @mixes ControllerMixin
package/web-types.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/virtual-list",
4
- "version": "23.2.0-rc1",
4
+ "version": "23.2.0",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
8
8
  "elements": [
9
9
  {
10
10
  "name": "vaadin-virtual-list",
11
- "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/ds/components/virtual-list) documentation.",
11
+ "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.",
12
12
  "attributes": [
13
13
  {
14
14
  "name": "theme",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/virtual-list",
4
- "version": "23.2.0-rc1",
4
+ "version": "23.2.0",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {
@@ -16,7 +16,7 @@
16
16
  "elements": [
17
17
  {
18
18
  "name": "vaadin-virtual-list",
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/ds/components/virtual-list) documentation.",
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
22
  {