ide-assi 0.654.0 → 0.656.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
|
@@ -202555,7 +202555,7 @@ class IdeUtils
|
|
|
202555
202555
|
};
|
|
202556
202556
|
}
|
|
202557
202557
|
|
|
202558
|
-
|
|
202558
|
+
class IdeAi
|
|
202559
202559
|
{
|
|
202560
202560
|
#API_URL = "http://localhost:8091";
|
|
202561
202561
|
#SCHEMA = "booxtory_250131";
|
|
@@ -203853,7 +203853,7 @@ console.log(el, href, title);
|
|
|
203853
203853
|
return o;
|
|
203854
203854
|
}
|
|
203855
203855
|
};
|
|
203856
|
-
}
|
|
203856
|
+
}
|
|
203857
203857
|
|
|
203858
203858
|
class IdeAssi extends HTMLElement
|
|
203859
203859
|
{
|
|
@@ -203867,7 +203867,7 @@ class IdeAssi extends HTMLElement
|
|
|
203867
203867
|
super();
|
|
203868
203868
|
this.attachShadow({ mode: 'open' });
|
|
203869
203869
|
|
|
203870
|
-
this.#ai = new IdeAi
|
|
203870
|
+
this.#ai = new IdeAi(this);
|
|
203871
203871
|
}
|
|
203872
203872
|
|
|
203873
203873
|
connectedCallback() {
|
|
@@ -237598,7 +237598,7 @@ class aiNatualInput extends HTMLElement
|
|
|
237598
237598
|
const placeholder = this.getAttribute("placeholder") || "자연어 검색어를 입력하세요 (ex: 작성자가 홍길동인 데이타를 찾아줘)";
|
|
237599
237599
|
|
|
237600
237600
|
this.innerHTML = `
|
|
237601
|
-
<input type="text" placeholder="${placeholder}" />
|
|
237601
|
+
<input type="text" placeholder="${placeholder}" style="width: 100%;" />
|
|
237602
237602
|
`;
|
|
237603
237603
|
|
|
237604
237604
|
this.#target = this.querySelector("input");
|
|
@@ -237620,7 +237620,7 @@ function defineCustomElements() {
|
|
|
237620
237620
|
}
|
|
237621
237621
|
|
|
237622
237622
|
exports.IdeAssi = IdeAssi;
|
|
237623
|
-
exports.ai = IdeAi
|
|
237623
|
+
exports.ai = IdeAi;
|
|
237624
237624
|
exports.api = IdeFetch;
|
|
237625
237625
|
exports.default = IdeAssi;
|
|
237626
237626
|
exports.defineCustomElements = defineCustomElements;
|
package/dist/bundle.esm.js
CHANGED
|
@@ -202551,7 +202551,7 @@ class IdeUtils
|
|
|
202551
202551
|
};
|
|
202552
202552
|
}
|
|
202553
202553
|
|
|
202554
|
-
|
|
202554
|
+
class IdeAi
|
|
202555
202555
|
{
|
|
202556
202556
|
#API_URL = "http://localhost:8091";
|
|
202557
202557
|
#SCHEMA = "booxtory_250131";
|
|
@@ -203849,7 +203849,7 @@ console.log(el, href, title);
|
|
|
203849
203849
|
return o;
|
|
203850
203850
|
}
|
|
203851
203851
|
};
|
|
203852
|
-
}
|
|
203852
|
+
}
|
|
203853
203853
|
|
|
203854
203854
|
class IdeAssi extends HTMLElement
|
|
203855
203855
|
{
|
|
@@ -203863,7 +203863,7 @@ class IdeAssi extends HTMLElement
|
|
|
203863
203863
|
super();
|
|
203864
203864
|
this.attachShadow({ mode: 'open' });
|
|
203865
203865
|
|
|
203866
|
-
this.#ai = new IdeAi
|
|
203866
|
+
this.#ai = new IdeAi(this);
|
|
203867
203867
|
}
|
|
203868
203868
|
|
|
203869
203869
|
connectedCallback() {
|
|
@@ -237594,7 +237594,7 @@ class aiNatualInput extends HTMLElement
|
|
|
237594
237594
|
const placeholder = this.getAttribute("placeholder") || "자연어 검색어를 입력하세요 (ex: 작성자가 홍길동인 데이타를 찾아줘)";
|
|
237595
237595
|
|
|
237596
237596
|
this.innerHTML = `
|
|
237597
|
-
<input type="text" placeholder="${placeholder}" />
|
|
237597
|
+
<input type="text" placeholder="${placeholder}" style="width: 100%;" />
|
|
237598
237598
|
`;
|
|
237599
237599
|
|
|
237600
237600
|
this.#target = this.querySelector("input");
|
|
@@ -237615,4 +237615,4 @@ function defineCustomElements() {
|
|
|
237615
237615
|
}
|
|
237616
237616
|
}
|
|
237617
237617
|
|
|
237618
|
-
export { IdeAssi, IdeAi
|
|
237618
|
+
export { IdeAssi, IdeAi as ai, IdeFetch as api, IdeAssi as default, defineCustomElements };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import "./ideAi.js";
|
|
1
|
+
import { IdeAi } from "./ideAi.js";
|
|
2
2
|
|
|
3
3
|
class aiNatualInput extends HTMLElement
|
|
4
4
|
{
|
|
@@ -45,7 +45,7 @@ class aiNatualInput extends HTMLElement
|
|
|
45
45
|
const placeholder = this.getAttribute("placeholder") || "자연어 검색어를 입력하세요 (ex: 작성자가 홍길동인 데이타를 찾아줘)";
|
|
46
46
|
|
|
47
47
|
this.innerHTML = `
|
|
48
|
-
<input type="text" placeholder="${placeholder}" />
|
|
48
|
+
<input type="text" placeholder="${placeholder}" style="width: 100%;" />
|
|
49
49
|
`;
|
|
50
50
|
|
|
51
51
|
this.#target = this.querySelector("input");
|
package/package.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import "./ideAi.js";
|
|
1
|
+
import { IdeAi } from "./ideAi.js";
|
|
2
2
|
|
|
3
3
|
class aiNatualInput extends HTMLElement
|
|
4
4
|
{
|
|
@@ -45,7 +45,7 @@ class aiNatualInput extends HTMLElement
|
|
|
45
45
|
const placeholder = this.getAttribute("placeholder") || "자연어 검색어를 입력하세요 (ex: 작성자가 홍길동인 데이타를 찾아줘)";
|
|
46
46
|
|
|
47
47
|
this.innerHTML = `
|
|
48
|
-
<input type="text" placeholder="${placeholder}" />
|
|
48
|
+
<input type="text" placeholder="${placeholder}" style="width: 100%;" />
|
|
49
49
|
`;
|
|
50
50
|
|
|
51
51
|
this.#target = this.querySelector("input");
|