ninegrid2 6.974.0 → 6.976.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 -3
- package/dist/bundle.esm.js +2 -3
- package/dist/nx/nxLayout.js +2 -3
- package/package.json +1 -1
- package/src/nx/nxLayout.js +2 -3
package/dist/bundle.cjs.js
CHANGED
|
@@ -121917,12 +121917,11 @@ class NxLayout extends HTMLElement {
|
|
|
121917
121917
|
|
|
121918
121918
|
if (children.length <= 0) return;
|
|
121919
121919
|
|
|
121920
|
-
this.innerHTML = '';
|
|
121920
|
+
//this.innerHTML = '';
|
|
121921
121921
|
// 기존 자식 노드를 안전하게 제거합니다.
|
|
121922
|
-
/**
|
|
121923
121922
|
while (this.firstChild) {
|
|
121924
121923
|
this.removeChild(this.firstChild);
|
|
121925
|
-
}
|
|
121924
|
+
}
|
|
121926
121925
|
|
|
121927
121926
|
const numColumns = Number(this.getAttribute('columns') || "1");
|
|
121928
121927
|
const numRows = Number(this.getAttribute('rows') || "1");
|
package/dist/bundle.esm.js
CHANGED
|
@@ -121913,12 +121913,11 @@ class NxLayout extends HTMLElement {
|
|
|
121913
121913
|
|
|
121914
121914
|
if (children.length <= 0) return;
|
|
121915
121915
|
|
|
121916
|
-
this.innerHTML = '';
|
|
121916
|
+
//this.innerHTML = '';
|
|
121917
121917
|
// 기존 자식 노드를 안전하게 제거합니다.
|
|
121918
|
-
/**
|
|
121919
121918
|
while (this.firstChild) {
|
|
121920
121919
|
this.removeChild(this.firstChild);
|
|
121921
|
-
}
|
|
121920
|
+
}
|
|
121922
121921
|
|
|
121923
121922
|
const numColumns = Number(this.getAttribute('columns') || "1");
|
|
121924
121923
|
const numRows = Number(this.getAttribute('rows') || "1");
|
package/dist/nx/nxLayout.js
CHANGED
|
@@ -22,12 +22,11 @@ class NxLayout extends HTMLElement {
|
|
|
22
22
|
|
|
23
23
|
if (children.length <= 0) return;
|
|
24
24
|
|
|
25
|
-
this.innerHTML = '';
|
|
25
|
+
//this.innerHTML = '';
|
|
26
26
|
// 기존 자식 노드를 안전하게 제거합니다.
|
|
27
|
-
/**
|
|
28
27
|
while (this.firstChild) {
|
|
29
28
|
this.removeChild(this.firstChild);
|
|
30
|
-
}
|
|
29
|
+
}
|
|
31
30
|
|
|
32
31
|
const numColumns = Number(this.getAttribute('columns') || "1");
|
|
33
32
|
const numRows = Number(this.getAttribute('rows') || "1");
|
package/package.json
CHANGED
package/src/nx/nxLayout.js
CHANGED
|
@@ -22,12 +22,11 @@ class NxLayout extends HTMLElement {
|
|
|
22
22
|
|
|
23
23
|
if (children.length <= 0) return;
|
|
24
24
|
|
|
25
|
-
this.innerHTML = '';
|
|
25
|
+
//this.innerHTML = '';
|
|
26
26
|
// 기존 자식 노드를 안전하게 제거합니다.
|
|
27
|
-
/**
|
|
28
27
|
while (this.firstChild) {
|
|
29
28
|
this.removeChild(this.firstChild);
|
|
30
|
-
}
|
|
29
|
+
}
|
|
31
30
|
|
|
32
31
|
const numColumns = Number(this.getAttribute('columns') || "1");
|
|
33
32
|
const numRows = Number(this.getAttribute('rows') || "1");
|