ide-assi 0.524.0 → 0.525.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
|
@@ -202705,6 +202705,10 @@ class IdeAssi extends HTMLElement
|
|
|
202705
202705
|
|
|
202706
202706
|
this.shadowRoot.querySelector("ide-tip-popup").popup();
|
|
202707
202707
|
|
|
202708
|
+
setTimeout(() => {
|
|
202709
|
+
this.shadowRoot.querySelector("ide-tip-popup").close();
|
|
202710
|
+
}, 3000);
|
|
202711
|
+
|
|
202708
202712
|
/**
|
|
202709
202713
|
try {
|
|
202710
202714
|
const changedSource = await this.#ai.generateSourceClient(userPrompt, apply);
|
package/dist/bundle.esm.js
CHANGED
|
@@ -202701,6 +202701,10 @@ class IdeAssi extends HTMLElement
|
|
|
202701
202701
|
|
|
202702
202702
|
this.shadowRoot.querySelector("ide-tip-popup").popup();
|
|
202703
202703
|
|
|
202704
|
+
setTimeout(() => {
|
|
202705
|
+
this.shadowRoot.querySelector("ide-tip-popup").close();
|
|
202706
|
+
}, 3000);
|
|
202707
|
+
|
|
202704
202708
|
/**
|
|
202705
202709
|
try {
|
|
202706
202710
|
const changedSource = await this.#ai.generateSourceClient(userPrompt, apply);
|
|
@@ -166,6 +166,10 @@ export class IdeAssi extends HTMLElement
|
|
|
166
166
|
|
|
167
167
|
this.shadowRoot.querySelector("ide-tip-popup").popup();
|
|
168
168
|
|
|
169
|
+
setTimeout(() => {
|
|
170
|
+
this.shadowRoot.querySelector("ide-tip-popup").close();
|
|
171
|
+
}, 3000);
|
|
172
|
+
|
|
169
173
|
/**
|
|
170
174
|
try {
|
|
171
175
|
const changedSource = await this.#ai.generateSourceClient(userPrompt, apply);
|
package/package.json
CHANGED
|
@@ -166,6 +166,10 @@ export class IdeAssi extends HTMLElement
|
|
|
166
166
|
|
|
167
167
|
this.shadowRoot.querySelector("ide-tip-popup").popup();
|
|
168
168
|
|
|
169
|
+
setTimeout(() => {
|
|
170
|
+
this.shadowRoot.querySelector("ide-tip-popup").close();
|
|
171
|
+
}, 3000);
|
|
172
|
+
|
|
169
173
|
/**
|
|
170
174
|
try {
|
|
171
175
|
const changedSource = await this.#ai.generateSourceClient(userPrompt, apply);
|