@vaadin/vaadin-text-field 21.0.1 → 21.0.5
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/vaadin-text-field",
|
|
3
|
-
"version": "21.0.
|
|
3
|
+
"version": "21.0.5",
|
|
4
4
|
"description": "vaadin-text-field",
|
|
5
5
|
"main": "vaadin-text-field.js",
|
|
6
6
|
"module": "vaadin-text-field.js",
|
|
@@ -26,11 +26,11 @@
|
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@polymer/polymer": "^3.0.0",
|
|
29
|
-
"@vaadin/vaadin-control-state-mixin": "^21.0.
|
|
30
|
-
"@vaadin/vaadin-element-mixin": "^21.0.
|
|
31
|
-
"@vaadin/vaadin-lumo-styles": "^21.0.
|
|
32
|
-
"@vaadin/vaadin-material-styles": "^21.0.
|
|
33
|
-
"@vaadin/vaadin-themable-mixin": "^21.0.
|
|
29
|
+
"@vaadin/vaadin-control-state-mixin": "^21.0.5",
|
|
30
|
+
"@vaadin/vaadin-element-mixin": "^21.0.5",
|
|
31
|
+
"@vaadin/vaadin-lumo-styles": "^21.0.5",
|
|
32
|
+
"@vaadin/vaadin-material-styles": "^21.0.5",
|
|
33
|
+
"@vaadin/vaadin-themable-mixin": "^21.0.5"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@esm-bundle/chai": "^4.1.5",
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"publishConfig": {
|
|
41
41
|
"access": "public"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "c79135f420e560fa566afc1377db9585757bc4c3"
|
|
44
44
|
}
|
|
@@ -22,6 +22,10 @@ const $_documentContainer = html` <style>
|
|
|
22
22
|
[part='reveal-button'][hidden] {
|
|
23
23
|
display: none !important;
|
|
24
24
|
}
|
|
25
|
+
|
|
26
|
+
input::-ms-reveal {
|
|
27
|
+
display: none;
|
|
28
|
+
}
|
|
25
29
|
</style>
|
|
26
30
|
|
|
27
31
|
<div
|
|
@@ -76,7 +80,7 @@ class PasswordFieldElement extends TextFieldElement {
|
|
|
76
80
|
}
|
|
77
81
|
|
|
78
82
|
static get version() {
|
|
79
|
-
return '21.0.
|
|
83
|
+
return '21.0.5';
|
|
80
84
|
}
|
|
81
85
|
|
|
82
86
|
static get properties() {
|
package/src/vaadin-text-area.js
CHANGED
|
@@ -107,6 +107,11 @@ class TextAreaElement extends ElementMixin(TextFieldMixin(ControlStateMixin(Them
|
|
|
107
107
|
:host {
|
|
108
108
|
animation: 1ms vaadin-text-area-appear;
|
|
109
109
|
}
|
|
110
|
+
|
|
111
|
+
/* Workaround https://bugzilla.mozilla.org/show_bug.cgi?id=1739079 */
|
|
112
|
+
:host([disabled]) [part='value'] {
|
|
113
|
+
user-select: none;
|
|
114
|
+
}
|
|
110
115
|
</style>
|
|
111
116
|
|
|
112
117
|
<div class="vaadin-text-area-container">
|
|
@@ -143,7 +148,7 @@ class TextAreaElement extends ElementMixin(TextFieldMixin(ControlStateMixin(Them
|
|
|
143
148
|
}
|
|
144
149
|
|
|
145
150
|
static get version() {
|
|
146
|
-
return '21.0.
|
|
151
|
+
return '21.0.5';
|
|
147
152
|
}
|
|
148
153
|
|
|
149
154
|
/** @protected */
|