ninegrid2 6.1115.0 → 6.1116.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.
@@ -121992,6 +121992,7 @@ class NxLayout2 extends HTMLElement {
121992
121992
  this.style.display = 'flex';
121993
121993
  this.style.flexDirection = 'column'; // 'flex-direction' 대신 CamelCase 사용
121994
121994
  this.style.width = '100%';
121995
+ this.style.textAlign = 'left';
121995
121996
  //this.style.height = '100%';
121996
121997
  //this.style.overflow = 'hidden'; // 부모 요소에 스크롤 방지
121997
121998
 
@@ -122012,6 +122013,7 @@ class NxLayout2 extends HTMLElement {
122012
122013
  for (let col = 0; col < numColumns; col++) {
122013
122014
  if (children[childIndex]) {
122014
122015
  const panel = children[childIndex];
122016
+ panel.style.display = 'flex';
122015
122017
  panel.style.flex = '1 1 0'; // Flexbox 환경에 맞게 flex 속성 추가
122016
122018
  rowWrapper.appendChild(panel);
122017
122019
  childIndex++;
@@ -121988,6 +121988,7 @@ class NxLayout2 extends HTMLElement {
121988
121988
  this.style.display = 'flex';
121989
121989
  this.style.flexDirection = 'column'; // 'flex-direction' 대신 CamelCase 사용
121990
121990
  this.style.width = '100%';
121991
+ this.style.textAlign = 'left';
121991
121992
  //this.style.height = '100%';
121992
121993
  //this.style.overflow = 'hidden'; // 부모 요소에 스크롤 방지
121993
121994
 
@@ -122008,6 +122009,7 @@ class NxLayout2 extends HTMLElement {
122008
122009
  for (let col = 0; col < numColumns; col++) {
122009
122010
  if (children[childIndex]) {
122010
122011
  const panel = children[childIndex];
122012
+ panel.style.display = 'flex';
122011
122013
  panel.style.flex = '1 1 0'; // Flexbox 환경에 맞게 flex 속성 추가
122012
122014
  rowWrapper.appendChild(panel);
122013
122015
  childIndex++;
@@ -39,6 +39,7 @@ class NxLayout2 extends HTMLElement {
39
39
  this.style.display = 'flex';
40
40
  this.style.flexDirection = 'column'; // 'flex-direction' 대신 CamelCase 사용
41
41
  this.style.width = '100%';
42
+ this.style.textAlign = 'left';
42
43
  //this.style.height = '100%';
43
44
  //this.style.overflow = 'hidden'; // 부모 요소에 스크롤 방지
44
45
 
@@ -60,6 +61,7 @@ class NxLayout2 extends HTMLElement {
60
61
  for (let col = 0; col < numColumns; col++) {
61
62
  if (children[childIndex]) {
62
63
  const panel = children[childIndex];
64
+ panel.style.display = 'flex';
63
65
  panel.style.flex = '1 1 0'; // Flexbox 환경에 맞게 flex 속성 추가
64
66
  rowWrapper.appendChild(panel);
65
67
  childIndex++;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.1115.0",
4
+ "version": "6.1116.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -39,6 +39,7 @@ class NxLayout2 extends HTMLElement {
39
39
  this.style.display = 'flex';
40
40
  this.style.flexDirection = 'column'; // 'flex-direction' 대신 CamelCase 사용
41
41
  this.style.width = '100%';
42
+ this.style.textAlign = 'left';
42
43
  //this.style.height = '100%';
43
44
  //this.style.overflow = 'hidden'; // 부모 요소에 스크롤 방지
44
45
 
@@ -60,6 +61,7 @@ class NxLayout2 extends HTMLElement {
60
61
  for (let col = 0; col < numColumns; col++) {
61
62
  if (children[childIndex]) {
62
63
  const panel = children[childIndex];
64
+ panel.style.display = 'flex';
63
65
  panel.style.flex = '1 1 0'; // Flexbox 환경에 맞게 flex 속성 추가
64
66
  rowWrapper.appendChild(panel);
65
67
  childIndex++;