@vaadin/grid 23.1.4 → 23.1.7

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.4",
3
+ "version": "23.1.7",
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.4",
47
- "@vaadin/component-base": "^23.1.4",
48
- "@vaadin/lit-renderer": "^23.1.4",
49
- "@vaadin/text-field": "^23.1.4",
50
- "@vaadin/vaadin-lumo-styles": "^23.1.4",
51
- "@vaadin/vaadin-material-styles": "^23.1.4",
52
- "@vaadin/vaadin-themable-mixin": "^23.1.4"
46
+ "@vaadin/checkbox": "~23.1.7",
47
+ "@vaadin/component-base": "~23.1.7",
48
+ "@vaadin/lit-renderer": "~23.1.7",
49
+ "@vaadin/text-field": "~23.1.7",
50
+ "@vaadin/vaadin-lumo-styles": "~23.1.7",
51
+ "@vaadin/vaadin-material-styles": "~23.1.7",
52
+ "@vaadin/vaadin-themable-mixin": "~23.1.7"
53
53
  },
54
54
  "devDependencies": {
55
55
  "@esm-bundle/chai": "^4.3.4",
56
- "@vaadin/polymer-legacy-adapter": "^23.1.4",
56
+ "@vaadin/polymer-legacy-adapter": "~23.1.7",
57
57
  "@vaadin/testing-helpers": "^0.3.2",
58
58
  "lit": "^2.0.0",
59
59
  "sinon": "^13.0.2"
60
60
  },
61
- "gitHead": "0a82302064f1276a000f0cbd810076539407d133"
61
+ "gitHead": "879a4e5e6a245809bafa0ef2b5cdb24aef72565d"
62
62
  }
@@ -594,6 +594,11 @@ class Grid extends ElementMixin(
594
594
  // Flush to make sure DOM is up-to-date when measuring the column widths
595
595
  this.__virtualizer.flush();
596
596
 
597
+ // Flush to account for any changes to the visibility of the columns
598
+ if (this._debouncerHiddenChanged) {
599
+ this._debouncerHiddenChanged.flush();
600
+ }
601
+
597
602
  cols.forEach((col) => {
598
603
  col.width = `${this.__getDistributedWidth(col)}px`;
599
604
  });
@@ -395,13 +395,3 @@ registerStyles(
395
395
  `,
396
396
  { moduleId: 'lumo-grid' },
397
397
  );
398
-
399
- registerStyles(
400
- 'vaadin-checkbox',
401
- css`
402
- :host(.vaadin-grid-select-all-checkbox) {
403
- font-size: var(--lumo-font-size-m);
404
- }
405
- `,
406
- { moduleId: 'vaadin-grid-select-all-checkbox-lumo' },
407
- );