ide-assi 0.523.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);
|
|
@@ -202906,7 +202910,6 @@ class IdeTipPopup extends HTMLElement
|
|
|
202906
202910
|
|
|
202907
202911
|
this.shadowRoot.innerHTML = `
|
|
202908
202912
|
<style>
|
|
202909
|
-
<style>
|
|
202910
202913
|
@import "https://cdn.jsdelivr.net/npm/ninegrid@${ninegrid.version}/dist/css/ideAssi.css";
|
|
202911
202914
|
${ninegrid.getCustomPath(this,"ideAssi.css")}
|
|
202912
202915
|
</style>
|
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);
|
|
@@ -202902,7 +202906,6 @@ class IdeTipPopup extends HTMLElement
|
|
|
202902
202906
|
|
|
202903
202907
|
this.shadowRoot.innerHTML = `
|
|
202904
202908
|
<style>
|
|
202905
|
-
<style>
|
|
202906
202909
|
@import "https://cdn.jsdelivr.net/npm/ninegrid@${ninegrid.version}/dist/css/ideAssi.css";
|
|
202907
202910
|
${ninegrid.getCustomPath(this,"ideAssi.css")}
|
|
202908
202911
|
</style>
|
|
@@ -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);
|