ninegrid2 6.1095.0 → 6.1096.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 -1
- package/dist/bundle.esm.js +2 -1
- package/dist/nx/nxLayout.js +2 -1
- package/package.json +1 -1
- package/src/nx/nxLayout.js +2 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -121923,12 +121923,13 @@ class NxLayout extends HTMLElement {
|
|
|
121923
121923
|
rowWrapper.style.display = 'flex';
|
|
121924
121924
|
rowWrapper.style.flex = `1 1 ${flexBasis}%`; // 모든 행이 균등한 높이를 갖도록 설정
|
|
121925
121925
|
rowWrapper.style.height = '100%';
|
|
121926
|
+
rowWrapper.style.minHeight = '0';
|
|
121926
121927
|
//rowWrapper.style.gap = '8px'; // Flexbox 간격 설정
|
|
121927
121928
|
|
|
121928
121929
|
for (let col = 0; col < numColumns; col++) {
|
|
121929
121930
|
if (children[childIndex]) {
|
|
121930
121931
|
const panel = children[childIndex];
|
|
121931
|
-
panel.style.flex = '1'; // Flexbox 환경에 맞게 flex 속성 추가
|
|
121932
|
+
panel.style.flex = '1 1 0'; // Flexbox 환경에 맞게 flex 속성 추가
|
|
121932
121933
|
rowWrapper.appendChild(panel);
|
|
121933
121934
|
childIndex++;
|
|
121934
121935
|
}
|
package/dist/bundle.esm.js
CHANGED
|
@@ -121919,12 +121919,13 @@ class NxLayout extends HTMLElement {
|
|
|
121919
121919
|
rowWrapper.style.display = 'flex';
|
|
121920
121920
|
rowWrapper.style.flex = `1 1 ${flexBasis}%`; // 모든 행이 균등한 높이를 갖도록 설정
|
|
121921
121921
|
rowWrapper.style.height = '100%';
|
|
121922
|
+
rowWrapper.style.minHeight = '0';
|
|
121922
121923
|
//rowWrapper.style.gap = '8px'; // Flexbox 간격 설정
|
|
121923
121924
|
|
|
121924
121925
|
for (let col = 0; col < numColumns; col++) {
|
|
121925
121926
|
if (children[childIndex]) {
|
|
121926
121927
|
const panel = children[childIndex];
|
|
121927
|
-
panel.style.flex = '1'; // Flexbox 환경에 맞게 flex 속성 추가
|
|
121928
|
+
panel.style.flex = '1 1 0'; // Flexbox 환경에 맞게 flex 속성 추가
|
|
121928
121929
|
rowWrapper.appendChild(panel);
|
|
121929
121930
|
childIndex++;
|
|
121930
121931
|
}
|
package/dist/nx/nxLayout.js
CHANGED
|
@@ -53,12 +53,13 @@ class NxLayout extends HTMLElement {
|
|
|
53
53
|
rowWrapper.style.display = 'flex';
|
|
54
54
|
rowWrapper.style.flex = `1 1 ${flexBasis}%`; // 모든 행이 균등한 높이를 갖도록 설정
|
|
55
55
|
rowWrapper.style.height = '100%';
|
|
56
|
+
rowWrapper.style.minHeight = '0';
|
|
56
57
|
//rowWrapper.style.gap = '8px'; // Flexbox 간격 설정
|
|
57
58
|
|
|
58
59
|
for (let col = 0; col < numColumns; col++) {
|
|
59
60
|
if (children[childIndex]) {
|
|
60
61
|
const panel = children[childIndex];
|
|
61
|
-
panel.style.flex = '1'; // Flexbox 환경에 맞게 flex 속성 추가
|
|
62
|
+
panel.style.flex = '1 1 0'; // Flexbox 환경에 맞게 flex 속성 추가
|
|
62
63
|
rowWrapper.appendChild(panel);
|
|
63
64
|
childIndex++;
|
|
64
65
|
}
|
package/package.json
CHANGED
package/src/nx/nxLayout.js
CHANGED
|
@@ -53,12 +53,13 @@ class NxLayout extends HTMLElement {
|
|
|
53
53
|
rowWrapper.style.display = 'flex';
|
|
54
54
|
rowWrapper.style.flex = `1 1 ${flexBasis}%`; // 모든 행이 균등한 높이를 갖도록 설정
|
|
55
55
|
rowWrapper.style.height = '100%';
|
|
56
|
+
rowWrapper.style.minHeight = '0';
|
|
56
57
|
//rowWrapper.style.gap = '8px'; // Flexbox 간격 설정
|
|
57
58
|
|
|
58
59
|
for (let col = 0; col < numColumns; col++) {
|
|
59
60
|
if (children[childIndex]) {
|
|
60
61
|
const panel = children[childIndex];
|
|
61
|
-
panel.style.flex = '1'; // Flexbox 환경에 맞게 flex 속성 추가
|
|
62
|
+
panel.style.flex = '1 1 0'; // Flexbox 환경에 맞게 flex 속성 추가
|
|
62
63
|
rowWrapper.appendChild(panel);
|
|
63
64
|
childIndex++;
|
|
64
65
|
}
|