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