ninegrid2 6.790.0 → 6.792.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.
@@ -120940,9 +120940,11 @@ class nxCollapse extends HTMLElement {
120940
120940
  this.#targetPrevDisplay = this.#target.style.display;
120941
120941
  this.#target.style.display = "none";
120942
120942
  this.style.display = "inline-block";
120943
+ }, 500); // transition 시간과 맞춰서 300ms 딜레이
120943
120944
 
120945
+ setTimeout(() => {
120944
120946
  this.classList.add("appearing");
120945
- }, 500); // transition 시간과 맞춰서 300ms 딜레이
120947
+ }, 300); // transition 시간과 맞춰서 300ms 딜레이
120946
120948
  });
120947
120949
  }
120948
120950
 
@@ -120936,9 +120936,11 @@ class nxCollapse extends HTMLElement {
120936
120936
  this.#targetPrevDisplay = this.#target.style.display;
120937
120937
  this.#target.style.display = "none";
120938
120938
  this.style.display = "inline-block";
120939
+ }, 500); // transition 시간과 맞춰서 300ms 딜레이
120939
120940
 
120941
+ setTimeout(() => {
120940
120942
  this.classList.add("appearing");
120941
- }, 500); // transition 시간과 맞춰서 300ms 딜레이
120943
+ }, 300); // transition 시간과 맞춰서 300ms 딜레이
120942
120944
  });
120943
120945
  }
120944
120946
 
@@ -95,9 +95,11 @@ class nxCollapse extends HTMLElement {
95
95
  this.#targetPrevDisplay = this.#target.style.display;
96
96
  this.#target.style.display = "none";
97
97
  this.style.display = "inline-block";
98
+ }, 500); // transition 시간과 맞춰서 300ms 딜레이
98
99
 
100
+ setTimeout(() => {
99
101
  this.classList.add("appearing");
100
- }, 500); // transition 시간과 맞춰서 300ms 딜레이
102
+ }, 300); // transition 시간과 맞춰서 300ms 딜레이
101
103
  });
102
104
  }
103
105
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.790.0",
4
+ "version": "6.792.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -95,9 +95,11 @@ class nxCollapse extends HTMLElement {
95
95
  this.#targetPrevDisplay = this.#target.style.display;
96
96
  this.#target.style.display = "none";
97
97
  this.style.display = "inline-block";
98
+ }, 500); // transition 시간과 맞춰서 300ms 딜레이
98
99
 
100
+ setTimeout(() => {
99
101
  this.classList.add("appearing");
100
- }, 500); // transition 시간과 맞춰서 300ms 딜레이
102
+ }, 300); // transition 시간과 맞춰서 300ms 딜레이
101
103
  });
102
104
  }
103
105