ninegrid2 6.800.0 → 6.802.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.
@@ -120935,12 +120935,12 @@ class nxCollapse extends HTMLElement {
120935
120935
  collapseBtn.addEventListener("click", () => {
120936
120936
  // fade-out 클래스 먼저 넣고 → 일정 시간 후 display: none
120937
120937
  // STEP 1: 복원 버튼 애니메이션 시작 (살짝 빠르게 먼저 등장)
120938
- this.style.display = "inline-block";
120939
120938
  this.#target.classList.add("shrinking");
120940
120939
 
120941
120940
  setTimeout(() => {
120942
120941
  // STEP 2: target이 줄어드는 shrinking 애니메이션 시작
120943
120942
  this.classList.add("appearing");
120943
+ this.style.display = "inline-block";
120944
120944
  }, 300); // appearing 시작 후 100ms 딜레이로 target 축소 시작
120945
120945
 
120946
120946
  setTimeout(() => {
@@ -120931,12 +120931,12 @@ class nxCollapse extends HTMLElement {
120931
120931
  collapseBtn.addEventListener("click", () => {
120932
120932
  // fade-out 클래스 먼저 넣고 → 일정 시간 후 display: none
120933
120933
  // STEP 1: 복원 버튼 애니메이션 시작 (살짝 빠르게 먼저 등장)
120934
- this.style.display = "inline-block";
120935
120934
  this.#target.classList.add("shrinking");
120936
120935
 
120937
120936
  setTimeout(() => {
120938
120937
  // STEP 2: target이 줄어드는 shrinking 애니메이션 시작
120939
120938
  this.classList.add("appearing");
120939
+ this.style.display = "inline-block";
120940
120940
  }, 300); // appearing 시작 후 100ms 딜레이로 target 축소 시작
120941
120941
 
120942
120942
  setTimeout(() => {
@@ -90,12 +90,12 @@ class nxCollapse extends HTMLElement {
90
90
  collapseBtn.addEventListener("click", () => {
91
91
  // fade-out 클래스 먼저 넣고 → 일정 시간 후 display: none
92
92
  // STEP 1: 복원 버튼 애니메이션 시작 (살짝 빠르게 먼저 등장)
93
- this.style.display = "inline-block";
94
93
  this.#target.classList.add("shrinking");
95
94
 
96
95
  setTimeout(() => {
97
96
  // STEP 2: target이 줄어드는 shrinking 애니메이션 시작
98
97
  this.classList.add("appearing");
98
+ this.style.display = "inline-block";
99
99
  }, 300); // appearing 시작 후 100ms 딜레이로 target 축소 시작
100
100
 
101
101
  setTimeout(() => {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.800.0",
4
+ "version": "6.802.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -90,12 +90,12 @@ class nxCollapse extends HTMLElement {
90
90
  collapseBtn.addEventListener("click", () => {
91
91
  // fade-out 클래스 먼저 넣고 → 일정 시간 후 display: none
92
92
  // STEP 1: 복원 버튼 애니메이션 시작 (살짝 빠르게 먼저 등장)
93
- this.style.display = "inline-block";
94
93
  this.#target.classList.add("shrinking");
95
94
 
96
95
  setTimeout(() => {
97
96
  // STEP 2: target이 줄어드는 shrinking 애니메이션 시작
98
97
  this.classList.add("appearing");
98
+ this.style.display = "inline-block";
99
99
  }, 300); // appearing 시작 후 100ms 딜레이로 target 축소 시작
100
100
 
101
101
  setTimeout(() => {