@nine-lab/nine-mu 0.1.200 → 0.1.202
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 +11 -15
- 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/NineChatManager.js +24 -0
package/dist/nine-mu.js
CHANGED
|
@@ -17156,17 +17156,13 @@ connect_fn = async function() {
|
|
|
17156
17156
|
} catch (linkErr) {
|
|
17157
17157
|
trace.error("❌ 로깅 세션 활성화 실패:", linkErr);
|
|
17158
17158
|
}
|
|
17159
|
-
|
|
17160
|
-
|
|
17161
|
-
|
|
17162
|
-
|
|
17163
|
-
|
|
17164
|
-
const logData = JSON.parse(notification.params.message);
|
|
17165
|
-
if (logData.type === "BRAIN_DECISION") {
|
|
17166
|
-
}
|
|
17167
|
-
} catch (e) {
|
|
17168
|
-
trace.warn("알림 내부 JSON 파싱 실패:", e);
|
|
17159
|
+
transport._socket.onmessage = (event) => {
|
|
17160
|
+
try {
|
|
17161
|
+
trace.log(event);
|
|
17162
|
+
const data = JSON.parse(event.data);
|
|
17163
|
+
if (data.isCustomLiveMessage) {
|
|
17169
17164
|
}
|
|
17165
|
+
} catch (e) {
|
|
17170
17166
|
}
|
|
17171
17167
|
};
|
|
17172
17168
|
}).catch((err) => {
|
|
@@ -17393,7 +17389,7 @@ render_fn = function() {
|
|
|
17393
17389
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
17394
17390
|
this.shadowRoot.innerHTML = `
|
|
17395
17391
|
<style>
|
|
17396
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
17392
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.201"}/dist/css/nine-mu.css";
|
|
17397
17393
|
${customImport}
|
|
17398
17394
|
</style>
|
|
17399
17395
|
<div class="wrapper">
|
|
@@ -43612,7 +43608,7 @@ class NineDiff extends HTMLElement {
|
|
|
43612
43608
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
43613
43609
|
this.shadowRoot.innerHTML = `
|
|
43614
43610
|
<style>
|
|
43615
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
43611
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.201"}/dist/css/nine-mu.css";
|
|
43616
43612
|
${customImport}
|
|
43617
43613
|
</style>
|
|
43618
43614
|
|
|
@@ -43722,7 +43718,7 @@ render_fn2 = function() {
|
|
|
43722
43718
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
43723
43719
|
this.shadowRoot.innerHTML = `
|
|
43724
43720
|
<style>
|
|
43725
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
43721
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.201"}/dist/css/nine-mu.css";
|
|
43726
43722
|
${customImport}
|
|
43727
43723
|
</style>
|
|
43728
43724
|
|
|
@@ -44049,7 +44045,7 @@ class ChatMessageBody extends HTMLElement {
|
|
|
44049
44045
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
44050
44046
|
this.shadowRoot.innerHTML = `
|
|
44051
44047
|
<style>
|
|
44052
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
44048
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.201"}/dist/css/nine-mu.css";
|
|
44053
44049
|
${customImport}
|
|
44054
44050
|
</style>
|
|
44055
44051
|
|
|
@@ -44143,7 +44139,7 @@ if (!customElements.get("nine-chat-progress")) {
|
|
|
44143
44139
|
customElements.define("nine-chat-progress", ProgressMessage);
|
|
44144
44140
|
}
|
|
44145
44141
|
const NineMu = {
|
|
44146
|
-
version: "0.1.
|
|
44142
|
+
version: "0.1.201",
|
|
44147
44143
|
init: (config2) => {
|
|
44148
44144
|
trace$1.log("🛠️ Nine-Mu Engine initialized", config2);
|
|
44149
44145
|
}
|