ninegrid2 6.711.0 → 6.712.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.
@@ -121140,8 +121140,6 @@ class nxSplitter extends HTMLElement {
121140
121140
  window.removeEventListener("mouseup", onUp);
121141
121141
  dragBar.remove();
121142
121142
 
121143
- this.#mode === "h" ? this.offsetWidth : this.offsetHeight;
121144
-
121145
121143
  // 기준: prev + next 너비 합계
121146
121144
  const totalSize = this.#mode === "h"
121147
121145
  ? prev.offsetWidth + next.offsetWidth
@@ -121136,8 +121136,6 @@ class nxSplitter extends HTMLElement {
121136
121136
  window.removeEventListener("mouseup", onUp);
121137
121137
  dragBar.remove();
121138
121138
 
121139
- this.#mode === "h" ? this.offsetWidth : this.offsetHeight;
121140
-
121141
121139
  // 기준: prev + next 너비 합계
121142
121140
  const totalSize = this.#mode === "h"
121143
121141
  ? prev.offsetWidth + next.offsetWidth
@@ -95,8 +95,6 @@ class nxSplitter extends HTMLElement {
95
95
  window.removeEventListener("mouseup", onUp);
96
96
  dragBar.remove();
97
97
 
98
- const splitterSize = this.#mode === "h" ? this.offsetWidth : this.offsetHeight;
99
-
100
98
  // 기준: prev + next 너비 합계
101
99
  const totalSize = this.#mode === "h"
102
100
  ? prev.offsetWidth + next.offsetWidth
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.711.0",
4
+ "version": "6.712.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -95,8 +95,6 @@ class nxSplitter extends HTMLElement {
95
95
  window.removeEventListener("mouseup", onUp);
96
96
  dragBar.remove();
97
97
 
98
- const splitterSize = this.#mode === "h" ? this.offsetWidth : this.offsetHeight;
99
-
100
98
  // 기준: prev + next 너비 합계
101
99
  const totalSize = this.#mode === "h"
102
100
  ? prev.offsetWidth + next.offsetWidth