ninegrid2 6.834.0 → 6.836.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 +1 -1
- package/dist/bundle.esm.js +1 -1
- package/dist/nx/nxSplitter.js +1 -1
- package/package.json +1 -1
- package/src/nx/nxSplitter.js +1 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -121210,7 +121210,7 @@ class nxSplitter extends HTMLElement {
|
|
|
121210
121210
|
const left = e.clientX - parentRect.left + paddingLeft;
|
|
121211
121211
|
const top = e.clientY - parentRect.top + paddingTop;
|
|
121212
121212
|
|
|
121213
|
-
console.log(left, top);
|
|
121213
|
+
console.log("------", left, top);
|
|
121214
121214
|
|
|
121215
121215
|
// 방향별 위치 설정
|
|
121216
121216
|
if (this.#mode === "h") {
|
package/dist/bundle.esm.js
CHANGED
|
@@ -121206,7 +121206,7 @@ class nxSplitter extends HTMLElement {
|
|
|
121206
121206
|
const left = e.clientX - parentRect.left + paddingLeft;
|
|
121207
121207
|
const top = e.clientY - parentRect.top + paddingTop;
|
|
121208
121208
|
|
|
121209
|
-
console.log(left, top);
|
|
121209
|
+
console.log("------", left, top);
|
|
121210
121210
|
|
|
121211
121211
|
// 방향별 위치 설정
|
|
121212
121212
|
if (this.#mode === "h") {
|
package/dist/nx/nxSplitter.js
CHANGED
|
@@ -65,7 +65,7 @@ class nxSplitter extends HTMLElement {
|
|
|
65
65
|
const left = e.clientX - parentRect.left + paddingLeft;
|
|
66
66
|
const top = e.clientY - parentRect.top + paddingTop;
|
|
67
67
|
|
|
68
|
-
console.log(left, top);
|
|
68
|
+
console.log("------", left, top);
|
|
69
69
|
|
|
70
70
|
// 방향별 위치 설정
|
|
71
71
|
if (this.#mode === "h") {
|
package/package.json
CHANGED
package/src/nx/nxSplitter.js
CHANGED
|
@@ -65,7 +65,7 @@ class nxSplitter extends HTMLElement {
|
|
|
65
65
|
const left = e.clientX - parentRect.left + paddingLeft;
|
|
66
66
|
const top = e.clientY - parentRect.top + paddingTop;
|
|
67
67
|
|
|
68
|
-
console.log(left, top);
|
|
68
|
+
console.log("------", left, top);
|
|
69
69
|
|
|
70
70
|
// 방향별 위치 설정
|
|
71
71
|
if (this.#mode === "h") {
|