@vaadin/password-field 23.0.0-alpha2 → 23.0.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/password-field",
3
- "version": "23.0.0-alpha2",
3
+ "version": "23.0.0-beta1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -18,6 +18,7 @@
18
18
  },
19
19
  "main": "vaadin-password-field.js",
20
20
  "module": "vaadin-password-field.js",
21
+ "type": "module",
21
22
  "files": [
22
23
  "src",
23
24
  "theme",
@@ -32,15 +33,15 @@
32
33
  ],
33
34
  "dependencies": {
34
35
  "@polymer/polymer": "^3.0.0",
35
- "@vaadin/button": "23.0.0-alpha2",
36
- "@vaadin/text-field": "23.0.0-alpha2",
37
- "@vaadin/vaadin-lumo-styles": "23.0.0-alpha2",
38
- "@vaadin/vaadin-material-styles": "23.0.0-alpha2"
36
+ "@vaadin/button": "23.0.0-beta1",
37
+ "@vaadin/text-field": "23.0.0-beta1",
38
+ "@vaadin/vaadin-lumo-styles": "23.0.0-beta1",
39
+ "@vaadin/vaadin-material-styles": "23.0.0-beta1"
39
40
  },
40
41
  "devDependencies": {
41
42
  "@esm-bundle/chai": "^4.3.4",
42
43
  "@vaadin/testing-helpers": "^0.3.2",
43
44
  "sinon": "^9.2.1"
44
45
  },
45
- "gitHead": "070f586dead02ca41b66717820c647f48bf1665f"
46
+ "gitHead": "467244b76021176c109df675799b07029b293e58"
46
47
  }
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2022 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import { html } from '@polymer/polymer/polymer-element.js';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2022 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import { SlotStylesMixin } from '@vaadin/field-base/src/slot-styles-mixin.js';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2022 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import './vaadin-password-field-button.js';
@@ -170,7 +170,6 @@ export class PasswordField extends SlotStylesMixin(TextField) {
170
170
 
171
171
  if (this._revealNode) {
172
172
  this.__updateAriaLabel(this.i18n);
173
- this._revealNode.setAttribute('aria-label', 'Show password');
174
173
  this._revealNode.addEventListener('click', this.__boundRevealButtonClick);
175
174
  this._revealNode.addEventListener('touchend', this.__boundRevealButtonTouchend);
176
175
  }
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2022 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import { button } from '@vaadin/button/theme/lumo/vaadin-button-styles.js';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2022 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import '@vaadin/vaadin-lumo-styles/font-icons.js';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2022 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import '@vaadin/text-field/theme/lumo/vaadin-text-field.js';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2022 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import { button } from '@vaadin/button/theme/material/vaadin-button-styles.js';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2022 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import '@vaadin/vaadin-material-styles/color.js';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2022 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import '@vaadin/text-field/theme/material/vaadin-text-field.js';