@vaadin/vaadin-login 21.0.0-beta2 → 21.0.2

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
@@ -9,10 +9,7 @@
9
9
  <vaadin-login-overlay> is a Web Component providing a painless login experience, part of the [Vaadin components](https://vaadin.com/components). Component shows the <vaadin-login-form> inside of an overlay.
10
10
 
11
11
  [![npm version](https://badgen.net/npm/v/@vaadin/vaadin-login)](https://www.npmjs.com/package/@vaadin/vaadin-login)
12
- [![Build Status](https://travis-ci.org/vaadin/vaadin-login.svg?branch=master)](https://travis-ci.org/vaadin/vaadin-login)
13
- [![Published on webcomponents.org](https://img.shields.io/badge/webcomponents.org-published-blue.svg)](https://www.webcomponents.org/element/vaadin/vaadin-login)
14
12
  [![Published on Vaadin Directory](https://img.shields.io/badge/Vaadin%20Directory-published-00b4f0.svg)](https://vaadin.com/directory/component/vaadinvaadin-login)
15
- [![Stars on vaadin.com/directory](https://img.shields.io/vaadin-directory/star/vaadin-login-directory-urlidentifier.svg)](https://vaadin.com/directory/component/vaadinvaadin-login)
16
13
  [![Discord](https://img.shields.io/discord/732335336448852018?label=discord)](https://discord.gg/PHmkCKC)
17
14
 
18
15
  ```html
@@ -64,48 +61,9 @@ To use the Material theme, import the correspondent file from the `theme/materia
64
61
  `vaadin-login-overlay.js`
65
62
  `vaadin-login-form.js`
66
63
 
67
-
68
- ## Running API docs and tests in a browser
69
-
70
- 1. Fork the `vaadin-login` repository and clone it locally.
71
-
72
- 1. Make sure you have [node.js](https://nodejs.org/) 12.x installed.
73
-
74
- 1. Make sure you have [npm](https://www.npmjs.com/) installed.
75
-
76
- 1. When in the `vaadin-login` directory, run `npm install` to install dependencies.
77
-
78
- 1. Run `npm start`, browser will automatically open the component API documentation.
79
-
80
- 1. You can also open visual tests, for example:
81
-
82
- - http://127.0.0.1:3000/test/visual/default.html
83
-
84
-
85
- ## Running tests from the command line
86
-
87
- 1. When in the `vaadin-login` directory, run `npm test`
88
-
89
- ## Debugging tests in the browser
90
-
91
- 1. Run `npm run debug`, then choose manual mode (M) and open the link in browser.
92
-
93
-
94
-
95
- ## Following the coding style
96
-
97
- We are using [ESLint](http://eslint.org/) for linting JavaScript code. You can check if your code is following our standards by running `npm run lint`, which will automatically lint all `.js` files.
98
-
99
-
100
- ## Big Thanks
101
-
102
- Cross-browser Testing Platform and Open Source <3 Provided by [Sauce Labs](https://saucelabs.com).
103
-
104
-
105
64
  ## Contributing
106
65
 
107
- To contribute to the component, please read [the guideline](https://github.com/vaadin/vaadin-core/blob/master/CONTRIBUTING.md) first.
108
-
66
+ 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.
109
67
 
110
68
  ## License
111
69
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/vaadin-login",
3
- "version": "21.0.0-beta2",
3
+ "version": "21.0.2",
4
4
  "description": "vaadin-login",
5
5
  "main": "vaadin-login-overlay.js",
6
6
  "module": "vaadin-login-overlay.js",
@@ -26,13 +26,13 @@
26
26
  ],
27
27
  "dependencies": {
28
28
  "@polymer/polymer": "^3.0.0",
29
- "@vaadin/vaadin-button": "^21.0.0-beta2",
30
- "@vaadin/vaadin-element-mixin": "^21.0.0-beta2",
31
- "@vaadin/vaadin-lumo-styles": "^21.0.0-beta2",
32
- "@vaadin/vaadin-material-styles": "^21.0.0-beta2",
33
- "@vaadin/vaadin-overlay": "^21.0.0-beta2",
34
- "@vaadin/vaadin-text-field": "^21.0.0-beta2",
35
- "@vaadin/vaadin-themable-mixin": "^21.0.0-beta2"
29
+ "@vaadin/vaadin-button": "^21.0.2",
30
+ "@vaadin/vaadin-element-mixin": "^21.0.2",
31
+ "@vaadin/vaadin-lumo-styles": "^21.0.2",
32
+ "@vaadin/vaadin-material-styles": "^21.0.2",
33
+ "@vaadin/vaadin-overlay": "^21.0.2",
34
+ "@vaadin/vaadin-text-field": "^21.0.2",
35
+ "@vaadin/vaadin-themable-mixin": "^21.0.2"
36
36
  },
37
37
  "devDependencies": {
38
38
  "@esm-bundle/chai": "^4.1.5",
@@ -42,5 +42,5 @@
42
42
  "publishConfig": {
43
43
  "access": "public"
44
44
  },
45
- "gitHead": "85ac717fc9f16941a1593a44d1aec90735a5db54"
45
+ "gitHead": "6d0571bce4ecc084a9c40b9d72d7c7cecaeae196"
46
46
  }
@@ -108,7 +108,7 @@ class LoginFormElement extends LoginMixin(ElementMixin(ThemableMixin(PolymerElem
108
108
  }
109
109
 
110
110
  static get version() {
111
- return '21.0.0-beta2';
111
+ return '21.0.2';
112
112
  }
113
113
 
114
114
  /** @protected */