ninegrid2 6.782.0 → 6.784.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.
@@ -120933,6 +120933,7 @@ class nxCollapse extends HTMLElement {
120933
120933
 
120934
120934
  // 복원 시 target 보이고 복원 버튼 사라짐
120935
120935
  this.shadowRoot.querySelector("button").addEventListener("click", () => {
120936
+ this.#target.classList.remove("fade-out");
120936
120937
  this.#target.style.display = this.#targetPrevDisplay;
120937
120938
  this.style.display = "none";
120938
120939
  });
@@ -120929,6 +120929,7 @@ class nxCollapse extends HTMLElement {
120929
120929
 
120930
120930
  // 복원 시 target 보이고 복원 버튼 사라짐
120931
120931
  this.shadowRoot.querySelector("button").addEventListener("click", () => {
120932
+ this.#target.classList.remove("fade-out");
120932
120933
  this.#target.style.display = this.#targetPrevDisplay;
120933
120934
  this.style.display = "none";
120934
120935
  });
@@ -88,6 +88,7 @@ class nxCollapse extends HTMLElement {
88
88
 
89
89
  // 복원 시 target 보이고 복원 버튼 사라짐
90
90
  this.shadowRoot.querySelector("button").addEventListener("click", () => {
91
+ this.#target.classList.remove("fade-out");
91
92
  this.#target.style.display = this.#targetPrevDisplay;
92
93
  this.style.display = "none";
93
94
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.782.0",
4
+ "version": "6.784.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -88,6 +88,7 @@ class nxCollapse extends HTMLElement {
88
88
 
89
89
  // 복원 시 target 보이고 복원 버튼 사라짐
90
90
  this.shadowRoot.querySelector("button").addEventListener("click", () => {
91
+ this.#target.classList.remove("fade-out");
91
92
  this.#target.style.display = this.#targetPrevDisplay;
92
93
  this.style.display = "none";
93
94
  });