ninegrid2 6.1096.0 → 6.1097.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 +1 -0
- package/dist/bundle.esm.js +1 -0
- package/dist/nx/nxLayout.js +1 -0
- package/package.json +1 -1
- package/src/nx/nxLayout.js +1 -0
package/dist/bundle.cjs.js
CHANGED
|
@@ -121923,6 +121923,7 @@ 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.minWidth = '0';
|
|
121926
121927
|
rowWrapper.style.minHeight = '0';
|
|
121927
121928
|
//rowWrapper.style.gap = '8px'; // Flexbox 간격 설정
|
|
121928
121929
|
|
package/dist/bundle.esm.js
CHANGED
|
@@ -121919,6 +121919,7 @@ 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.minWidth = '0';
|
|
121922
121923
|
rowWrapper.style.minHeight = '0';
|
|
121923
121924
|
//rowWrapper.style.gap = '8px'; // Flexbox 간격 설정
|
|
121924
121925
|
|
package/dist/nx/nxLayout.js
CHANGED
|
@@ -53,6 +53,7 @@ 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.minWidth = '0';
|
|
56
57
|
rowWrapper.style.minHeight = '0';
|
|
57
58
|
//rowWrapper.style.gap = '8px'; // Flexbox 간격 설정
|
|
58
59
|
|
package/package.json
CHANGED
package/src/nx/nxLayout.js
CHANGED
|
@@ -53,6 +53,7 @@ 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.minWidth = '0';
|
|
56
57
|
rowWrapper.style.minHeight = '0';
|
|
57
58
|
//rowWrapper.style.gap = '8px'; // Flexbox 간격 설정
|
|
58
59
|
|