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