ninegrid2 6.1056.0 → 6.1057.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.
@@ -121497,8 +121497,8 @@ class nxSplitter extends HTMLElement {
121497
121497
  }, 0);
121498
121498
 
121499
121499
  // ⭐⭐ Flexbox의 'gap' 크기 계산 (하드코딩된 8px 사용) ⭐⭐
121500
- const gapCount = allChildren.length - 1;
121501
- const totalGapSize = gapCount * 8;
121500
+ allChildren.length - 1;
121501
+ const totalGapSize = 0;//gapCount * 8;
121502
121502
 
121503
121503
  // ⭐⭐ Flexbox 컨테이너의 '총 유효 공간' (패널들이 차지할 수 있는 공간) 계산 ⭐⭐
121504
121504
  const totalFlexSpace = totalContainerSize - totalSplitterSize - totalGapSize;
@@ -121493,8 +121493,8 @@ class nxSplitter extends HTMLElement {
121493
121493
  }, 0);
121494
121494
 
121495
121495
  // ⭐⭐ Flexbox의 'gap' 크기 계산 (하드코딩된 8px 사용) ⭐⭐
121496
- const gapCount = allChildren.length - 1;
121497
- const totalGapSize = gapCount * 8;
121496
+ allChildren.length - 1;
121497
+ const totalGapSize = 0;//gapCount * 8;
121498
121498
 
121499
121499
  // ⭐⭐ Flexbox 컨테이너의 '총 유효 공간' (패널들이 차지할 수 있는 공간) 계산 ⭐⭐
121500
121500
  const totalFlexSpace = totalContainerSize - totalSplitterSize - totalGapSize;
@@ -131,7 +131,7 @@ class nxSplitter extends HTMLElement {
131
131
 
132
132
  // ⭐⭐ Flexbox의 'gap' 크기 계산 (하드코딩된 8px 사용) ⭐⭐
133
133
  const gapCount = allChildren.length - 1;
134
- const totalGapSize = gapCount * 8;
134
+ const totalGapSize = 0;//gapCount * 8;
135
135
 
136
136
  // ⭐⭐ Flexbox 컨테이너의 '총 유효 공간' (패널들이 차지할 수 있는 공간) 계산 ⭐⭐
137
137
  const totalFlexSpace = totalContainerSize - totalSplitterSize - totalGapSize;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.1056.0",
4
+ "version": "6.1057.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -131,7 +131,7 @@ class nxSplitter extends HTMLElement {
131
131
 
132
132
  // ⭐⭐ Flexbox의 'gap' 크기 계산 (하드코딩된 8px 사용) ⭐⭐
133
133
  const gapCount = allChildren.length - 1;
134
- const totalGapSize = gapCount * 8;
134
+ const totalGapSize = 0;//gapCount * 8;
135
135
 
136
136
  // ⭐⭐ Flexbox 컨테이너의 '총 유효 공간' (패널들이 차지할 수 있는 공간) 계산 ⭐⭐
137
137
  const totalFlexSpace = totalContainerSize - totalSplitterSize - totalGapSize;