ninegrid2 6.809.0 → 6.811.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 +4 -2
- package/dist/bundle.esm.js +4 -2
- package/dist/nx/nxCollapse.js +4 -2
- package/package.json +1 -1
- package/src/nx/nxCollapse.js +4 -2
package/dist/bundle.cjs.js
CHANGED
|
@@ -120955,7 +120955,7 @@ class nxCollapse extends HTMLElement {
|
|
|
120955
120955
|
|
|
120956
120956
|
setTimeout(() => {
|
|
120957
120957
|
// STEP 2: target이 줄어드는 shrinking 애니메이션 시작
|
|
120958
|
-
this.style.display = "inline-block";
|
|
120958
|
+
//this.style.display = "inline-block";
|
|
120959
120959
|
this.classList.add("nx-collapse");
|
|
120960
120960
|
}, 100); // appearing 시작 후 100ms 딜레이로 target 축소 시작
|
|
120961
120961
|
|
|
@@ -120985,6 +120985,7 @@ class nxCollapse extends HTMLElement {
|
|
|
120985
120985
|
setTimeout(() => {
|
|
120986
120986
|
// STEP 2: target이 줄어드는 shrinking 애니메이션 시작
|
|
120987
120987
|
this.classList.remove("nx-collapse");
|
|
120988
|
+
//this.style.display = "inline-block";
|
|
120988
120989
|
this.classList.add("nx-expand");
|
|
120989
120990
|
}, 100); // appearing 시작 후 100ms 딜레이로 target 축소 시작
|
|
120990
120991
|
|
|
@@ -120992,10 +120993,11 @@ class nxCollapse extends HTMLElement {
|
|
|
120992
120993
|
setTimeout(() => {
|
|
120993
120994
|
// STEP 2: 실제 화면에 표시
|
|
120994
120995
|
this.#target.style.display = this.#targetPrevDisplay;
|
|
120995
|
-
this.style.display = "none"; // 복원 버튼은 사라짐
|
|
120996
|
+
//this.style.display = "none"; // 복원 버튼은 사라짐
|
|
120996
120997
|
|
|
120997
120998
|
// STEP 3: 애니메이션이 끝난 후 pointer-events 복구 (선택적)
|
|
120998
120999
|
this.#target.classList.remove("nx-expand");
|
|
121000
|
+
this.classList.remove("nx-expand");
|
|
120999
121001
|
//this.#target.style.pointerEvents = "auto";
|
|
121000
121002
|
}, 600); // 애니메이션과 동일한 시간
|
|
121001
121003
|
});
|
package/dist/bundle.esm.js
CHANGED
|
@@ -120951,7 +120951,7 @@ class nxCollapse extends HTMLElement {
|
|
|
120951
120951
|
|
|
120952
120952
|
setTimeout(() => {
|
|
120953
120953
|
// STEP 2: target이 줄어드는 shrinking 애니메이션 시작
|
|
120954
|
-
this.style.display = "inline-block";
|
|
120954
|
+
//this.style.display = "inline-block";
|
|
120955
120955
|
this.classList.add("nx-collapse");
|
|
120956
120956
|
}, 100); // appearing 시작 후 100ms 딜레이로 target 축소 시작
|
|
120957
120957
|
|
|
@@ -120981,6 +120981,7 @@ class nxCollapse extends HTMLElement {
|
|
|
120981
120981
|
setTimeout(() => {
|
|
120982
120982
|
// STEP 2: target이 줄어드는 shrinking 애니메이션 시작
|
|
120983
120983
|
this.classList.remove("nx-collapse");
|
|
120984
|
+
//this.style.display = "inline-block";
|
|
120984
120985
|
this.classList.add("nx-expand");
|
|
120985
120986
|
}, 100); // appearing 시작 후 100ms 딜레이로 target 축소 시작
|
|
120986
120987
|
|
|
@@ -120988,10 +120989,11 @@ class nxCollapse extends HTMLElement {
|
|
|
120988
120989
|
setTimeout(() => {
|
|
120989
120990
|
// STEP 2: 실제 화면에 표시
|
|
120990
120991
|
this.#target.style.display = this.#targetPrevDisplay;
|
|
120991
|
-
this.style.display = "none"; // 복원 버튼은 사라짐
|
|
120992
|
+
//this.style.display = "none"; // 복원 버튼은 사라짐
|
|
120992
120993
|
|
|
120993
120994
|
// STEP 3: 애니메이션이 끝난 후 pointer-events 복구 (선택적)
|
|
120994
120995
|
this.#target.classList.remove("nx-expand");
|
|
120996
|
+
this.classList.remove("nx-expand");
|
|
120995
120997
|
//this.#target.style.pointerEvents = "auto";
|
|
120996
120998
|
}, 600); // 애니메이션과 동일한 시간
|
|
120997
120999
|
});
|
package/dist/nx/nxCollapse.js
CHANGED
|
@@ -110,7 +110,7 @@ class nxCollapse extends HTMLElement {
|
|
|
110
110
|
|
|
111
111
|
setTimeout(() => {
|
|
112
112
|
// STEP 2: target이 줄어드는 shrinking 애니메이션 시작
|
|
113
|
-
this.style.display = "inline-block";
|
|
113
|
+
//this.style.display = "inline-block";
|
|
114
114
|
this.classList.add("nx-collapse");
|
|
115
115
|
}, 100); // appearing 시작 후 100ms 딜레이로 target 축소 시작
|
|
116
116
|
|
|
@@ -140,6 +140,7 @@ class nxCollapse extends HTMLElement {
|
|
|
140
140
|
setTimeout(() => {
|
|
141
141
|
// STEP 2: target이 줄어드는 shrinking 애니메이션 시작
|
|
142
142
|
this.classList.remove("nx-collapse");
|
|
143
|
+
//this.style.display = "inline-block";
|
|
143
144
|
this.classList.add("nx-expand");
|
|
144
145
|
}, 100); // appearing 시작 후 100ms 딜레이로 target 축소 시작
|
|
145
146
|
|
|
@@ -147,10 +148,11 @@ class nxCollapse extends HTMLElement {
|
|
|
147
148
|
setTimeout(() => {
|
|
148
149
|
// STEP 2: 실제 화면에 표시
|
|
149
150
|
this.#target.style.display = this.#targetPrevDisplay;
|
|
150
|
-
this.style.display = "none"; // 복원 버튼은 사라짐
|
|
151
|
+
//this.style.display = "none"; // 복원 버튼은 사라짐
|
|
151
152
|
|
|
152
153
|
// STEP 3: 애니메이션이 끝난 후 pointer-events 복구 (선택적)
|
|
153
154
|
this.#target.classList.remove("nx-expand");
|
|
155
|
+
this.classList.remove("nx-expand");
|
|
154
156
|
//this.#target.style.pointerEvents = "auto";
|
|
155
157
|
}, 600); // 애니메이션과 동일한 시간
|
|
156
158
|
});
|
package/package.json
CHANGED
package/src/nx/nxCollapse.js
CHANGED
|
@@ -110,7 +110,7 @@ class nxCollapse extends HTMLElement {
|
|
|
110
110
|
|
|
111
111
|
setTimeout(() => {
|
|
112
112
|
// STEP 2: target이 줄어드는 shrinking 애니메이션 시작
|
|
113
|
-
this.style.display = "inline-block";
|
|
113
|
+
//this.style.display = "inline-block";
|
|
114
114
|
this.classList.add("nx-collapse");
|
|
115
115
|
}, 100); // appearing 시작 후 100ms 딜레이로 target 축소 시작
|
|
116
116
|
|
|
@@ -140,6 +140,7 @@ class nxCollapse extends HTMLElement {
|
|
|
140
140
|
setTimeout(() => {
|
|
141
141
|
// STEP 2: target이 줄어드는 shrinking 애니메이션 시작
|
|
142
142
|
this.classList.remove("nx-collapse");
|
|
143
|
+
//this.style.display = "inline-block";
|
|
143
144
|
this.classList.add("nx-expand");
|
|
144
145
|
}, 100); // appearing 시작 후 100ms 딜레이로 target 축소 시작
|
|
145
146
|
|
|
@@ -147,10 +148,11 @@ class nxCollapse extends HTMLElement {
|
|
|
147
148
|
setTimeout(() => {
|
|
148
149
|
// STEP 2: 실제 화면에 표시
|
|
149
150
|
this.#target.style.display = this.#targetPrevDisplay;
|
|
150
|
-
this.style.display = "none"; // 복원 버튼은 사라짐
|
|
151
|
+
//this.style.display = "none"; // 복원 버튼은 사라짐
|
|
151
152
|
|
|
152
153
|
// STEP 3: 애니메이션이 끝난 후 pointer-events 복구 (선택적)
|
|
153
154
|
this.#target.classList.remove("nx-expand");
|
|
155
|
+
this.classList.remove("nx-expand");
|
|
154
156
|
//this.#target.style.pointerEvents = "auto";
|
|
155
157
|
}, 600); // 애니메이션과 동일한 시간
|
|
156
158
|
});
|