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.
- package/dist/bundle.cjs.js +0 -2
- package/dist/bundle.esm.js +0 -2
- package/dist/nx/nxSplitter.js +0 -2
- package/package.json +1 -1
- package/src/nx/nxSplitter.js +0 -2
package/dist/bundle.cjs.js
CHANGED
|
@@ -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
|
package/dist/bundle.esm.js
CHANGED
|
@@ -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
|
package/dist/nx/nxSplitter.js
CHANGED
|
@@ -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
package/src/nx/nxSplitter.js
CHANGED
|
@@ -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
|