ninegrid2 6.693.0 → 6.694.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
|
@@ -121145,6 +121145,8 @@ class nxSplitter extends HTMLElement {
|
|
|
121145
121145
|
? e.clientX - prevRect.left
|
|
121146
121146
|
: e.clientY - prevRect.top;
|
|
121147
121147
|
|
|
121148
|
+
console.log(e.clientX, prevRect.left, delta);
|
|
121149
|
+
|
|
121148
121150
|
if (this.#mode === "h") {
|
|
121149
121151
|
prev.style.width = `${delta}px`;
|
|
121150
121152
|
|
package/dist/bundle.esm.js
CHANGED
|
@@ -121141,6 +121141,8 @@ class nxSplitter extends HTMLElement {
|
|
|
121141
121141
|
? e.clientX - prevRect.left
|
|
121142
121142
|
: e.clientY - prevRect.top;
|
|
121143
121143
|
|
|
121144
|
+
console.log(e.clientX, prevRect.left, delta);
|
|
121145
|
+
|
|
121144
121146
|
if (this.#mode === "h") {
|
|
121145
121147
|
prev.style.width = `${delta}px`;
|
|
121146
121148
|
|
package/dist/nx/nxSplitter.js
CHANGED
package/package.json
CHANGED
package/src/nx/nxSplitter.js
CHANGED