ninegrid2 6.1076.0 → 6.1077.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
|
@@ -121494,6 +121494,8 @@ class nxSplitter extends HTMLElement {
|
|
|
121494
121494
|
const newPrevSize = prevSize + dragOffset;
|
|
121495
121495
|
const newNextSize = nextSize - dragOffset;
|
|
121496
121496
|
|
|
121497
|
+
console.log(prevSize, nextSize, newPrevSize, newNextSize);
|
|
121498
|
+
|
|
121497
121499
|
const initialSizes = allPanels.map(panel => isHorizontal ? panel.getBoundingClientRect().width : panel.getBoundingClientRect().height);
|
|
121498
121500
|
|
|
121499
121501
|
const totalSplitterSize = allChildren.reduce((sum, child) => {
|
package/dist/bundle.esm.js
CHANGED
|
@@ -121490,6 +121490,8 @@ class nxSplitter extends HTMLElement {
|
|
|
121490
121490
|
const newPrevSize = prevSize + dragOffset;
|
|
121491
121491
|
const newNextSize = nextSize - dragOffset;
|
|
121492
121492
|
|
|
121493
|
+
console.log(prevSize, nextSize, newPrevSize, newNextSize);
|
|
121494
|
+
|
|
121493
121495
|
const initialSizes = allPanels.map(panel => isHorizontal ? panel.getBoundingClientRect().width : panel.getBoundingClientRect().height);
|
|
121494
121496
|
|
|
121495
121497
|
const totalSplitterSize = allChildren.reduce((sum, child) => {
|
package/dist/nx/nxSplitter.js
CHANGED
|
@@ -127,6 +127,8 @@ class nxSplitter extends HTMLElement {
|
|
|
127
127
|
const newPrevSize = prevSize + dragOffset;
|
|
128
128
|
const newNextSize = nextSize - dragOffset;
|
|
129
129
|
|
|
130
|
+
console.log(prevSize, nextSize, newPrevSize, newNextSize);
|
|
131
|
+
|
|
130
132
|
const initialSizes = allPanels.map(panel => isHorizontal ? panel.getBoundingClientRect().width : panel.getBoundingClientRect().height);
|
|
131
133
|
|
|
132
134
|
const totalSplitterSize = allChildren.reduce((sum, child) => {
|
package/package.json
CHANGED
package/src/nx/nxSplitter.js
CHANGED
|
@@ -127,6 +127,8 @@ class nxSplitter extends HTMLElement {
|
|
|
127
127
|
const newPrevSize = prevSize + dragOffset;
|
|
128
128
|
const newNextSize = nextSize - dragOffset;
|
|
129
129
|
|
|
130
|
+
console.log(prevSize, nextSize, newPrevSize, newNextSize);
|
|
131
|
+
|
|
130
132
|
const initialSizes = allPanels.map(panel => isHorizontal ? panel.getBoundingClientRect().width : panel.getBoundingClientRect().height);
|
|
131
133
|
|
|
132
134
|
const totalSplitterSize = allChildren.reduce((sum, child) => {
|