ninegrid2 6.672.0 → 6.674.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 +2 -0
- package/dist/bundle.esm.js +2 -0
- package/dist/nx/nxSplitter.js +2 -0
- package/package.json +1 -1
- package/src/nx/nxSplitter.js +2 -0
package/dist/bundle.cjs.js
CHANGED
|
@@ -121104,6 +121104,8 @@ class nxSplitter extends HTMLElement {
|
|
|
121104
121104
|
const parent = this.getRootNode().host || this.parentElement;
|
|
121105
121105
|
parent.appendChild(dragBar);
|
|
121106
121106
|
|
|
121107
|
+
console.log(parent);
|
|
121108
|
+
|
|
121107
121109
|
const onMove = e => {
|
|
121108
121110
|
if (this.#mode === "h") dragBar.style.left = `${e.offsetX}px`;
|
|
121109
121111
|
else dragBar.style.top = `${e.offsetY}px`;
|
package/dist/bundle.esm.js
CHANGED
|
@@ -121100,6 +121100,8 @@ class nxSplitter extends HTMLElement {
|
|
|
121100
121100
|
const parent = this.getRootNode().host || this.parentElement;
|
|
121101
121101
|
parent.appendChild(dragBar);
|
|
121102
121102
|
|
|
121103
|
+
console.log(parent);
|
|
121104
|
+
|
|
121103
121105
|
const onMove = e => {
|
|
121104
121106
|
if (this.#mode === "h") dragBar.style.left = `${e.offsetX}px`;
|
|
121105
121107
|
else dragBar.style.top = `${e.offsetY}px`;
|
package/dist/nx/nxSplitter.js
CHANGED
|
@@ -59,6 +59,8 @@ class nxSplitter extends HTMLElement {
|
|
|
59
59
|
const parent = this.getRootNode().host || this.parentElement;
|
|
60
60
|
parent.appendChild(dragBar);
|
|
61
61
|
|
|
62
|
+
console.log(parent);
|
|
63
|
+
|
|
62
64
|
const onMove = e => {
|
|
63
65
|
if (this.#mode === "h") dragBar.style.left = `${e.offsetX}px`;
|
|
64
66
|
else dragBar.style.top = `${e.offsetY}px`;
|
package/package.json
CHANGED
package/src/nx/nxSplitter.js
CHANGED
|
@@ -59,6 +59,8 @@ class nxSplitter extends HTMLElement {
|
|
|
59
59
|
const parent = this.getRootNode().host || this.parentElement;
|
|
60
60
|
parent.appendChild(dragBar);
|
|
61
61
|
|
|
62
|
+
console.log(parent);
|
|
63
|
+
|
|
62
64
|
const onMove = e => {
|
|
63
65
|
if (this.#mode === "h") dragBar.style.left = `${e.offsetX}px`;
|
|
64
66
|
else dragBar.style.top = `${e.offsetY}px`;
|