ide-assi 0.471.0 → 0.473.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
CHANGED
|
@@ -202800,6 +202800,7 @@ class IdeDiffPopup extends HTMLElement
|
|
|
202800
202800
|
|
|
202801
202801
|
console.log(chagedSource);
|
|
202802
202802
|
|
|
202803
|
+
|
|
202803
202804
|
setTimeout(() => {
|
|
202804
202805
|
for (const item of chagedSource) {
|
|
202805
202806
|
const [type, diffData] = Object.entries(item)[0]; // 예: type = "mybatis", diffData = { asis, tobe }
|
|
@@ -202823,7 +202824,7 @@ class IdeDiffPopup extends HTMLElement
|
|
|
202823
202824
|
}
|
|
202824
202825
|
|
|
202825
202826
|
this.shadowRoot.querySelector('nx-dialog')?.showModal();
|
|
202826
|
-
},
|
|
202827
|
+
}, 800);
|
|
202827
202828
|
|
|
202828
202829
|
|
|
202829
202830
|
};
|
package/dist/bundle.esm.js
CHANGED
|
@@ -202796,6 +202796,7 @@ class IdeDiffPopup extends HTMLElement
|
|
|
202796
202796
|
|
|
202797
202797
|
console.log(chagedSource);
|
|
202798
202798
|
|
|
202799
|
+
|
|
202799
202800
|
setTimeout(() => {
|
|
202800
202801
|
for (const item of chagedSource) {
|
|
202801
202802
|
const [type, diffData] = Object.entries(item)[0]; // 예: type = "mybatis", diffData = { asis, tobe }
|
|
@@ -202819,7 +202820,7 @@ class IdeDiffPopup extends HTMLElement
|
|
|
202819
202820
|
}
|
|
202820
202821
|
|
|
202821
202822
|
this.shadowRoot.querySelector('nx-dialog')?.showModal();
|
|
202822
|
-
},
|
|
202823
|
+
}, 800);
|
|
202823
202824
|
|
|
202824
202825
|
|
|
202825
202826
|
};
|
|
@@ -41,6 +41,7 @@ class IdeDiffPopup extends HTMLElement
|
|
|
41
41
|
|
|
42
42
|
console.log(chagedSource);
|
|
43
43
|
|
|
44
|
+
|
|
44
45
|
setTimeout(() => {
|
|
45
46
|
for (const item of chagedSource) {
|
|
46
47
|
const [type, diffData] = Object.entries(item)[0]; // 예: type = "mybatis", diffData = { asis, tobe }
|
|
@@ -64,7 +65,7 @@ class IdeDiffPopup extends HTMLElement
|
|
|
64
65
|
}
|
|
65
66
|
|
|
66
67
|
this.shadowRoot.querySelector('nx-dialog')?.showModal();
|
|
67
|
-
},
|
|
68
|
+
}, 800);
|
|
68
69
|
|
|
69
70
|
|
|
70
71
|
};
|
package/package.json
CHANGED
|
@@ -41,6 +41,7 @@ class IdeDiffPopup extends HTMLElement
|
|
|
41
41
|
|
|
42
42
|
console.log(chagedSource);
|
|
43
43
|
|
|
44
|
+
|
|
44
45
|
setTimeout(() => {
|
|
45
46
|
for (const item of chagedSource) {
|
|
46
47
|
const [type, diffData] = Object.entries(item)[0]; // 예: type = "mybatis", diffData = { asis, tobe }
|
|
@@ -64,7 +65,7 @@ class IdeDiffPopup extends HTMLElement
|
|
|
64
65
|
}
|
|
65
66
|
|
|
66
67
|
this.shadowRoot.querySelector('nx-dialog')?.showModal();
|
|
67
|
-
},
|
|
68
|
+
}, 800);
|
|
68
69
|
|
|
69
70
|
|
|
70
71
|
};
|