ninegrid2 6.757.0 → 6.759.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.
@@ -121191,12 +121191,15 @@ class nxSplitter extends HTMLElement {
121191
121191
  if (!prev || !next || !parent) return;
121192
121192
 
121193
121193
  const currentTotal = this.#getSiblingSizeSum();
121194
- console.log(currentTotal);
121194
+
121195
121195
 
121196
121196
  const parentSize = isHorizontal
121197
121197
  ? parent.getBoundingClientRect().width
121198
121198
  : parent.getBoundingClientRect().height;
121199
121199
 
121200
+
121201
+ console.log(currentTotal, parentSize);
121202
+
121200
121203
  // 현재 패널 크기 측정
121201
121204
  const prevSize = isHorizontal ? prev.offsetWidth : prev.offsetHeight;
121202
121205
  const nextSize = isHorizontal ? next.offsetWidth : next.offsetHeight;
@@ -121187,12 +121187,15 @@ class nxSplitter extends HTMLElement {
121187
121187
  if (!prev || !next || !parent) return;
121188
121188
 
121189
121189
  const currentTotal = this.#getSiblingSizeSum();
121190
- console.log(currentTotal);
121190
+
121191
121191
 
121192
121192
  const parentSize = isHorizontal
121193
121193
  ? parent.getBoundingClientRect().width
121194
121194
  : parent.getBoundingClientRect().height;
121195
121195
 
121196
+
121197
+ console.log(currentTotal, parentSize);
121198
+
121196
121199
  // 현재 패널 크기 측정
121197
121200
  const prevSize = isHorizontal ? prev.offsetWidth : prev.offsetHeight;
121198
121201
  const nextSize = isHorizontal ? next.offsetWidth : next.offsetHeight;
@@ -204,12 +204,15 @@ class nxSplitter extends HTMLElement {
204
204
  if (!prev || !next || !parent) return;
205
205
 
206
206
  const currentTotal = this.#getSiblingSizeSum();
207
- console.log(currentTotal);
207
+
208
208
 
209
209
  const parentSize = isHorizontal
210
210
  ? parent.getBoundingClientRect().width
211
211
  : parent.getBoundingClientRect().height;
212
212
 
213
+
214
+ console.log(currentTotal, parentSize);
215
+
213
216
  // 현재 패널 크기 측정
214
217
  const prevSize = isHorizontal ? prev.offsetWidth : prev.offsetHeight;
215
218
  const nextSize = isHorizontal ? next.offsetWidth : next.offsetHeight;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.757.0",
4
+ "version": "6.759.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -204,12 +204,15 @@ class nxSplitter extends HTMLElement {
204
204
  if (!prev || !next || !parent) return;
205
205
 
206
206
  const currentTotal = this.#getSiblingSizeSum();
207
- console.log(currentTotal);
207
+
208
208
 
209
209
  const parentSize = isHorizontal
210
210
  ? parent.getBoundingClientRect().width
211
211
  : parent.getBoundingClientRect().height;
212
212
 
213
+
214
+ console.log(currentTotal, parentSize);
215
+
213
216
  // 현재 패널 크기 측정
214
217
  const prevSize = isHorizontal ? prev.offsetWidth : prev.offsetHeight;
215
218
  const nextSize = isHorizontal ? next.offsetWidth : next.offsetHeight;