@vaadin/scroller 22.0.0-alpha9 → 22.0.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 component container for creating scrollable areas in the UI.
4
4
 
5
- [Live Demo ↗](https://vaadin.com/docs/latest/ds/components/scroller)
5
+ [Documentation + Live Demo ↗](https://vaadin.com/docs/latest/ds/components/scroller)
6
6
 
7
7
  ```html
8
8
  <vaadin-scroller scroll-direction="vertical">
@@ -25,7 +25,7 @@ A component container for creating scrollable areas in the UI.
25
25
  Install the component:
26
26
 
27
27
  ```sh
28
- npm i @vaadin/scroller --save
28
+ npm i @vaadin/scroller
29
29
  ```
30
30
 
31
31
  Once installed, import the component in your application:
@@ -36,9 +36,8 @@ import '@vaadin/scroller';
36
36
 
37
37
  ## Themes
38
38
 
39
- Vaadin components come with two built-in [themes](https://vaadin.com/docs/latest/ds/customization/using-themes),
40
- Lumo and Material. The [main entrypoint](https://github.com/vaadin/web-components/blob/master/packages/scroller/vaadin-scroller.js)
41
- of the package uses the Lumo theme.
39
+ Vaadin components come with two built-in [themes](https://vaadin.com/docs/latest/ds/customization/using-themes), Lumo and Material.
40
+ The [main entrypoint](https://github.com/vaadin/web-components/blob/master/packages/scroller/vaadin-scroller.js) of the package uses the Lumo theme.
42
41
 
43
42
  To use the Material theme, import the component from the `theme/material` folder:
44
43
 
@@ -58,9 +57,13 @@ Finally, you can import the un-themed component from the `src` folder to get a m
58
57
  import '@vaadin/scroller/src/vaadin-scroller.js';
59
58
  ```
60
59
 
60
+ ## Contributing
61
+
62
+ 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.
63
+
61
64
  ## License
62
65
 
63
66
  Apache License 2.0
64
67
 
65
- Vaadin collects development time usage statistics to improve this product.
68
+ Vaadin collects usage statistics at development time to improve this product.
66
69
  For details and to opt-out, see https://github.com/vaadin/vaadin-usage-statistics.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/scroller",
3
- "version": "22.0.0-alpha9",
3
+ "version": "22.0.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -33,14 +33,14 @@
33
33
  ],
34
34
  "dependencies": {
35
35
  "@polymer/polymer": "^3.0.0",
36
- "@vaadin/component-base": "22.0.0-alpha9",
37
- "@vaadin/vaadin-lumo-styles": "22.0.0-alpha9",
38
- "@vaadin/vaadin-material-styles": "22.0.0-alpha9",
39
- "@vaadin/vaadin-themable-mixin": "22.0.0-alpha9"
36
+ "@vaadin/component-base": "^22.0.0",
37
+ "@vaadin/vaadin-lumo-styles": "^22.0.0",
38
+ "@vaadin/vaadin-material-styles": "^22.0.0",
39
+ "@vaadin/vaadin-themable-mixin": "^22.0.0"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@esm-bundle/chai": "^4.3.4",
43
- "@vaadin/testing-helpers": "^0.3.0"
43
+ "@vaadin/testing-helpers": "^0.3.2"
44
44
  },
45
- "gitHead": "6e8c899dc65918f97e3c0acb2076122c4b2ef274"
45
+ "gitHead": "b668e9b1a975227fbe34beb70d1cd5b03dce2348"
46
46
  }
@@ -3,7 +3,7 @@
3
3
  * Copyright (c) 2021 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
- import { PolymerElement, html } from '@polymer/polymer/polymer-element.js';
6
+ import { html, PolymerElement } from '@polymer/polymer/polymer-element.js';
7
7
  import { ElementMixin } from '@vaadin/component-base/src/element-mixin.js';
8
8
  import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
9
9