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.
@@ -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) => {
@@ -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) => {
@@ -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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.1076.0",
4
+ "version": "6.1077.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -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) => {