ninegrid2 6.1000.0 → 6.1002.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.
@@ -121910,6 +121910,7 @@ class NxLayout extends HTMLElement {
121910
121910
  // 컴포넌트가 DOM에 추가된 후, 원본 자식 요소들을 저장합니다.
121911
121911
  // filter를 사용하여 nx-splitter를 제외합니다.
121912
121912
  this.#originalChildren = Array.from(this.children);
121913
+ console.log(this.children);
121913
121914
  this.#render();
121914
121915
  }
121915
121916
 
@@ -121906,6 +121906,7 @@ class NxLayout extends HTMLElement {
121906
121906
  // 컴포넌트가 DOM에 추가된 후, 원본 자식 요소들을 저장합니다.
121907
121907
  // filter를 사용하여 nx-splitter를 제외합니다.
121908
121908
  this.#originalChildren = Array.from(this.children);
121909
+ console.log(this.children);
121909
121910
  this.#render();
121910
121911
  }
121911
121912
 
@@ -15,6 +15,7 @@ class NxLayout extends HTMLElement {
15
15
  // 컴포넌트가 DOM에 추가된 후, 원본 자식 요소들을 저장합니다.
16
16
  // filter를 사용하여 nx-splitter를 제외합니다.
17
17
  this.#originalChildren = Array.from(this.children);
18
+ console.log(this.children);
18
19
  this.#render();
19
20
  }
20
21
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.1000.0",
4
+ "version": "6.1002.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -15,6 +15,7 @@ class NxLayout extends HTMLElement {
15
15
  // 컴포넌트가 DOM에 추가된 후, 원본 자식 요소들을 저장합니다.
16
16
  // filter를 사용하여 nx-splitter를 제외합니다.
17
17
  this.#originalChildren = Array.from(this.children);
18
+ console.log(this.children);
18
19
  this.#render();
19
20
  }
20
21