ide-assi 0.535.0 → 0.536.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.
@@ -203260,6 +203260,8 @@ class IdeTipPopup extends HTMLElement {
203260
203260
  * 팁 팝업을 닫습니다.
203261
203261
  */
203262
203262
  close = () => {
203263
+
203264
+ this.#ideLoadingTipsInstance.stopTips();
203263
203265
  this.shadowRoot.querySelector('nx-dialog')?.close();
203264
203266
  // close 이벤트 리스너에서 aiLoadingTips 정리 로직이 실행될 것임
203265
203267
  };
@@ -203256,6 +203256,8 @@ class IdeTipPopup extends HTMLElement {
203256
203256
  * 팁 팝업을 닫습니다.
203257
203257
  */
203258
203258
  close = () => {
203259
+
203260
+ this.#ideLoadingTipsInstance.stopTips();
203259
203261
  this.shadowRoot.querySelector('nx-dialog')?.close();
203260
203262
  // close 이벤트 리스너에서 aiLoadingTips 정리 로직이 실행될 것임
203261
203263
  };
@@ -100,6 +100,8 @@ class IdeTipPopup extends HTMLElement {
100
100
  * 팁 팝업을 닫습니다.
101
101
  */
102
102
  close = () => {
103
+
104
+ this.#ideLoadingTipsInstance.stopTips();
103
105
  this.shadowRoot.querySelector('nx-dialog')?.close();
104
106
  // close 이벤트 리스너에서 aiLoadingTips 정리 로직이 실행될 것임
105
107
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ide-assi",
3
3
  "type": "module",
4
- "version": "0.535.0",
4
+ "version": "0.536.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -100,6 +100,8 @@ class IdeTipPopup extends HTMLElement {
100
100
  * 팁 팝업을 닫습니다.
101
101
  */
102
102
  close = () => {
103
+
104
+ this.#ideLoadingTipsInstance.stopTips();
103
105
  this.shadowRoot.querySelector('nx-dialog')?.close();
104
106
  // close 이벤트 리스너에서 aiLoadingTips 정리 로직이 실행될 것임
105
107
  };