@vaadin/field-base 23.1.3 → 23.1.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/field-base",
3
- "version": "23.1.3",
3
+ "version": "23.1.4",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -32,7 +32,7 @@
32
32
  "dependencies": {
33
33
  "@open-wc/dedupe-mixin": "^1.3.0",
34
34
  "@polymer/polymer": "^3.0.0",
35
- "@vaadin/component-base": "^23.1.3",
35
+ "@vaadin/component-base": "^23.1.4",
36
36
  "lit": "^2.0.0"
37
37
  },
38
38
  "devDependencies": {
@@ -40,5 +40,5 @@
40
40
  "@vaadin/testing-helpers": "^0.3.2",
41
41
  "sinon": "^13.0.2"
42
42
  },
43
- "gitHead": "3066c296ad0ef652bc49417005523398199f1bf2"
43
+ "gitHead": "0a82302064f1276a000f0cbd810076539407d133"
44
44
  }
@@ -139,7 +139,7 @@ export class FieldAriaController {
139
139
  return;
140
140
  }
141
141
 
142
- if (!this.__isGroupField) {
142
+ if (['input', 'textarea'].includes(this.__target.localName)) {
143
143
  // Native <input> or <textarea>, required is enough
144
144
  return;
145
145
  }