ninegrid2 6.1032.0 → 6.1033.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.
@@ -121888,19 +121888,11 @@ class NxLayout extends HTMLElement {
121888
121888
  const columnsLayout = (this.getAttribute('columns') || '1').split(',').map(Number);
121889
121889
  const numRows = columnsLayout.length;
121890
121890
 
121891
- let gridRows = '';
121892
- for (let i = 0; i < numRows; i++) {
121893
- gridRows += '1fr ';
121894
- if (i < numRows - 1) {
121895
- gridRows += '8px '; // 세로 스플리터 높이
121896
- }
121897
- }
121898
-
121899
121891
  this.style.display = 'flex';
121900
121892
  this.style["flex-direction"] = 'column';
121901
121893
  this.style.width = '100%';
121902
121894
  this.style.height = '100%';
121903
- this.style.gridTemplateRows = gridRows.trim();
121895
+ //this.style.gridTemplateRows = gridRows.trim();
121904
121896
 
121905
121897
  let childIndex = 0;
121906
121898
 
@@ -121884,19 +121884,11 @@ class NxLayout extends HTMLElement {
121884
121884
  const columnsLayout = (this.getAttribute('columns') || '1').split(',').map(Number);
121885
121885
  const numRows = columnsLayout.length;
121886
121886
 
121887
- let gridRows = '';
121888
- for (let i = 0; i < numRows; i++) {
121889
- gridRows += '1fr ';
121890
- if (i < numRows - 1) {
121891
- gridRows += '8px '; // 세로 스플리터 높이
121892
- }
121893
- }
121894
-
121895
121887
  this.style.display = 'flex';
121896
121888
  this.style["flex-direction"] = 'column';
121897
121889
  this.style.width = '100%';
121898
121890
  this.style.height = '100%';
121899
- this.style.gridTemplateRows = gridRows.trim();
121891
+ //this.style.gridTemplateRows = gridRows.trim();
121900
121892
 
121901
121893
  let childIndex = 0;
121902
121894
 
@@ -52,7 +52,7 @@ class NxLayout extends HTMLElement {
52
52
  this.style["flex-direction"] = 'column';
53
53
  this.style.width = '100%';
54
54
  this.style.height = '100%';
55
- this.style.gridTemplateRows = gridRows.trim();
55
+ //this.style.gridTemplateRows = gridRows.trim();
56
56
 
57
57
  let childIndex = 0;
58
58
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.1032.0",
4
+ "version": "6.1033.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -52,7 +52,7 @@ class NxLayout extends HTMLElement {
52
52
  this.style["flex-direction"] = 'column';
53
53
  this.style.width = '100%';
54
54
  this.style.height = '100%';
55
- this.style.gridTemplateRows = gridRows.trim();
55
+ //this.style.gridTemplateRows = gridRows.trim();
56
56
 
57
57
  let childIndex = 0;
58
58