ide-assi 0.564.0 → 0.566.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.
@@ -202639,7 +202639,10 @@ class IdeAssi extends HTMLElement
202639
202639
 
202640
202640
  this.settings = this.shadowRoot.querySelector("ide-assi-settings");
202641
202641
 
202642
- this.shadowRoot.appendChild(document.createElement('ide-tip-popup'));
202642
+ const tipPopup = document.createElement('ide-tip-popup');
202643
+ tipPopup.classList.add("fade");
202644
+ this.shadowRoot.appendChild(tipPopup);
202645
+
202643
202646
  this.shadowRoot.appendChild(document.createElement('ide-diff-popup'));
202644
202647
 
202645
202648
 
@@ -202704,9 +202707,9 @@ class IdeAssi extends HTMLElement
202704
202707
  elAiChat.add("ing", "...");
202705
202708
 
202706
202709
  const tipPopup = this.shadowRoot.querySelector("ide-tip-popup");
202707
-
202708
202710
  tipPopup.popup();
202709
202711
 
202712
+ /**
202710
202713
  try {
202711
202714
  const changedSource = await this.#ai.generateSourceClient(userPrompt, apply);
202712
202715
  tipPopup.close();
@@ -202718,7 +202721,7 @@ class IdeAssi extends HTMLElement
202718
202721
  tipPopup.close();
202719
202722
  console.error(error);
202720
202723
  elAiChat.add("ai", String(error).replace("Error:", ""));
202721
- }
202724
+ }*/
202722
202725
 
202723
202726
  this.#ing = false;
202724
202727
  }
@@ -202635,7 +202635,10 @@ class IdeAssi extends HTMLElement
202635
202635
 
202636
202636
  this.settings = this.shadowRoot.querySelector("ide-assi-settings");
202637
202637
 
202638
- this.shadowRoot.appendChild(document.createElement('ide-tip-popup'));
202638
+ const tipPopup = document.createElement('ide-tip-popup');
202639
+ tipPopup.classList.add("fade");
202640
+ this.shadowRoot.appendChild(tipPopup);
202641
+
202639
202642
  this.shadowRoot.appendChild(document.createElement('ide-diff-popup'));
202640
202643
 
202641
202644
 
@@ -202700,9 +202703,9 @@ class IdeAssi extends HTMLElement
202700
202703
  elAiChat.add("ing", "...");
202701
202704
 
202702
202705
  const tipPopup = this.shadowRoot.querySelector("ide-tip-popup");
202703
-
202704
202706
  tipPopup.popup();
202705
202707
 
202708
+ /**
202706
202709
  try {
202707
202710
  const changedSource = await this.#ai.generateSourceClient(userPrompt, apply);
202708
202711
  tipPopup.close();
@@ -202714,7 +202717,7 @@ class IdeAssi extends HTMLElement
202714
202717
  tipPopup.close();
202715
202718
  console.error(error);
202716
202719
  elAiChat.add("ai", String(error).replace("Error:", ""));
202717
- }
202720
+ }*/
202718
202721
 
202719
202722
  this.#ing = false;
202720
202723
  }
@@ -100,7 +100,10 @@ export class IdeAssi extends HTMLElement
100
100
 
101
101
  this.settings = this.shadowRoot.querySelector("ide-assi-settings");
102
102
 
103
- this.shadowRoot.appendChild(document.createElement('ide-tip-popup'));
103
+ const tipPopup = document.createElement('ide-tip-popup');
104
+ tipPopup.classList.add("fade");
105
+ this.shadowRoot.appendChild(tipPopup);
106
+
104
107
  this.shadowRoot.appendChild(document.createElement('ide-diff-popup'));
105
108
 
106
109
 
@@ -165,9 +168,9 @@ export class IdeAssi extends HTMLElement
165
168
  elAiChat.add("ing", "...");
166
169
 
167
170
  const tipPopup = this.shadowRoot.querySelector("ide-tip-popup");
168
-
169
171
  tipPopup.popup();
170
172
 
173
+ /**
171
174
  try {
172
175
  const changedSource = await this.#ai.generateSourceClient(userPrompt, apply);
173
176
  tipPopup.close();
@@ -179,7 +182,7 @@ export class IdeAssi extends HTMLElement
179
182
  tipPopup.close();
180
183
  console.error(error);
181
184
  elAiChat.add("ai", String(error).replace("Error:", ""));
182
- }
185
+ }*/
183
186
 
184
187
  this.#ing = false;
185
188
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ide-assi",
3
3
  "type": "module",
4
- "version": "0.564.0",
4
+ "version": "0.566.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -100,7 +100,10 @@ export class IdeAssi extends HTMLElement
100
100
 
101
101
  this.settings = this.shadowRoot.querySelector("ide-assi-settings");
102
102
 
103
- this.shadowRoot.appendChild(document.createElement('ide-tip-popup'));
103
+ const tipPopup = document.createElement('ide-tip-popup');
104
+ tipPopup.classList.add("fade");
105
+ this.shadowRoot.appendChild(tipPopup);
106
+
104
107
  this.shadowRoot.appendChild(document.createElement('ide-diff-popup'));
105
108
 
106
109
 
@@ -165,9 +168,9 @@ export class IdeAssi extends HTMLElement
165
168
  elAiChat.add("ing", "...");
166
169
 
167
170
  const tipPopup = this.shadowRoot.querySelector("ide-tip-popup");
168
-
169
171
  tipPopup.popup();
170
172
 
173
+ /**
171
174
  try {
172
175
  const changedSource = await this.#ai.generateSourceClient(userPrompt, apply);
173
176
  tipPopup.close();
@@ -179,7 +182,7 @@ export class IdeAssi extends HTMLElement
179
182
  tipPopup.close();
180
183
  console.error(error);
181
184
  elAiChat.add("ai", String(error).replace("Error:", ""));
182
- }
185
+ }*/
183
186
 
184
187
  this.#ing = false;
185
188
  }