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