ide-assi 0.530.0 → 0.531.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
|
@@ -203209,11 +203209,11 @@ class IdeTipPopup extends HTMLElement {
|
|
|
203209
203209
|
if (dialog) {
|
|
203210
203210
|
// dialog가 닫힐 때 aiLoadingTips의 애니메이션 중지
|
|
203211
203211
|
dialog.addEventListener('close', () => {
|
|
203212
|
-
if (this.#
|
|
203213
|
-
this.#
|
|
203212
|
+
if (this.#ideLoadingTipsInstance) {
|
|
203213
|
+
this.#ideLoadingTipsInstance.stopTips();
|
|
203214
203214
|
// 팝업이 닫힐 때 aiLoadingTips 인스턴스 제거 (선택 사항)
|
|
203215
|
-
this.#
|
|
203216
|
-
this.#
|
|
203215
|
+
this.#ideLoadingTipsInstance.remove();
|
|
203216
|
+
this.#ideLoadingTipsInstance = null;
|
|
203217
203217
|
}
|
|
203218
203218
|
});
|
|
203219
203219
|
}
|
package/dist/bundle.esm.js
CHANGED
|
@@ -203205,11 +203205,11 @@ class IdeTipPopup extends HTMLElement {
|
|
|
203205
203205
|
if (dialog) {
|
|
203206
203206
|
// dialog가 닫힐 때 aiLoadingTips의 애니메이션 중지
|
|
203207
203207
|
dialog.addEventListener('close', () => {
|
|
203208
|
-
if (this.#
|
|
203209
|
-
this.#
|
|
203208
|
+
if (this.#ideLoadingTipsInstance) {
|
|
203209
|
+
this.#ideLoadingTipsInstance.stopTips();
|
|
203210
203210
|
// 팝업이 닫힐 때 aiLoadingTips 인스턴스 제거 (선택 사항)
|
|
203211
|
-
this.#
|
|
203212
|
-
this.#
|
|
203211
|
+
this.#ideLoadingTipsInstance.remove();
|
|
203212
|
+
this.#ideLoadingTipsInstance = null;
|
|
203213
203213
|
}
|
|
203214
203214
|
});
|
|
203215
203215
|
}
|
|
@@ -53,11 +53,11 @@ class IdeTipPopup extends HTMLElement {
|
|
|
53
53
|
if (dialog) {
|
|
54
54
|
// dialog가 닫힐 때 aiLoadingTips의 애니메이션 중지
|
|
55
55
|
dialog.addEventListener('close', () => {
|
|
56
|
-
if (this.#
|
|
57
|
-
this.#
|
|
56
|
+
if (this.#ideLoadingTipsInstance) {
|
|
57
|
+
this.#ideLoadingTipsInstance.stopTips();
|
|
58
58
|
// 팝업이 닫힐 때 aiLoadingTips 인스턴스 제거 (선택 사항)
|
|
59
|
-
this.#
|
|
60
|
-
this.#
|
|
59
|
+
this.#ideLoadingTipsInstance.remove();
|
|
60
|
+
this.#ideLoadingTipsInstance = null;
|
|
61
61
|
}
|
|
62
62
|
});
|
|
63
63
|
}
|
package/package.json
CHANGED
|
@@ -53,11 +53,11 @@ class IdeTipPopup extends HTMLElement {
|
|
|
53
53
|
if (dialog) {
|
|
54
54
|
// dialog가 닫힐 때 aiLoadingTips의 애니메이션 중지
|
|
55
55
|
dialog.addEventListener('close', () => {
|
|
56
|
-
if (this.#
|
|
57
|
-
this.#
|
|
56
|
+
if (this.#ideLoadingTipsInstance) {
|
|
57
|
+
this.#ideLoadingTipsInstance.stopTips();
|
|
58
58
|
// 팝업이 닫힐 때 aiLoadingTips 인스턴스 제거 (선택 사항)
|
|
59
|
-
this.#
|
|
60
|
-
this.#
|
|
59
|
+
this.#ideLoadingTipsInstance.remove();
|
|
60
|
+
this.#ideLoadingTipsInstance = null;
|
|
61
61
|
}
|
|
62
62
|
});
|
|
63
63
|
}
|