ide-assi 0.524.0 → 0.526.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);
|
|
@@ -203053,6 +203057,10 @@ class IdeDiffPopup extends HTMLElement
|
|
|
203053
203057
|
this.shadowRoot.querySelector('nx-dialog')?.showModal();
|
|
203054
203058
|
}, 100);
|
|
203055
203059
|
};
|
|
203060
|
+
|
|
203061
|
+
close = () => {
|
|
203062
|
+
this.shadowRoot.querySelector('nx-dialog')?.close();
|
|
203063
|
+
};
|
|
203056
203064
|
}
|
|
203057
203065
|
|
|
203058
203066
|
customElements.define("ide-diff-popup", IdeDiffPopup);
|
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);
|
|
@@ -203049,6 +203053,10 @@ class IdeDiffPopup extends HTMLElement
|
|
|
203049
203053
|
this.shadowRoot.querySelector('nx-dialog')?.showModal();
|
|
203050
203054
|
}, 100);
|
|
203051
203055
|
};
|
|
203056
|
+
|
|
203057
|
+
close = () => {
|
|
203058
|
+
this.shadowRoot.querySelector('nx-dialog')?.close();
|
|
203059
|
+
};
|
|
203052
203060
|
}
|
|
203053
203061
|
|
|
203054
203062
|
customElements.define("ide-diff-popup", IdeDiffPopup);
|
|
@@ -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);
|
|
@@ -122,6 +122,10 @@ class IdeDiffPopup extends HTMLElement
|
|
|
122
122
|
this.shadowRoot.querySelector('nx-dialog')?.showModal();
|
|
123
123
|
}, 100);
|
|
124
124
|
};
|
|
125
|
+
|
|
126
|
+
close = () => {
|
|
127
|
+
this.shadowRoot.querySelector('nx-dialog')?.close();
|
|
128
|
+
};
|
|
125
129
|
}
|
|
126
130
|
|
|
127
131
|
customElements.define("ide-diff-popup", IdeDiffPopup);
|
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);
|
|
@@ -122,6 +122,10 @@ class IdeDiffPopup extends HTMLElement
|
|
|
122
122
|
this.shadowRoot.querySelector('nx-dialog')?.showModal();
|
|
123
123
|
}, 100);
|
|
124
124
|
};
|
|
125
|
+
|
|
126
|
+
close = () => {
|
|
127
|
+
this.shadowRoot.querySelector('nx-dialog')?.close();
|
|
128
|
+
};
|
|
125
129
|
}
|
|
126
130
|
|
|
127
131
|
customElements.define("ide-diff-popup", IdeDiffPopup);
|