ninegrid2 6.1088.0 → 6.1089.0

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.
@@ -121980,7 +121980,7 @@ class nxPanel extends HTMLElement {
121980
121980
  </div>
121981
121981
  `;
121982
121982
 
121983
- this.shadowRoot.querySelector(".body").appendChild(htmlTmpl.content.cloneNode(true));
121983
+ this.shadowRoot.appendChild(htmlTmpl.content.cloneNode(true));
121984
121984
  }
121985
121985
  }
121986
121986
 
@@ -121976,7 +121976,7 @@ class nxPanel extends HTMLElement {
121976
121976
  </div>
121977
121977
  `;
121978
121978
 
121979
- this.shadowRoot.querySelector(".body").appendChild(htmlTmpl.content.cloneNode(true));
121979
+ this.shadowRoot.appendChild(htmlTmpl.content.cloneNode(true));
121980
121980
  }
121981
121981
  }
121982
121982
 
@@ -28,7 +28,7 @@ class nxPanel extends HTMLElement {
28
28
  </div>
29
29
  `;
30
30
 
31
- this.shadowRoot.querySelector(".body").appendChild(htmlTmpl.content.cloneNode(true));
31
+ this.shadowRoot.appendChild(htmlTmpl.content.cloneNode(true));
32
32
  }
33
33
  }
34
34
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.1088.0",
4
+ "version": "6.1089.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
package/src/nx/nxPanel.js CHANGED
@@ -28,7 +28,7 @@ class nxPanel extends HTMLElement {
28
28
  </div>
29
29
  `;
30
30
 
31
- this.shadowRoot.querySelector(".body").appendChild(htmlTmpl.content.cloneNode(true));
31
+ this.shadowRoot.appendChild(htmlTmpl.content.cloneNode(true));
32
32
  }
33
33
  }
34
34