ninegrid2 6.1101.0 → 6.1103.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 -2
- package/dist/bundle.esm.js +2 -2
- package/dist/nx/nxLayout.js +2 -2
- package/package.json +1 -1
- package/src/nx/nxLayout.js +2 -2
package/dist/bundle.cjs.js
CHANGED
|
@@ -121908,8 +121908,8 @@ class NxLayout extends HTMLElement {
|
|
|
121908
121908
|
// 메인 컨테이너를 Flexbox로 설정
|
|
121909
121909
|
this.style.display = 'flex';
|
|
121910
121910
|
this.style.flexDirection = 'column'; // 'flex-direction' 대신 CamelCase 사용
|
|
121911
|
-
|
|
121912
|
-
|
|
121911
|
+
this.style.width = '100%';
|
|
121912
|
+
this.style.height = '100%';
|
|
121913
121913
|
//this.style.overflow = 'hidden'; // 부모 요소에 스크롤 방지
|
|
121914
121914
|
|
|
121915
121915
|
let childIndex = 0;
|
package/dist/bundle.esm.js
CHANGED
|
@@ -121904,8 +121904,8 @@ class NxLayout extends HTMLElement {
|
|
|
121904
121904
|
// 메인 컨테이너를 Flexbox로 설정
|
|
121905
121905
|
this.style.display = 'flex';
|
|
121906
121906
|
this.style.flexDirection = 'column'; // 'flex-direction' 대신 CamelCase 사용
|
|
121907
|
-
|
|
121908
|
-
|
|
121907
|
+
this.style.width = '100%';
|
|
121908
|
+
this.style.height = '100%';
|
|
121909
121909
|
//this.style.overflow = 'hidden'; // 부모 요소에 스크롤 방지
|
|
121910
121910
|
|
|
121911
121911
|
let childIndex = 0;
|
package/dist/nx/nxLayout.js
CHANGED
|
@@ -38,8 +38,8 @@ class NxLayout extends HTMLElement {
|
|
|
38
38
|
// 메인 컨테이너를 Flexbox로 설정
|
|
39
39
|
this.style.display = 'flex';
|
|
40
40
|
this.style.flexDirection = 'column'; // 'flex-direction' 대신 CamelCase 사용
|
|
41
|
-
|
|
42
|
-
|
|
41
|
+
this.style.width = '100%';
|
|
42
|
+
this.style.height = '100%';
|
|
43
43
|
//this.style.overflow = 'hidden'; // 부모 요소에 스크롤 방지
|
|
44
44
|
|
|
45
45
|
let childIndex = 0;
|
package/package.json
CHANGED
package/src/nx/nxLayout.js
CHANGED
|
@@ -38,8 +38,8 @@ class NxLayout extends HTMLElement {
|
|
|
38
38
|
// 메인 컨테이너를 Flexbox로 설정
|
|
39
39
|
this.style.display = 'flex';
|
|
40
40
|
this.style.flexDirection = 'column'; // 'flex-direction' 대신 CamelCase 사용
|
|
41
|
-
|
|
42
|
-
|
|
41
|
+
this.style.width = '100%';
|
|
42
|
+
this.style.height = '100%';
|
|
43
43
|
//this.style.overflow = 'hidden'; // 부모 요소에 스크롤 방지
|
|
44
44
|
|
|
45
45
|
let childIndex = 0;
|