ninegrid2 6.667.0 → 6.668.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 +3 -2
- package/dist/bundle.esm.js +3 -2
- package/dist/nx/nxSplitter.js +3 -2
- package/package.json +1 -1
- package/src/nx/nxSplitter.js +3 -2
package/dist/bundle.cjs.js
CHANGED
|
@@ -121135,8 +121135,9 @@ class nxSplitter extends HTMLElement {
|
|
|
121135
121135
|
this.shadowRoot.appendChild(htmlTmpl.content.cloneNode(true));
|
|
121136
121136
|
|
|
121137
121137
|
// grip 이벤트 바인딩
|
|
121138
|
-
this.shadowRoot.querySelectorAll(".grid-h,.grid-v").forEach(
|
|
121139
|
-
|
|
121138
|
+
this.shadowRoot.querySelectorAll(".grid-h,.grid-v").forEach(el => {
|
|
121139
|
+
console.log(el);
|
|
121140
|
+
el.addEventListener("mousedown", e => this.#startDrag(e));
|
|
121140
121141
|
});
|
|
121141
121142
|
}
|
|
121142
121143
|
}
|
package/dist/bundle.esm.js
CHANGED
|
@@ -121131,8 +121131,9 @@ class nxSplitter extends HTMLElement {
|
|
|
121131
121131
|
this.shadowRoot.appendChild(htmlTmpl.content.cloneNode(true));
|
|
121132
121132
|
|
|
121133
121133
|
// grip 이벤트 바인딩
|
|
121134
|
-
this.shadowRoot.querySelectorAll(".grid-h,.grid-v").forEach(
|
|
121135
|
-
|
|
121134
|
+
this.shadowRoot.querySelectorAll(".grid-h,.grid-v").forEach(el => {
|
|
121135
|
+
console.log(el);
|
|
121136
|
+
el.addEventListener("mousedown", e => this.#startDrag(e));
|
|
121136
121137
|
});
|
|
121137
121138
|
}
|
|
121138
121139
|
}
|
package/dist/nx/nxSplitter.js
CHANGED
|
@@ -90,8 +90,9 @@ class nxSplitter extends HTMLElement {
|
|
|
90
90
|
this.shadowRoot.appendChild(htmlTmpl.content.cloneNode(true));
|
|
91
91
|
|
|
92
92
|
// grip 이벤트 바인딩
|
|
93
|
-
this.shadowRoot.querySelectorAll(".grid-h,.grid-v").forEach(
|
|
94
|
-
|
|
93
|
+
this.shadowRoot.querySelectorAll(".grid-h,.grid-v").forEach(el => {
|
|
94
|
+
console.log(el);
|
|
95
|
+
el.addEventListener("mousedown", e => this.#startDrag(e));
|
|
95
96
|
});
|
|
96
97
|
}
|
|
97
98
|
}
|
package/package.json
CHANGED
package/src/nx/nxSplitter.js
CHANGED
|
@@ -90,8 +90,9 @@ class nxSplitter extends HTMLElement {
|
|
|
90
90
|
this.shadowRoot.appendChild(htmlTmpl.content.cloneNode(true));
|
|
91
91
|
|
|
92
92
|
// grip 이벤트 바인딩
|
|
93
|
-
this.shadowRoot.querySelectorAll(".grid-h,.grid-v").forEach(
|
|
94
|
-
|
|
93
|
+
this.shadowRoot.querySelectorAll(".grid-h,.grid-v").forEach(el => {
|
|
94
|
+
console.log(el);
|
|
95
|
+
el.addEventListener("mousedown", e => this.#startDrag(e));
|
|
95
96
|
});
|
|
96
97
|
}
|
|
97
98
|
}
|