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.
@@ -121896,7 +121896,8 @@ class NxLayout extends HTMLElement {
121896
121896
  }
121897
121897
  }
121898
121898
 
121899
- this.style.display = 'grid';
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();
@@ -121892,7 +121892,8 @@ class NxLayout extends HTMLElement {
121892
121892
  }
121893
121893
  }
121894
121894
 
121895
- this.style.display = 'grid';
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();
@@ -48,7 +48,8 @@ class NxLayout extends HTMLElement {
48
48
  }
49
49
  }
50
50
 
51
- this.style.display = 'grid';
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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.1031.0",
4
+ "version": "6.1032.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -48,7 +48,8 @@ class NxLayout extends HTMLElement {
48
48
  }
49
49
  }
50
50
 
51
- this.style.display = 'grid';
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();