@vaadin/text-field 23.0.0-alpha3 → 23.0.0-beta2
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 +9 -8
- package/src/vaadin-text-field.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/text-field",
|
|
3
|
-
"version": "23.0.0-
|
|
3
|
+
"version": "23.0.0-beta2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
},
|
|
19
19
|
"main": "vaadin-text-field.js",
|
|
20
20
|
"module": "vaadin-text-field.js",
|
|
21
|
+
"type": "module",
|
|
21
22
|
"files": [
|
|
22
23
|
"src",
|
|
23
24
|
"theme",
|
|
@@ -32,17 +33,17 @@
|
|
|
32
33
|
],
|
|
33
34
|
"dependencies": {
|
|
34
35
|
"@polymer/polymer": "^3.0.0",
|
|
35
|
-
"@vaadin/component-base": "23.0.0-
|
|
36
|
-
"@vaadin/field-base": "23.0.0-
|
|
37
|
-
"@vaadin/input-container": "23.0.0-
|
|
38
|
-
"@vaadin/vaadin-lumo-styles": "23.0.0-
|
|
39
|
-
"@vaadin/vaadin-material-styles": "23.0.0-
|
|
40
|
-
"@vaadin/vaadin-themable-mixin": "23.0.0-
|
|
36
|
+
"@vaadin/component-base": "23.0.0-beta2",
|
|
37
|
+
"@vaadin/field-base": "23.0.0-beta2",
|
|
38
|
+
"@vaadin/input-container": "23.0.0-beta2",
|
|
39
|
+
"@vaadin/vaadin-lumo-styles": "23.0.0-beta2",
|
|
40
|
+
"@vaadin/vaadin-material-styles": "23.0.0-beta2",
|
|
41
|
+
"@vaadin/vaadin-themable-mixin": "23.0.0-beta2"
|
|
41
42
|
},
|
|
42
43
|
"devDependencies": {
|
|
43
44
|
"@esm-bundle/chai": "^4.3.4",
|
|
44
45
|
"@vaadin/testing-helpers": "^0.3.2",
|
|
45
46
|
"sinon": "^9.2.1"
|
|
46
47
|
},
|
|
47
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "a276f7a0fd00e5459b87267468e0dd0d4fb6f7f3"
|
|
48
49
|
}
|
package/src/vaadin-text-field.js
CHANGED
|
@@ -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">
|