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.
- package/dist/bundle.cjs.js +4 -1
- package/dist/bundle.esm.js +4 -1
- package/dist/nx/nxSplitter.js +4 -1
- package/package.json +1 -1
- package/src/nx/nxSplitter.js +4 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -121191,12 +121191,15 @@ class nxSplitter extends HTMLElement {
|
|
|
121191
121191
|
if (!prev || !next || !parent) return;
|
|
121192
121192
|
|
|
121193
121193
|
const currentTotal = this.#getSiblingSizeSum();
|
|
121194
|
-
|
|
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;
|
package/dist/bundle.esm.js
CHANGED
|
@@ -121187,12 +121187,15 @@ class nxSplitter extends HTMLElement {
|
|
|
121187
121187
|
if (!prev || !next || !parent) return;
|
|
121188
121188
|
|
|
121189
121189
|
const currentTotal = this.#getSiblingSizeSum();
|
|
121190
|
-
|
|
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;
|
package/dist/nx/nxSplitter.js
CHANGED
|
@@ -204,12 +204,15 @@ class nxSplitter extends HTMLElement {
|
|
|
204
204
|
if (!prev || !next || !parent) return;
|
|
205
205
|
|
|
206
206
|
const currentTotal = this.#getSiblingSizeSum();
|
|
207
|
-
|
|
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
package/src/nx/nxSplitter.js
CHANGED
|
@@ -204,12 +204,15 @@ class nxSplitter extends HTMLElement {
|
|
|
204
204
|
if (!prev || !next || !parent) return;
|
|
205
205
|
|
|
206
206
|
const currentTotal = this.#getSiblingSizeSum();
|
|
207
|
-
|
|
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;
|