@vaadin/grid 22.0.5 → 22.0.6

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/grid",
3
- "version": "22.0.5",
3
+ "version": "22.0.6",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -40,19 +40,19 @@
40
40
  "dependencies": {
41
41
  "@open-wc/dedupe-mixin": "^1.3.0",
42
42
  "@polymer/polymer": "^3.0.0",
43
- "@vaadin/checkbox": "^22.0.5",
44
- "@vaadin/component-base": "^22.0.5",
45
- "@vaadin/text-field": "^22.0.5",
46
- "@vaadin/vaadin-lumo-styles": "^22.0.5",
47
- "@vaadin/vaadin-material-styles": "^22.0.5",
48
- "@vaadin/vaadin-themable-mixin": "^22.0.5"
43
+ "@vaadin/checkbox": "^22.0.6",
44
+ "@vaadin/component-base": "^22.0.6",
45
+ "@vaadin/text-field": "^22.0.6",
46
+ "@vaadin/vaadin-lumo-styles": "^22.0.6",
47
+ "@vaadin/vaadin-material-styles": "^22.0.6",
48
+ "@vaadin/vaadin-themable-mixin": "^22.0.6"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@esm-bundle/chai": "^4.3.4",
52
- "@vaadin/polymer-legacy-adapter": "^22.0.5",
52
+ "@vaadin/polymer-legacy-adapter": "^22.0.6",
53
53
  "@vaadin/testing-helpers": "^0.3.2",
54
54
  "lit": "^2.0.0",
55
55
  "sinon": "^9.2.0"
56
56
  },
57
- "gitHead": "3e1990867670f3de2dec6fa1200d945623b2710c"
57
+ "gitHead": "18c55872d764e338e0f98e65826cbe895156251a"
58
58
  }
@@ -617,6 +617,9 @@ export const KeyboardNavigationMixin = (superClass) =>
617
617
  _onTabKeyDown(e) {
618
618
  const focusTarget = this._predictFocusStepTarget(e.composedPath()[0], e.shiftKey ? -1 : 1);
619
619
 
620
+ // Prevent focus-trap logic from intercepting the event.
621
+ e.stopPropagation();
622
+
620
623
  if (focusTarget === this.$.table) {
621
624
  // The focus is about to exit the grid to the top.
622
625
  this.$.table.focus();