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