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.
@@ -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 = this.#isLastSplitter() ? "100%" : `${totalSize - delta}px`;
121115
+ next.style.width = `${totalSize - delta}px`;
121116
121116
  } else {
121117
121117
  prev.style.height = `${delta}px`;
121118
- next.style.height = this.#isLastSplitter() ? "100%" : `${totalSize - delta}px`;
121118
+ next.style.height = `${totalSize - delta}px`;
121119
121119
  }
121120
121120
 
121121
121121
  prev.style.flex = prev1;
@@ -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 = this.#isLastSplitter() ? "100%" : `${totalSize - delta}px`;
121111
+ next.style.width = `${totalSize - delta}px`;
121112
121112
  } else {
121113
121113
  prev.style.height = `${delta}px`;
121114
- next.style.height = this.#isLastSplitter() ? "100%" : `${totalSize - delta}px`;
121114
+ next.style.height = `${totalSize - delta}px`;
121115
121115
  }
121116
121116
 
121117
121117
  prev.style.flex = prev1;
@@ -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 = this.#isLastSplitter() ? "100%" : `${totalSize - delta}px`;
127
+ next.style.width = `${totalSize - delta}px`;
128
128
  } else {
129
129
  prev.style.height = `${delta}px`;
130
- next.style.height = this.#isLastSplitter() ? "100%" : `${totalSize - delta}px`;
130
+ next.style.height = `${totalSize - delta}px`;
131
131
  }
132
132
 
133
133
  prev.style.flex = prev1;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.740.0",
4
+ "version": "6.742.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -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 = this.#isLastSplitter() ? "100%" : `${totalSize - delta}px`;
127
+ next.style.width = `${totalSize - delta}px`;
128
128
  } else {
129
129
  prev.style.height = `${delta}px`;
130
- next.style.height = this.#isLastSplitter() ? "100%" : `${totalSize - delta}px`;
130
+ next.style.height = `${totalSize - delta}px`;
131
131
  }
132
132
 
133
133
  prev.style.flex = prev1;