@vaadin/field-base 23.0.10 → 23.0.11

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.0.10",
3
+ "version": "23.0.11",
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.0.10",
35
+ "@vaadin/component-base": "^23.0.11",
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": "^9.2.1"
42
42
  },
43
- "gitHead": "e8402a55ce0e823ae6da5c97486998cfd931b1d3"
43
+ "gitHead": "10838304fe6f5c98b838ec3a90bdcf49cbf4650b"
44
44
  }
@@ -136,6 +136,7 @@ export const InputControlMixin = (superclass) =>
136
136
  super._onKeyDown(event);
137
137
 
138
138
  if (event.key === 'Escape' && this.clearButtonVisible && !!this.value) {
139
+ event.stopPropagation();
139
140
  this.__clear();
140
141
  }
141
142
  }