@nine-lab/nine-mu 0.1.169 → 0.1.170
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/nine-mu.js +9 -8
- package/dist/nine-mu.js.map +1 -1
- package/dist/nine-mu.umd.js +1 -1
- package/dist/nine-mu.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/NineChat.js +4 -5
package/dist/nine-mu.js
CHANGED
|
@@ -13805,14 +13805,15 @@ initActions_fn = function() {
|
|
|
13805
13805
|
setTimeout(() => {
|
|
13806
13806
|
target.value = "";
|
|
13807
13807
|
});
|
|
13808
|
-
const [
|
|
13808
|
+
const [result, err] = await nine.safe(__privateGet(this, _manager).handleChatSubmit(target));
|
|
13809
|
+
target.removeAttribute("disabled");
|
|
13809
13810
|
if (err) {
|
|
13810
13811
|
console.error("Manager 실행 에러:", err);
|
|
13811
13812
|
this.shadowRoot.querySelectorAll("nx-ai-ing-message").forEach((el) => el.remove());
|
|
13812
13813
|
nine.alert("메시지 전송 중 오류가 발생했습니다.").rgb().shake();
|
|
13814
|
+
} else {
|
|
13815
|
+
console.log(result);
|
|
13813
13816
|
}
|
|
13814
|
-
console.log(target);
|
|
13815
|
-
target.removeAttribute("disabled");
|
|
13816
13817
|
}
|
|
13817
13818
|
});
|
|
13818
13819
|
};
|
|
@@ -13821,7 +13822,7 @@ render_fn = function() {
|
|
|
13821
13822
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
13822
13823
|
this.shadowRoot.innerHTML = `
|
|
13823
13824
|
<style>
|
|
13824
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
13825
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.169"}/dist/css/nine-mu.css";
|
|
13825
13826
|
${customImport}
|
|
13826
13827
|
</style>
|
|
13827
13828
|
<div class="wrapper">
|
|
@@ -40040,7 +40041,7 @@ class NineDiff extends HTMLElement {
|
|
|
40040
40041
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
40041
40042
|
this.shadowRoot.innerHTML = `
|
|
40042
40043
|
<style>
|
|
40043
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
40044
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.169"}/dist/css/nine-mu.css";
|
|
40044
40045
|
${customImport}
|
|
40045
40046
|
</style>
|
|
40046
40047
|
|
|
@@ -40150,7 +40151,7 @@ render_fn2 = function() {
|
|
|
40150
40151
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
40151
40152
|
this.shadowRoot.innerHTML = `
|
|
40152
40153
|
<style>
|
|
40153
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
40154
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.169"}/dist/css/nine-mu.css";
|
|
40154
40155
|
${customImport}
|
|
40155
40156
|
</style>
|
|
40156
40157
|
|
|
@@ -40478,7 +40479,7 @@ class ChatMessage extends HTMLElement {
|
|
|
40478
40479
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
40479
40480
|
this.shadowRoot.innerHTML = `
|
|
40480
40481
|
<style>
|
|
40481
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
40482
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.169"}/dist/css/nine-mu.css";
|
|
40482
40483
|
${customImport}
|
|
40483
40484
|
</style>
|
|
40484
40485
|
|
|
@@ -40572,7 +40573,7 @@ if (!customElements.get("nine-chat-me")) {
|
|
|
40572
40573
|
customElements.define("nine-chat-me", MyMessage);
|
|
40573
40574
|
}
|
|
40574
40575
|
const NineMu = {
|
|
40575
|
-
version: "0.1.
|
|
40576
|
+
version: "0.1.169",
|
|
40576
40577
|
init: (config2) => {
|
|
40577
40578
|
trace$1.log("🛠️ Nine-Mu Engine initialized", config2);
|
|
40578
40579
|
}
|