@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.
|
|
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.
|
|
44
|
-
"@vaadin/component-base": "^22.0.
|
|
45
|
-
"@vaadin/text-field": "^22.0.
|
|
46
|
-
"@vaadin/vaadin-lumo-styles": "^22.0.
|
|
47
|
-
"@vaadin/vaadin-material-styles": "^22.0.
|
|
48
|
-
"@vaadin/vaadin-themable-mixin": "^22.0.
|
|
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.
|
|
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": "
|
|
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();
|