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.
@@ -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
 
@@ -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
 
@@ -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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.1096.0",
4
+ "version": "6.1097.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -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