@vaadin/vaadin-text-field 21.0.3 → 21.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/vaadin-text-field",
3
- "version": "21.0.3",
3
+ "version": "21.0.4",
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.3",
30
- "@vaadin/vaadin-element-mixin": "^21.0.3",
31
- "@vaadin/vaadin-lumo-styles": "^21.0.3",
32
- "@vaadin/vaadin-material-styles": "^21.0.3",
33
- "@vaadin/vaadin-themable-mixin": "^21.0.3"
29
+ "@vaadin/vaadin-control-state-mixin": "^21.0.4",
30
+ "@vaadin/vaadin-element-mixin": "^21.0.4",
31
+ "@vaadin/vaadin-lumo-styles": "^21.0.4",
32
+ "@vaadin/vaadin-material-styles": "^21.0.4",
33
+ "@vaadin/vaadin-themable-mixin": "^21.0.4"
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": "f2b0583ef776e6c52a74da7540b06bfd2d9adf1b"
43
+ "gitHead": "5bcf4893e594a60701c723f5c9157ad6ac694baf"
44
44
  }
@@ -53,7 +53,7 @@ class EmailFieldElement extends TextFieldElement {
53
53
  }
54
54
 
55
55
  static get version() {
56
- return '21.0.3';
56
+ return '21.0.4';
57
57
  }
58
58
 
59
59
  /** @protected */
@@ -26,7 +26,7 @@ class IntegerFieldElement extends NumberFieldElement {
26
26
  }
27
27
 
28
28
  static get version() {
29
- return '21.0.3';
29
+ return '21.0.4';
30
30
  }
31
31
 
32
32
  static get properties() {
@@ -105,7 +105,7 @@ class NumberFieldElement extends TextFieldElement {
105
105
  }
106
106
 
107
107
  static get version() {
108
- return '21.0.3';
108
+ return '21.0.4';
109
109
  }
110
110
 
111
111
  static get properties() {
@@ -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.3';
83
+ return '21.0.4';
80
84
  }
81
85
 
82
86
  static get properties() {
@@ -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.3';
151
+ return '21.0.4';
147
152
  }
148
153
 
149
154
  /** @protected */
@@ -115,7 +115,7 @@ class TextFieldElement extends ElementMixin(TextFieldMixin(ControlStateMixin(The
115
115
  }
116
116
 
117
117
  static get version() {
118
- return '21.0.3';
118
+ return '21.0.4';
119
119
  }
120
120
 
121
121
  static get properties() {