ninegrid2 6.962.0 → 6.964.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 +6 -0
- package/dist/bundle.esm.js +6 -0
- package/dist/nx/nxLayout.js +6 -0
- package/package.json +1 -1
- package/src/nx/nxLayout.js +6 -0
package/dist/bundle.cjs.js
CHANGED
|
@@ -121949,7 +121949,13 @@ class NxLayout extends HTMLElement {
|
|
|
121949
121949
|
|
|
121950
121950
|
for (let row = 0; row < numRows; row++) {
|
|
121951
121951
|
for (let col = 0; col < numColumns; col++) {
|
|
121952
|
+
|
|
121953
|
+
console.log(row, col, childIndex);
|
|
121954
|
+
|
|
121952
121955
|
if (children[childIndex]) {
|
|
121956
|
+
|
|
121957
|
+
console.log(children[childIndex]);
|
|
121958
|
+
|
|
121953
121959
|
const childWrapper = document.createElement('div');
|
|
121954
121960
|
childWrapper.style.width = '100%';
|
|
121955
121961
|
childWrapper.style.height = '100%';
|
package/dist/bundle.esm.js
CHANGED
|
@@ -121945,7 +121945,13 @@ class NxLayout extends HTMLElement {
|
|
|
121945
121945
|
|
|
121946
121946
|
for (let row = 0; row < numRows; row++) {
|
|
121947
121947
|
for (let col = 0; col < numColumns; col++) {
|
|
121948
|
+
|
|
121949
|
+
console.log(row, col, childIndex);
|
|
121950
|
+
|
|
121948
121951
|
if (children[childIndex]) {
|
|
121952
|
+
|
|
121953
|
+
console.log(children[childIndex]);
|
|
121954
|
+
|
|
121949
121955
|
const childWrapper = document.createElement('div');
|
|
121950
121956
|
childWrapper.style.width = '100%';
|
|
121951
121957
|
childWrapper.style.height = '100%';
|
package/dist/nx/nxLayout.js
CHANGED
|
@@ -58,7 +58,13 @@ class NxLayout extends HTMLElement {
|
|
|
58
58
|
|
|
59
59
|
for (let row = 0; row < numRows; row++) {
|
|
60
60
|
for (let col = 0; col < numColumns; col++) {
|
|
61
|
+
|
|
62
|
+
console.log(row, col, childIndex);
|
|
63
|
+
|
|
61
64
|
if (children[childIndex]) {
|
|
65
|
+
|
|
66
|
+
console.log(children[childIndex]);
|
|
67
|
+
|
|
62
68
|
const childWrapper = document.createElement('div');
|
|
63
69
|
childWrapper.style.width = '100%';
|
|
64
70
|
childWrapper.style.height = '100%';
|
package/package.json
CHANGED
package/src/nx/nxLayout.js
CHANGED
|
@@ -58,7 +58,13 @@ class NxLayout extends HTMLElement {
|
|
|
58
58
|
|
|
59
59
|
for (let row = 0; row < numRows; row++) {
|
|
60
60
|
for (let col = 0; col < numColumns; col++) {
|
|
61
|
+
|
|
62
|
+
console.log(row, col, childIndex);
|
|
63
|
+
|
|
61
64
|
if (children[childIndex]) {
|
|
65
|
+
|
|
66
|
+
console.log(children[childIndex]);
|
|
67
|
+
|
|
62
68
|
const childWrapper = document.createElement('div');
|
|
63
69
|
childWrapper.style.width = '100%';
|
|
64
70
|
childWrapper.style.height = '100%';
|