@nine-lab/nine-mu 0.1.209 β 0.1.210
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 +7 -13
- 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 +6 -14
package/dist/nine-mu.js
CHANGED
|
@@ -17168,14 +17168,8 @@ connect_fn = async function() {
|
|
|
17168
17168
|
customNotificationSchema,
|
|
17169
17169
|
// π κ»λ°κΈ° ν΅κ³Όμ© 컀μ€ν
μ€ν€λ§
|
|
17170
17170
|
(notification) => {
|
|
17171
|
-
|
|
17172
|
-
|
|
17173
|
-
const logData = JSON.parse(notification.params.message);
|
|
17174
|
-
if (logData.type === "BRAIN_DECISION") {
|
|
17175
|
-
}
|
|
17176
|
-
} catch (e) {
|
|
17177
|
-
trace.warn("μλ¦Ό λ΄λΆ νμ± μλ¬:", e);
|
|
17178
|
-
}
|
|
17171
|
+
trace.log(notification);
|
|
17172
|
+
this.add("ai", notification.params.message);
|
|
17179
17173
|
}
|
|
17180
17174
|
);
|
|
17181
17175
|
}).catch((err) => {
|
|
@@ -17402,7 +17396,7 @@ render_fn = function() {
|
|
|
17402
17396
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
17403
17397
|
this.shadowRoot.innerHTML = `
|
|
17404
17398
|
<style>
|
|
17405
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
17399
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.209"}/dist/css/nine-mu.css";
|
|
17406
17400
|
${customImport}
|
|
17407
17401
|
</style>
|
|
17408
17402
|
<div class="wrapper">
|
|
@@ -43621,7 +43615,7 @@ class NineDiff extends HTMLElement {
|
|
|
43621
43615
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
43622
43616
|
this.shadowRoot.innerHTML = `
|
|
43623
43617
|
<style>
|
|
43624
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
43618
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.209"}/dist/css/nine-mu.css";
|
|
43625
43619
|
${customImport}
|
|
43626
43620
|
</style>
|
|
43627
43621
|
|
|
@@ -43731,7 +43725,7 @@ render_fn2 = function() {
|
|
|
43731
43725
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
43732
43726
|
this.shadowRoot.innerHTML = `
|
|
43733
43727
|
<style>
|
|
43734
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
43728
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.209"}/dist/css/nine-mu.css";
|
|
43735
43729
|
${customImport}
|
|
43736
43730
|
</style>
|
|
43737
43731
|
|
|
@@ -44058,7 +44052,7 @@ class ChatMessageBody extends HTMLElement {
|
|
|
44058
44052
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
44059
44053
|
this.shadowRoot.innerHTML = `
|
|
44060
44054
|
<style>
|
|
44061
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
44055
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.209"}/dist/css/nine-mu.css";
|
|
44062
44056
|
${customImport}
|
|
44063
44057
|
</style>
|
|
44064
44058
|
|
|
@@ -44152,7 +44146,7 @@ if (!customElements.get("nine-chat-progress")) {
|
|
|
44152
44146
|
customElements.define("nine-chat-progress", ProgressMessage);
|
|
44153
44147
|
}
|
|
44154
44148
|
const NineMu = {
|
|
44155
|
-
version: "0.1.
|
|
44149
|
+
version: "0.1.209",
|
|
44156
44150
|
init: (config2) => {
|
|
44157
44151
|
trace$1.log("π οΈ Nine-Mu Engine initialized", config2);
|
|
44158
44152
|
}
|