ninegrid2 6.993.0 → 6.995.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.
- package/dist/bundle.cjs.js +2 -0
- package/dist/bundle.esm.js +2 -0
- package/dist/nx/nxLayout.js +2 -0
- package/package.json +1 -1
- package/src/nx/nxLayout.js +2 -0
package/dist/bundle.cjs.js
CHANGED
|
@@ -121914,6 +121914,8 @@ class NxLayout extends HTMLElement {
|
|
|
121914
121914
|
const children = Array.from(this.children);
|
|
121915
121915
|
if (children.length === 0) return;
|
|
121916
121916
|
|
|
121917
|
+
console.log("=============================", children);
|
|
121918
|
+
|
|
121917
121919
|
// 기존 자식 노드를 모두 제거하여 초기화
|
|
121918
121920
|
while (this.firstChild) {
|
|
121919
121921
|
this.removeChild(this.firstChild);
|
package/dist/bundle.esm.js
CHANGED
|
@@ -121910,6 +121910,8 @@ class NxLayout extends HTMLElement {
|
|
|
121910
121910
|
const children = Array.from(this.children);
|
|
121911
121911
|
if (children.length === 0) return;
|
|
121912
121912
|
|
|
121913
|
+
console.log("=============================", children);
|
|
121914
|
+
|
|
121913
121915
|
// 기존 자식 노드를 모두 제거하여 초기화
|
|
121914
121916
|
while (this.firstChild) {
|
|
121915
121917
|
this.removeChild(this.firstChild);
|
package/dist/nx/nxLayout.js
CHANGED
|
@@ -19,6 +19,8 @@ class NxLayout extends HTMLElement {
|
|
|
19
19
|
const children = Array.from(this.children);
|
|
20
20
|
if (children.length === 0) return;
|
|
21
21
|
|
|
22
|
+
console.log("=============================", children)
|
|
23
|
+
|
|
22
24
|
// 기존 자식 노드를 모두 제거하여 초기화
|
|
23
25
|
while (this.firstChild) {
|
|
24
26
|
this.removeChild(this.firstChild);
|
package/package.json
CHANGED
package/src/nx/nxLayout.js
CHANGED
|
@@ -19,6 +19,8 @@ class NxLayout extends HTMLElement {
|
|
|
19
19
|
const children = Array.from(this.children);
|
|
20
20
|
if (children.length === 0) return;
|
|
21
21
|
|
|
22
|
+
console.log("=============================", children)
|
|
23
|
+
|
|
22
24
|
// 기존 자식 노드를 모두 제거하여 초기화
|
|
23
25
|
while (this.firstChild) {
|
|
24
26
|
this.removeChild(this.firstChild);
|