ninegrid2 6.854.0 → 6.855.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 +2 -0
- package/dist/bundle.esm.js +2 -0
- package/dist/nx/nxSplitter.js +2 -0
- package/package.json +1 -1
- package/src/nx/nxSplitter.js +2 -0
package/dist/bundle.cjs.js
CHANGED
|
@@ -121416,6 +121416,8 @@ class nxSplitter extends HTMLElement {
|
|
|
121416
121416
|
prev.style.flex = "none";
|
|
121417
121417
|
next.style.flex = "none";
|
|
121418
121418
|
|
|
121419
|
+
console.log(delta, totalSize);
|
|
121420
|
+
|
|
121419
121421
|
// 📌 사이즈 적용
|
|
121420
121422
|
if (this.#mode === "h") {
|
|
121421
121423
|
prev.style.width = `${delta}px`;
|
package/dist/bundle.esm.js
CHANGED
|
@@ -121412,6 +121412,8 @@ class nxSplitter extends HTMLElement {
|
|
|
121412
121412
|
prev.style.flex = "none";
|
|
121413
121413
|
next.style.flex = "none";
|
|
121414
121414
|
|
|
121415
|
+
console.log(delta, totalSize);
|
|
121416
|
+
|
|
121415
121417
|
// 📌 사이즈 적용
|
|
121416
121418
|
if (this.#mode === "h") {
|
|
121417
121419
|
prev.style.width = `${delta}px`;
|
package/dist/nx/nxSplitter.js
CHANGED
package/package.json
CHANGED
package/src/nx/nxSplitter.js
CHANGED