@vaadin/grid 23.1.0 → 23.1.1

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.0",
3
+ "version": "23.1.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -43,20 +43,20 @@
43
43
  "dependencies": {
44
44
  "@open-wc/dedupe-mixin": "^1.3.0",
45
45
  "@polymer/polymer": "^3.0.0",
46
- "@vaadin/checkbox": "^23.1.0",
47
- "@vaadin/component-base": "^23.1.0",
48
- "@vaadin/lit-renderer": "^23.1.0",
49
- "@vaadin/text-field": "^23.1.0",
50
- "@vaadin/vaadin-lumo-styles": "^23.1.0",
51
- "@vaadin/vaadin-material-styles": "^23.1.0",
52
- "@vaadin/vaadin-themable-mixin": "^23.1.0"
46
+ "@vaadin/checkbox": "^23.1.1",
47
+ "@vaadin/component-base": "^23.1.1",
48
+ "@vaadin/lit-renderer": "^23.1.1",
49
+ "@vaadin/text-field": "^23.1.1",
50
+ "@vaadin/vaadin-lumo-styles": "^23.1.1",
51
+ "@vaadin/vaadin-material-styles": "^23.1.1",
52
+ "@vaadin/vaadin-themable-mixin": "^23.1.1"
53
53
  },
54
54
  "devDependencies": {
55
55
  "@esm-bundle/chai": "^4.3.4",
56
- "@vaadin/polymer-legacy-adapter": "^23.1.0",
56
+ "@vaadin/polymer-legacy-adapter": "^23.1.1",
57
57
  "@vaadin/testing-helpers": "^0.3.2",
58
58
  "lit": "^2.0.0",
59
59
  "sinon": "^13.0.2"
60
60
  },
61
- "gitHead": "322bba42b83f908a78cd972b06acadc5da95a69d"
61
+ "gitHead": "390458d6519433a2dd502cef90da48e84573a275"
62
62
  }
@@ -33,7 +33,9 @@ export const EventContextMixin = (superClass) =>
33
33
  getEventContext(event) {
34
34
  const context = {};
35
35
 
36
- const path = event.composedPath();
36
+ // Use `composedPath()` stored by vaadin-context-menu gesture
37
+ // to avoid problem when accessing it after a timeout on iOS
38
+ const path = event.__composedPath || event.composedPath();
37
39
  const cell = path[path.indexOf(this.$.table) - 3];
38
40
 
39
41
  if (!cell) {