ninegrid2 6.782.0 → 6.783.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 +1 -0
- package/dist/bundle.esm.js +1 -0
- package/dist/nx/nxCollapse.js +1 -0
- package/package.json +1 -1
- package/src/nx/nxCollapse.js +1 -0
package/dist/bundle.cjs.js
CHANGED
|
@@ -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
|
});
|
package/dist/bundle.esm.js
CHANGED
|
@@ -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
|
});
|
package/dist/nx/nxCollapse.js
CHANGED
|
@@ -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
package/src/nx/nxCollapse.js
CHANGED
|
@@ -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
|
});
|