ide-assi 0.487.0 → 0.489.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
|
@@ -202881,10 +202881,10 @@ class IdeDiffPopup extends HTMLElement
|
|
|
202881
202881
|
`;
|
|
202882
202882
|
}
|
|
202883
202883
|
|
|
202884
|
-
popup = (
|
|
202884
|
+
popup = (changedSource) => {
|
|
202885
202885
|
|
|
202886
202886
|
setTimeout(() => {
|
|
202887
|
-
for (const item of
|
|
202887
|
+
for (const item of changedSource) {
|
|
202888
202888
|
const [type, diffData] = Object.entries(item)[0]; // 예: type = "mybatis", diffData = { asis, tobe }
|
|
202889
202889
|
const diff = ninegrid.querySelector(`ide-diff.${type}`, this.shadowRoot);
|
|
202890
202890
|
if (!diff) continue;
|
package/dist/bundle.esm.js
CHANGED
|
@@ -202877,10 +202877,10 @@ class IdeDiffPopup extends HTMLElement
|
|
|
202877
202877
|
`;
|
|
202878
202878
|
}
|
|
202879
202879
|
|
|
202880
|
-
popup = (
|
|
202880
|
+
popup = (changedSource) => {
|
|
202881
202881
|
|
|
202882
202882
|
setTimeout(() => {
|
|
202883
|
-
for (const item of
|
|
202883
|
+
for (const item of changedSource) {
|
|
202884
202884
|
const [type, diffData] = Object.entries(item)[0]; // 예: type = "mybatis", diffData = { asis, tobe }
|
|
202885
202885
|
const diff = ninegrid.querySelector(`ide-diff.${type}`, this.shadowRoot);
|
|
202886
202886
|
if (!diff) continue;
|
|
@@ -36,10 +36,10 @@ class IdeDiffPopup extends HTMLElement
|
|
|
36
36
|
`;
|
|
37
37
|
}
|
|
38
38
|
|
|
39
|
-
popup = (
|
|
39
|
+
popup = (changedSource) => {
|
|
40
40
|
|
|
41
41
|
setTimeout(() => {
|
|
42
|
-
for (const item of
|
|
42
|
+
for (const item of changedSource) {
|
|
43
43
|
const [type, diffData] = Object.entries(item)[0]; // 예: type = "mybatis", diffData = { asis, tobe }
|
|
44
44
|
const diff = ninegrid.querySelector(`ide-diff.${type}`, this.shadowRoot);
|
|
45
45
|
if (!diff) continue;
|
package/package.json
CHANGED
|
@@ -36,10 +36,10 @@ class IdeDiffPopup extends HTMLElement
|
|
|
36
36
|
`;
|
|
37
37
|
}
|
|
38
38
|
|
|
39
|
-
popup = (
|
|
39
|
+
popup = (changedSource) => {
|
|
40
40
|
|
|
41
41
|
setTimeout(() => {
|
|
42
|
-
for (const item of
|
|
42
|
+
for (const item of changedSource) {
|
|
43
43
|
const [type, diffData] = Object.entries(item)[0]; // 예: type = "mybatis", diffData = { asis, tobe }
|
|
44
44
|
const diff = ninegrid.querySelector(`ide-diff.${type}`, this.shadowRoot);
|
|
45
45
|
if (!diff) continue;
|