ninegrid2 6.997.0 → 6.998.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.
@@ -121924,7 +121924,7 @@ class NxLayout extends HTMLElement {
121924
121924
  }
121925
121925
 
121926
121926
  #render() {
121927
- const children = Array.from(this.children).filter(child => child.tagName.toLowerCase() !== 'nx-splitter');
121927
+ const children = this.originalChildren;
121928
121928
 
121929
121929
  if (children.length === 0) return;
121930
121930
 
@@ -121920,7 +121920,7 @@ class NxLayout extends HTMLElement {
121920
121920
  }
121921
121921
 
121922
121922
  #render() {
121923
- const children = Array.from(this.children).filter(child => child.tagName.toLowerCase() !== 'nx-splitter');
121923
+ const children = this.originalChildren;
121924
121924
 
121925
121925
  if (children.length === 0) return;
121926
121926
 
@@ -29,7 +29,7 @@ class NxLayout extends HTMLElement {
29
29
  }
30
30
 
31
31
  #render() {
32
- const children = Array.from(this.children).filter(child => child.tagName.toLowerCase() !== 'nx-splitter');
32
+ const children = this.originalChildren;
33
33
 
34
34
  if (children.length === 0) return;
35
35
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.997.0",
4
+ "version": "6.998.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -29,7 +29,7 @@ class NxLayout extends HTMLElement {
29
29
  }
30
30
 
31
31
  #render() {
32
- const children = Array.from(this.children).filter(child => child.tagName.toLowerCase() !== 'nx-splitter');
32
+ const children = this.originalChildren;
33
33
 
34
34
  if (children.length === 0) return;
35
35