ninegrid2 6.740.0 → 6.742.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 -2
- package/dist/bundle.esm.js +2 -2
- package/dist/nx/nxSplitter.js +2 -2
- package/package.json +1 -1
- package/src/nx/nxSplitter.js +2 -2
package/dist/bundle.cjs.js
CHANGED
|
@@ -121112,10 +121112,10 @@ class nxSplitter extends HTMLElement {
|
|
|
121112
121112
|
// 📌 사이즈 적용
|
|
121113
121113
|
if (this.#mode === "h") {
|
|
121114
121114
|
prev.style.width = `${delta}px`;
|
|
121115
|
-
next.style.width =
|
|
121115
|
+
next.style.width = `${totalSize - delta}px`;
|
|
121116
121116
|
} else {
|
|
121117
121117
|
prev.style.height = `${delta}px`;
|
|
121118
|
-
next.style.height =
|
|
121118
|
+
next.style.height = `${totalSize - delta}px`;
|
|
121119
121119
|
}
|
|
121120
121120
|
|
|
121121
121121
|
prev.style.flex = prev1;
|
package/dist/bundle.esm.js
CHANGED
|
@@ -121108,10 +121108,10 @@ class nxSplitter extends HTMLElement {
|
|
|
121108
121108
|
// 📌 사이즈 적용
|
|
121109
121109
|
if (this.#mode === "h") {
|
|
121110
121110
|
prev.style.width = `${delta}px`;
|
|
121111
|
-
next.style.width =
|
|
121111
|
+
next.style.width = `${totalSize - delta}px`;
|
|
121112
121112
|
} else {
|
|
121113
121113
|
prev.style.height = `${delta}px`;
|
|
121114
|
-
next.style.height =
|
|
121114
|
+
next.style.height = `${totalSize - delta}px`;
|
|
121115
121115
|
}
|
|
121116
121116
|
|
|
121117
121117
|
prev.style.flex = prev1;
|
package/dist/nx/nxSplitter.js
CHANGED
|
@@ -124,10 +124,10 @@ class nxSplitter extends HTMLElement {
|
|
|
124
124
|
// 📌 사이즈 적용
|
|
125
125
|
if (this.#mode === "h") {
|
|
126
126
|
prev.style.width = `${delta}px`;
|
|
127
|
-
next.style.width =
|
|
127
|
+
next.style.width = `${totalSize - delta}px`;
|
|
128
128
|
} else {
|
|
129
129
|
prev.style.height = `${delta}px`;
|
|
130
|
-
next.style.height =
|
|
130
|
+
next.style.height = `${totalSize - delta}px`;
|
|
131
131
|
}
|
|
132
132
|
|
|
133
133
|
prev.style.flex = prev1;
|
package/package.json
CHANGED
package/src/nx/nxSplitter.js
CHANGED
|
@@ -124,10 +124,10 @@ class nxSplitter extends HTMLElement {
|
|
|
124
124
|
// 📌 사이즈 적용
|
|
125
125
|
if (this.#mode === "h") {
|
|
126
126
|
prev.style.width = `${delta}px`;
|
|
127
|
-
next.style.width =
|
|
127
|
+
next.style.width = `${totalSize - delta}px`;
|
|
128
128
|
} else {
|
|
129
129
|
prev.style.height = `${delta}px`;
|
|
130
|
-
next.style.height =
|
|
130
|
+
next.style.height = `${totalSize - delta}px`;
|
|
131
131
|
}
|
|
132
132
|
|
|
133
133
|
prev.style.flex = prev1;
|