ninegrid2 6.809.0 → 6.810.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.
@@ -120984,7 +120984,7 @@ class nxCollapse extends HTMLElement {
120984
120984
 
120985
120985
  setTimeout(() => {
120986
120986
  // STEP 2: target이 줄어드는 shrinking 애니메이션 시작
120987
- this.classList.remove("nx-collapse");
120987
+ //this.classList.remove("nx-collapse");
120988
120988
  this.classList.add("nx-expand");
120989
120989
  }, 100); // appearing 시작 후 100ms 딜레이로 target 축소 시작
120990
120990
 
@@ -120980,7 +120980,7 @@ class nxCollapse extends HTMLElement {
120980
120980
 
120981
120981
  setTimeout(() => {
120982
120982
  // STEP 2: target이 줄어드는 shrinking 애니메이션 시작
120983
- this.classList.remove("nx-collapse");
120983
+ //this.classList.remove("nx-collapse");
120984
120984
  this.classList.add("nx-expand");
120985
120985
  }, 100); // appearing 시작 후 100ms 딜레이로 target 축소 시작
120986
120986
 
@@ -139,7 +139,7 @@ class nxCollapse extends HTMLElement {
139
139
 
140
140
  setTimeout(() => {
141
141
  // STEP 2: target이 줄어드는 shrinking 애니메이션 시작
142
- this.classList.remove("nx-collapse");
142
+ //this.classList.remove("nx-collapse");
143
143
  this.classList.add("nx-expand");
144
144
  }, 100); // appearing 시작 후 100ms 딜레이로 target 축소 시작
145
145
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.809.0",
4
+ "version": "6.810.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -139,7 +139,7 @@ class nxCollapse extends HTMLElement {
139
139
 
140
140
  setTimeout(() => {
141
141
  // STEP 2: target이 줄어드는 shrinking 애니메이션 시작
142
- this.classList.remove("nx-collapse");
142
+ //this.classList.remove("nx-collapse");
143
143
  this.classList.add("nx-expand");
144
144
  }, 100); // appearing 시작 후 100ms 딜레이로 target 축소 시작
145
145