ninegrid2 6.1031.0 → 6.1032.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 -1
- package/dist/bundle.esm.js +2 -1
- package/dist/nx/nxLayout.js +2 -1
- package/package.json +1 -1
- package/src/nx/nxLayout.js +2 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -121896,7 +121896,8 @@ class NxLayout extends HTMLElement {
|
|
|
121896
121896
|
}
|
|
121897
121897
|
}
|
|
121898
121898
|
|
|
121899
|
-
this.style.display = '
|
|
121899
|
+
this.style.display = 'flex';
|
|
121900
|
+
this.style["flex-direction"] = 'column';
|
|
121900
121901
|
this.style.width = '100%';
|
|
121901
121902
|
this.style.height = '100%';
|
|
121902
121903
|
this.style.gridTemplateRows = gridRows.trim();
|
package/dist/bundle.esm.js
CHANGED
|
@@ -121892,7 +121892,8 @@ class NxLayout extends HTMLElement {
|
|
|
121892
121892
|
}
|
|
121893
121893
|
}
|
|
121894
121894
|
|
|
121895
|
-
this.style.display = '
|
|
121895
|
+
this.style.display = 'flex';
|
|
121896
|
+
this.style["flex-direction"] = 'column';
|
|
121896
121897
|
this.style.width = '100%';
|
|
121897
121898
|
this.style.height = '100%';
|
|
121898
121899
|
this.style.gridTemplateRows = gridRows.trim();
|
package/dist/nx/nxLayout.js
CHANGED
|
@@ -48,7 +48,8 @@ class NxLayout extends HTMLElement {
|
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
50
|
|
|
51
|
-
this.style.display = '
|
|
51
|
+
this.style.display = 'flex';
|
|
52
|
+
this.style["flex-direction"] = 'column';
|
|
52
53
|
this.style.width = '100%';
|
|
53
54
|
this.style.height = '100%';
|
|
54
55
|
this.style.gridTemplateRows = gridRows.trim();
|
package/package.json
CHANGED
package/src/nx/nxLayout.js
CHANGED
|
@@ -48,7 +48,8 @@ class NxLayout extends HTMLElement {
|
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
50
|
|
|
51
|
-
this.style.display = '
|
|
51
|
+
this.style.display = 'flex';
|
|
52
|
+
this.style["flex-direction"] = 'column';
|
|
52
53
|
this.style.width = '100%';
|
|
53
54
|
this.style.height = '100%';
|
|
54
55
|
this.style.gridTemplateRows = gridRows.trim();
|