@vaadin/grid 23.1.6 → 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 +10 -10
- package/src/vaadin-grid.js +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/grid",
|
|
3
|
-
"version": "23.1.
|
|
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": "
|
|
47
|
-
"@vaadin/component-base": "
|
|
48
|
-
"@vaadin/lit-renderer": "
|
|
49
|
-
"@vaadin/text-field": "
|
|
50
|
-
"@vaadin/vaadin-lumo-styles": "
|
|
51
|
-
"@vaadin/vaadin-material-styles": "
|
|
52
|
-
"@vaadin/vaadin-themable-mixin": "
|
|
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": "
|
|
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": "
|
|
61
|
+
"gitHead": "879a4e5e6a245809bafa0ef2b5cdb24aef72565d"
|
|
62
62
|
}
|
package/src/vaadin-grid.js
CHANGED
|
@@ -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
|
});
|