@vaadin/crud 22.0.3 → 22.0.4

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/crud",
3
- "version": "22.0.3",
3
+ "version": "22.0.4",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -35,23 +35,23 @@
35
35
  "@open-wc/dedupe-mixin": "^1.3.0",
36
36
  "@polymer/iron-media-query": "^3.0.0",
37
37
  "@polymer/polymer": "^3.0.0",
38
- "@vaadin/button": "^22.0.3",
39
- "@vaadin/component-base": "^22.0.3",
40
- "@vaadin/confirm-dialog": "^22.0.3",
41
- "@vaadin/dialog": "^22.0.3",
42
- "@vaadin/form-layout": "^22.0.3",
43
- "@vaadin/grid": "^22.0.3",
44
- "@vaadin/text-field": "^22.0.3",
38
+ "@vaadin/button": "^22.0.4",
39
+ "@vaadin/component-base": "^22.0.4",
40
+ "@vaadin/confirm-dialog": "^22.0.4",
41
+ "@vaadin/dialog": "^22.0.4",
42
+ "@vaadin/form-layout": "^22.0.4",
43
+ "@vaadin/grid": "^22.0.4",
44
+ "@vaadin/text-field": "^22.0.4",
45
45
  "@vaadin/vaadin-license-checker": "^2.1.0",
46
- "@vaadin/vaadin-lumo-styles": "^22.0.3",
47
- "@vaadin/vaadin-material-styles": "^22.0.3",
48
- "@vaadin/vaadin-themable-mixin": "^22.0.3"
46
+ "@vaadin/vaadin-lumo-styles": "^22.0.4",
47
+ "@vaadin/vaadin-material-styles": "^22.0.4",
48
+ "@vaadin/vaadin-themable-mixin": "^22.0.4"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@esm-bundle/chai": "^4.3.4",
52
- "@vaadin/polymer-legacy-adapter": "^22.0.3",
52
+ "@vaadin/polymer-legacy-adapter": "^22.0.4",
53
53
  "@vaadin/testing-helpers": "^0.3.2",
54
54
  "sinon": "^9.2.1"
55
55
  },
56
- "gitHead": "935ad1ea65a79b0f9ecb10d767689479b36c4e07"
56
+ "gitHead": "55891f68d4da41e846e06dfe51dceba1665e41ce"
57
57
  }
@@ -138,6 +138,10 @@ class CrudGrid extends IncludedMixin(Grid) {
138
138
 
139
139
  if (!this.noHead && path) {
140
140
  col.headerRenderer = (root) => {
141
+ if (root.firstElementChild) {
142
+ return;
143
+ }
144
+
141
145
  const label = this._generateHeader(path);
142
146
 
143
147
  if (!this.noSort) {