@vaadin/grid 23.1.0-alpha1 → 23.1.0-alpha2

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.
Files changed (2) hide show
  1. package/package.json +9 -9
  2. package/src/vaadin-grid.js +0 -22
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/grid",
3
- "version": "23.1.0-alpha1",
3
+ "version": "23.1.0-alpha2",
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.1.0-alpha1",
45
- "@vaadin/component-base": "23.1.0-alpha1",
46
- "@vaadin/text-field": "23.1.0-alpha1",
47
- "@vaadin/vaadin-lumo-styles": "23.1.0-alpha1",
48
- "@vaadin/vaadin-material-styles": "23.1.0-alpha1",
49
- "@vaadin/vaadin-themable-mixin": "23.1.0-alpha1"
44
+ "@vaadin/checkbox": "23.1.0-alpha2",
45
+ "@vaadin/component-base": "23.1.0-alpha2",
46
+ "@vaadin/text-field": "23.1.0-alpha2",
47
+ "@vaadin/vaadin-lumo-styles": "23.1.0-alpha2",
48
+ "@vaadin/vaadin-material-styles": "23.1.0-alpha2",
49
+ "@vaadin/vaadin-themable-mixin": "23.1.0-alpha2"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@esm-bundle/chai": "^4.3.4",
53
- "@vaadin/polymer-legacy-adapter": "23.1.0-alpha1",
53
+ "@vaadin/polymer-legacy-adapter": "23.1.0-alpha2",
54
54
  "@vaadin/testing-helpers": "^0.3.2",
55
55
  "lit": "^2.0.0",
56
56
  "sinon": "^9.2.0"
57
57
  },
58
- "gitHead": "5d0cdee069f866037c507265fafb4d0476795333"
58
+ "gitHead": "6842dcb8b163d4512fae8d3d12a6559077a4aee6"
59
59
  }
@@ -340,11 +340,6 @@ class Grid extends ElementMixin(
340
340
  value: isTouch
341
341
  },
342
342
 
343
- /** @protected */
344
- tabindex: {
345
- value: undefined
346
- },
347
-
348
343
  /**
349
344
  * If true, the grid's height is defined by its rows.
350
345
  *
@@ -473,23 +468,6 @@ class Grid extends ElementMixin(
473
468
  }
474
469
  }
475
470
 
476
- /**
477
- * Override an observer from `DisabledMixin` to not
478
- * set `tabindex` on the grid when it is re-enabled.
479
- *
480
- * @param {boolean} disabled
481
- * @param {boolean} oldDisabled
482
- * @protected
483
- * @override
484
- */
485
- _disabledChanged(disabled, oldDisabled) {
486
- super._disabledChanged(disabled, oldDisabled);
487
-
488
- if (oldDisabled) {
489
- this.removeAttribute('tabindex');
490
- }
491
- }
492
-
493
471
  /** @private */
494
472
  __getBodyCellCoordinates(cell) {
495
473
  if (this.$.items.contains(cell) && cell.localName === 'td') {