@nine-lab/nine-mu 0.1.186 → 0.1.187
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 +12 -5
- 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 +11 -0
package/dist/nine-mu.js
CHANGED
|
@@ -13574,6 +13574,13 @@ connect_fn = async function() {
|
|
|
13574
13574
|
trace.error("❌ MCP 연결 실패", err);
|
|
13575
13575
|
__privateMethod(this, _NineChatManager_instances, updateStatus_fn).call(this, "❌ Connection Failed");
|
|
13576
13576
|
});
|
|
13577
|
+
__privateGet(this, _mcpClient).onNotification((notification) => {
|
|
13578
|
+
console.log(notification);
|
|
13579
|
+
if (notification.method === "notifications/logging/message") {
|
|
13580
|
+
const data = JSON.parse(notification.params.message);
|
|
13581
|
+
if (data.type === "BRAIN_DECISION") ;
|
|
13582
|
+
}
|
|
13583
|
+
});
|
|
13577
13584
|
};
|
|
13578
13585
|
updateStatus_fn = function(msg) {
|
|
13579
13586
|
if (__privateGet(this, _onStatus)) __privateGet(this, _onStatus).call(this, msg);
|
|
@@ -13794,7 +13801,7 @@ render_fn = function() {
|
|
|
13794
13801
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
13795
13802
|
this.shadowRoot.innerHTML = `
|
|
13796
13803
|
<style>
|
|
13797
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
13804
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.186"}/dist/css/nine-mu.css";
|
|
13798
13805
|
${customImport}
|
|
13799
13806
|
</style>
|
|
13800
13807
|
<div class="wrapper">
|
|
@@ -40013,7 +40020,7 @@ class NineDiff extends HTMLElement {
|
|
|
40013
40020
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
40014
40021
|
this.shadowRoot.innerHTML = `
|
|
40015
40022
|
<style>
|
|
40016
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
40023
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.186"}/dist/css/nine-mu.css";
|
|
40017
40024
|
${customImport}
|
|
40018
40025
|
</style>
|
|
40019
40026
|
|
|
@@ -40123,7 +40130,7 @@ render_fn2 = function() {
|
|
|
40123
40130
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
40124
40131
|
this.shadowRoot.innerHTML = `
|
|
40125
40132
|
<style>
|
|
40126
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
40133
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.186"}/dist/css/nine-mu.css";
|
|
40127
40134
|
${customImport}
|
|
40128
40135
|
</style>
|
|
40129
40136
|
|
|
@@ -40450,7 +40457,7 @@ class ChatMessageBody extends HTMLElement {
|
|
|
40450
40457
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
40451
40458
|
this.shadowRoot.innerHTML = `
|
|
40452
40459
|
<style>
|
|
40453
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
40460
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.186"}/dist/css/nine-mu.css";
|
|
40454
40461
|
${customImport}
|
|
40455
40462
|
</style>
|
|
40456
40463
|
|
|
@@ -40544,7 +40551,7 @@ if (!customElements.get("nine-chat-progress")) {
|
|
|
40544
40551
|
customElements.define("nine-chat-progress", ProgressMessage);
|
|
40545
40552
|
}
|
|
40546
40553
|
const NineMu = {
|
|
40547
|
-
version: "0.1.
|
|
40554
|
+
version: "0.1.186",
|
|
40548
40555
|
init: (config2) => {
|
|
40549
40556
|
trace$1.log("🛠️ Nine-Mu Engine initialized", config2);
|
|
40550
40557
|
}
|