ninegrid2 6.992.0 → 6.994.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.
@@ -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);
@@ -121945,6 +121947,9 @@ class NxLayout extends HTMLElement {
121945
121947
 
121946
121948
  // 각 행의 패널과 가로 스플리터를 직접 배치
121947
121949
  for (let col = 0; col < numColumns; col++) {
121950
+
121951
+ console.log(numColumns, childIndex, children[childIndex]);
121952
+
121948
121953
  if (children[childIndex]) {
121949
121954
  const panel = children[childIndex];
121950
121955
  panel.style.gridRow = `${gridRowOffset}`;
@@ -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);
@@ -121941,6 +121943,9 @@ class NxLayout extends HTMLElement {
121941
121943
 
121942
121944
  // 각 행의 패널과 가로 스플리터를 직접 배치
121943
121945
  for (let col = 0; col < numColumns; col++) {
121946
+
121947
+ console.log(numColumns, childIndex, children[childIndex]);
121948
+
121944
121949
  if (children[childIndex]) {
121945
121950
  const panel = children[childIndex];
121946
121951
  panel.style.gridRow = `${gridRowOffset}`;
@@ -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);
@@ -59,6 +61,9 @@ class NxLayout extends HTMLElement {
59
61
 
60
62
  // 각 행의 패널과 가로 스플리터를 직접 배치
61
63
  for (let col = 0; col < numColumns; col++) {
64
+
65
+ console.log(numColumns, childIndex, children[childIndex]);
66
+
62
67
  if (children[childIndex]) {
63
68
  const panel = children[childIndex];
64
69
  panel.style.gridRow = `${gridRowOffset}`;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.992.0",
4
+ "version": "6.994.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -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);
@@ -59,6 +61,9 @@ class NxLayout extends HTMLElement {
59
61
 
60
62
  // 각 행의 패널과 가로 스플리터를 직접 배치
61
63
  for (let col = 0; col < numColumns; col++) {
64
+
65
+ console.log(numColumns, childIndex, children[childIndex]);
66
+
62
67
  if (children[childIndex]) {
63
68
  const panel = children[childIndex];
64
69
  panel.style.gridRow = `${gridRowOffset}`;