@vaadin/text-field 22.0.0 → 22.0.4

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/text-field",
3
- "version": "22.0.0",
3
+ "version": "22.0.4",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -32,17 +32,17 @@
32
32
  ],
33
33
  "dependencies": {
34
34
  "@polymer/polymer": "^3.0.0",
35
- "@vaadin/component-base": "^22.0.0",
36
- "@vaadin/field-base": "^22.0.0",
37
- "@vaadin/input-container": "^22.0.0",
38
- "@vaadin/vaadin-lumo-styles": "^22.0.0",
39
- "@vaadin/vaadin-material-styles": "^22.0.0",
40
- "@vaadin/vaadin-themable-mixin": "^22.0.0"
35
+ "@vaadin/component-base": "^22.0.4",
36
+ "@vaadin/field-base": "^22.0.4",
37
+ "@vaadin/input-container": "^22.0.4",
38
+ "@vaadin/vaadin-lumo-styles": "^22.0.4",
39
+ "@vaadin/vaadin-material-styles": "^22.0.4",
40
+ "@vaadin/vaadin-themable-mixin": "^22.0.4"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@esm-bundle/chai": "^4.3.4",
44
44
  "@vaadin/testing-helpers": "^0.3.2",
45
45
  "sinon": "^9.2.1"
46
46
  },
47
- "gitHead": "b668e9b1a975227fbe34beb70d1cd5b03dce2348"
47
+ "gitHead": "55891f68d4da41e846e06dfe51dceba1665e41ce"
48
48
  }
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2017 - 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 { ElementMixin } from '@vaadin/component-base/src/element-mixin.js';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2017 - 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/input-container/src/vaadin-input-container.js';
@@ -112,7 +112,7 @@ export class TextField extends PatternMixin(InputFieldMixin(ThemableMixin(Elemen
112
112
  <slot name="prefix" slot="prefix"></slot>
113
113
  <slot name="input"></slot>
114
114
  <slot name="suffix" slot="suffix"></slot>
115
- <div id="clearButton" part="clear-button" slot="suffix"></div>
115
+ <div id="clearButton" part="clear-button" slot="suffix" aria-hidden="true"></div>
116
116
  </vaadin-input-container>
117
117
 
118
118
  <div part="helper-text">
@@ -174,7 +174,7 @@ export class TextField extends PatternMixin(InputFieldMixin(ThemableMixin(Elemen
174
174
  this.ariaTarget = input;
175
175
  })
176
176
  );
177
- this.addController(new LabelledInputController(this.inputElement, this._labelNode));
177
+ this.addController(new LabelledInputController(this.inputElement, this._labelController));
178
178
  }
179
179
  }
180
180
 
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2017 - 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 { inputFieldShared } from '@vaadin/vaadin-lumo-styles/mixins/input-field-shared.js';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2017 - 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/input-container/theme/lumo/vaadin-input-container.js';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2017 - 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 { inputFieldShared } from '@vaadin/vaadin-material-styles/mixins/input-field-shared.js';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2017 - 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/input-container/theme/material/vaadin-input-container.js';