@vaadin/grid 23.1.14 → 23.1.16

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.1.14",
3
+ "version": "23.1.16",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -44,20 +44,20 @@
44
44
  "dependencies": {
45
45
  "@open-wc/dedupe-mixin": "^1.3.0",
46
46
  "@polymer/polymer": "^3.0.0",
47
- "@vaadin/checkbox": "~23.1.14",
48
- "@vaadin/component-base": "~23.1.14",
49
- "@vaadin/lit-renderer": "~23.1.14",
50
- "@vaadin/text-field": "~23.1.14",
51
- "@vaadin/vaadin-lumo-styles": "~23.1.14",
52
- "@vaadin/vaadin-material-styles": "~23.1.14",
53
- "@vaadin/vaadin-themable-mixin": "~23.1.14"
47
+ "@vaadin/checkbox": "~23.1.16",
48
+ "@vaadin/component-base": "~23.1.16",
49
+ "@vaadin/lit-renderer": "~23.1.16",
50
+ "@vaadin/text-field": "~23.1.16",
51
+ "@vaadin/vaadin-lumo-styles": "~23.1.16",
52
+ "@vaadin/vaadin-material-styles": "~23.1.16",
53
+ "@vaadin/vaadin-themable-mixin": "~23.1.16"
54
54
  },
55
55
  "devDependencies": {
56
56
  "@esm-bundle/chai": "^4.3.4",
57
- "@vaadin/polymer-legacy-adapter": "~23.1.14",
57
+ "@vaadin/polymer-legacy-adapter": "~23.1.16",
58
58
  "@vaadin/testing-helpers": "^0.3.2",
59
59
  "lit": "^2.0.0",
60
60
  "sinon": "^13.0.2"
61
61
  },
62
- "gitHead": "3065d26b1e7417c4efed0eb72c54e429031dc86c"
62
+ "gitHead": "812fc86f6c7581dfac7839f9ca7e535b87205732"
63
63
  }
@@ -724,6 +724,11 @@ export const KeyboardNavigationMixin = (superClass) =>
724
724
  /** @private */
725
725
  _onContentFocusIn(e) {
726
726
  const { section, cell, row } = this._getGridEventLocation(e);
727
+
728
+ if (!cell && !this.__rowFocusMode) {
729
+ return;
730
+ }
731
+
727
732
  this._detectInteracting(e);
728
733
 
729
734
  if (section && (cell || row)) {
@@ -116,7 +116,6 @@ registerStyles(
116
116
  width: 100%;
117
117
  box-sizing: border-box;
118
118
  margin: 0;
119
- pointer-events: none;
120
119
  }
121
120
 
122
121
  [part~='row'][loading] [part~='body-cell'] ::slotted(vaadin-grid-cell-content) {
@@ -159,10 +158,6 @@ registerStyles(
159
158
  text-overflow: ellipsis;
160
159
  }
161
160
 
162
- [part~='cell'] {
163
- pointer-events: initial;
164
- }
165
-
166
161
  [hidden] {
167
162
  display: none !important;
168
163
  }