ide-assi 0.270.0 → 0.271.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.
@@ -194212,7 +194212,7 @@ class ideAssiSettings extends HTMLElement
194212
194212
  radio.addEventListener("change", () => {
194213
194213
  const server = this.shadowRoot.querySelector('input[name="server"]:checked').value;
194214
194214
 
194215
- ["gemini","openai","ollama"].forEach(v => {
194215
+ ["gemini","openai","ollama","chatopenai"].forEach(v => {
194216
194216
  this.shadowRoot.querySelectorAll('.' + v).forEach((elem) => {
194217
194217
  elem.style.display = (server === v) ? "flex" : "none";
194218
194218
  });
@@ -194208,7 +194208,7 @@ class ideAssiSettings extends HTMLElement
194208
194208
  radio.addEventListener("change", () => {
194209
194209
  const server = this.shadowRoot.querySelector('input[name="server"]:checked').value;
194210
194210
 
194211
- ["gemini","openai","ollama"].forEach(v => {
194211
+ ["gemini","openai","ollama","chatopenai"].forEach(v => {
194212
194212
  this.shadowRoot.querySelectorAll('.' + v).forEach((elem) => {
194213
194213
  elem.style.display = (server === v) ? "flex" : "none";
194214
194214
  });
@@ -143,7 +143,7 @@ class ideAssiSettings extends HTMLElement
143
143
  radio.addEventListener("change", () => {
144
144
  const server = this.shadowRoot.querySelector('input[name="server"]:checked').value;
145
145
 
146
- ["gemini","openai","ollama"].forEach(v => {
146
+ ["gemini","openai","ollama","chatopenai"].forEach(v => {
147
147
  this.shadowRoot.querySelectorAll('.' + v).forEach((elem) => {
148
148
  elem.style.display = (server === v) ? "flex" : "none";
149
149
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ide-assi",
3
3
  "type": "module",
4
- "version": "0.270.0",
4
+ "version": "0.271.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -143,7 +143,7 @@ class ideAssiSettings extends HTMLElement
143
143
  radio.addEventListener("change", () => {
144
144
  const server = this.shadowRoot.querySelector('input[name="server"]:checked').value;
145
145
 
146
- ["gemini","openai","ollama"].forEach(v => {
146
+ ["gemini","openai","ollama","chatopenai"].forEach(v => {
147
147
  this.shadowRoot.querySelectorAll('.' + v).forEach((elem) => {
148
148
  elem.style.display = (server === v) ? "flex" : "none";
149
149
  });