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.
- package/dist/bundle.cjs.js +3 -0
- package/dist/bundle.esm.js +3 -0
- package/dist/nx/nxLayout.js +3 -0
- package/package.json +1 -1
- package/src/nx/nxLayout.js +3 -0
package/dist/bundle.cjs.js
CHANGED
|
@@ -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}`;
|
package/dist/bundle.esm.js
CHANGED
|
@@ -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}`;
|
package/dist/nx/nxLayout.js
CHANGED
|
@@ -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
package/src/nx/nxLayout.js
CHANGED
|
@@ -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}`;
|