ide-assi 0.653.0 → 0.655.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
|
@@ -203855,7 +203855,7 @@ console.log(el, href, title);
|
|
|
203855
203855
|
};
|
|
203856
203856
|
}
|
|
203857
203857
|
|
|
203858
|
-
|
|
203858
|
+
class IdeAssi extends HTMLElement
|
|
203859
203859
|
{
|
|
203860
203860
|
#ing = false;
|
|
203861
203861
|
#ai;
|
|
@@ -204055,9 +204055,9 @@ let IdeAssi$1 = class IdeAssi extends HTMLElement
|
|
|
204055
204055
|
// `.menu-setting`이 클릭되었는지 확인 후 `nx-ai-settings` 토글
|
|
204056
204056
|
this.settings.classList.toggle("expand", !!e.target.closest(".menu-setting"));
|
|
204057
204057
|
};
|
|
204058
|
-
}
|
|
204058
|
+
}
|
|
204059
204059
|
|
|
204060
|
-
customElements.define("ide-assi", IdeAssi
|
|
204060
|
+
customElements.define("ide-assi", IdeAssi);
|
|
204061
204061
|
|
|
204062
204062
|
class ideAssiSettings extends HTMLElement
|
|
204063
204063
|
{
|
|
@@ -237583,7 +237583,7 @@ class aiNatualInput extends HTMLElement
|
|
|
237583
237583
|
|
|
237584
237584
|
let params = {};
|
|
237585
237585
|
if (this.#target.value) {
|
|
237586
|
-
params = { "_whereClause": await
|
|
237586
|
+
params = { "_whereClause": await IdeAi.generateWhereCause(this.#xmlPath, this.#queryId, this.#target.value, this.#apiKey) };
|
|
237587
237587
|
}
|
|
237588
237588
|
|
|
237589
237589
|
this.#selectFunc.call(this, params);
|
|
@@ -237615,12 +237615,12 @@ customElements.define("ai-natual-input", aiNatualInput);
|
|
|
237615
237615
|
// ✅ Custom Elements 등록 함수 정의
|
|
237616
237616
|
function defineCustomElements() {
|
|
237617
237617
|
if (!customElements.get("ide-assi")) {
|
|
237618
|
-
customElements.define("ide-assi", IdeAssi
|
|
237618
|
+
customElements.define("ide-assi", IdeAssi);
|
|
237619
237619
|
}
|
|
237620
237620
|
}
|
|
237621
237621
|
|
|
237622
|
-
exports.IdeAssi = IdeAssi
|
|
237622
|
+
exports.IdeAssi = IdeAssi;
|
|
237623
237623
|
exports.ai = IdeAi;
|
|
237624
237624
|
exports.api = IdeFetch;
|
|
237625
|
-
exports.default = IdeAssi
|
|
237625
|
+
exports.default = IdeAssi;
|
|
237626
237626
|
exports.defineCustomElements = defineCustomElements;
|
package/dist/bundle.esm.js
CHANGED
|
@@ -203851,7 +203851,7 @@ console.log(el, href, title);
|
|
|
203851
203851
|
};
|
|
203852
203852
|
}
|
|
203853
203853
|
|
|
203854
|
-
|
|
203854
|
+
class IdeAssi extends HTMLElement
|
|
203855
203855
|
{
|
|
203856
203856
|
#ing = false;
|
|
203857
203857
|
#ai;
|
|
@@ -204051,9 +204051,9 @@ let IdeAssi$1 = class IdeAssi extends HTMLElement
|
|
|
204051
204051
|
// `.menu-setting`이 클릭되었는지 확인 후 `nx-ai-settings` 토글
|
|
204052
204052
|
this.settings.classList.toggle("expand", !!e.target.closest(".menu-setting"));
|
|
204053
204053
|
};
|
|
204054
|
-
}
|
|
204054
|
+
}
|
|
204055
204055
|
|
|
204056
|
-
customElements.define("ide-assi", IdeAssi
|
|
204056
|
+
customElements.define("ide-assi", IdeAssi);
|
|
204057
204057
|
|
|
204058
204058
|
class ideAssiSettings extends HTMLElement
|
|
204059
204059
|
{
|
|
@@ -237579,7 +237579,7 @@ class aiNatualInput extends HTMLElement
|
|
|
237579
237579
|
|
|
237580
237580
|
let params = {};
|
|
237581
237581
|
if (this.#target.value) {
|
|
237582
|
-
params = { "_whereClause": await
|
|
237582
|
+
params = { "_whereClause": await IdeAi.generateWhereCause(this.#xmlPath, this.#queryId, this.#target.value, this.#apiKey) };
|
|
237583
237583
|
}
|
|
237584
237584
|
|
|
237585
237585
|
this.#selectFunc.call(this, params);
|
|
@@ -237611,8 +237611,8 @@ customElements.define("ai-natual-input", aiNatualInput);
|
|
|
237611
237611
|
// ✅ Custom Elements 등록 함수 정의
|
|
237612
237612
|
function defineCustomElements() {
|
|
237613
237613
|
if (!customElements.get("ide-assi")) {
|
|
237614
|
-
customElements.define("ide-assi", IdeAssi
|
|
237614
|
+
customElements.define("ide-assi", IdeAssi);
|
|
237615
237615
|
}
|
|
237616
237616
|
}
|
|
237617
237617
|
|
|
237618
|
-
export { IdeAssi
|
|
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
|
{
|
|
@@ -30,7 +30,7 @@ class aiNatualInput extends HTMLElement
|
|
|
30
30
|
|
|
31
31
|
let params = {};
|
|
32
32
|
if (this.#target.value) {
|
|
33
|
-
params = { "_whereClause": await
|
|
33
|
+
params = { "_whereClause": await IdeAi.generateWhereCause(this.#xmlPath, this.#queryId, this.#target.value, this.#apiKey) };
|
|
34
34
|
}
|
|
35
35
|
|
|
36
36
|
this.#selectFunc.call(this, params);
|
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
|
{
|
|
@@ -30,7 +30,7 @@ class aiNatualInput extends HTMLElement
|
|
|
30
30
|
|
|
31
31
|
let params = {};
|
|
32
32
|
if (this.#target.value) {
|
|
33
|
-
params = { "_whereClause": await
|
|
33
|
+
params = { "_whereClause": await IdeAi.generateWhereCause(this.#xmlPath, this.#queryId, this.#target.value, this.#apiKey) };
|
|
34
34
|
}
|
|
35
35
|
|
|
36
36
|
this.#selectFunc.call(this, params);
|