@nine-lab/nine-mu 0.1.106 → 0.1.107
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 +6 -7
- 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 +2 -7
package/dist/nine-mu.js
CHANGED
|
@@ -13603,11 +13603,10 @@ class NineChat extends HTMLElement {
|
|
|
13603
13603
|
version: "1.0.0"
|
|
13604
13604
|
}, { capabilities: { tools: {} } }));
|
|
13605
13605
|
trace.log("Connecting to MCP via WebSocket...");
|
|
13606
|
-
await
|
|
13607
|
-
trace.
|
|
13606
|
+
await __privateGet(this, _mcpClient).connect(transport);
|
|
13607
|
+
trace.log("✅ Nine MCP Connected (WebSocket)");
|
|
13608
13608
|
} catch (err) {
|
|
13609
13609
|
trace.error("❌ MCP 초기화 에러:", err);
|
|
13610
|
-
if (err.message.includes("Already connected")) ;
|
|
13611
13610
|
}
|
|
13612
13611
|
});
|
|
13613
13612
|
__privateAdd(this, _makeMenuHandler, async (e) => {
|
|
@@ -13714,7 +13713,7 @@ render_fn = function() {
|
|
|
13714
13713
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
13715
13714
|
this.shadowRoot.innerHTML = `
|
|
13716
13715
|
<style>
|
|
13717
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
13716
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.106"}/dist/css/nine-mu.css";
|
|
13718
13717
|
${customImport}
|
|
13719
13718
|
</style>
|
|
13720
13719
|
<div class="wrapper">
|
|
@@ -39932,7 +39931,7 @@ class NineDiff extends HTMLElement {
|
|
|
39932
39931
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
39933
39932
|
this.shadowRoot.innerHTML = `
|
|
39934
39933
|
<style>
|
|
39935
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
39934
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.106"}/dist/css/nine-mu.css";
|
|
39936
39935
|
${customImport}
|
|
39937
39936
|
</style>
|
|
39938
39937
|
|
|
@@ -40042,7 +40041,7 @@ render_fn2 = function() {
|
|
|
40042
40041
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
40043
40042
|
this.shadowRoot.innerHTML = `
|
|
40044
40043
|
<style>
|
|
40045
|
-
@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.106"}/dist/css/nine-mu.css";
|
|
40046
40045
|
${customImport}
|
|
40047
40046
|
</style>
|
|
40048
40047
|
|
|
@@ -40081,7 +40080,7 @@ handleCancel_fn = function() {
|
|
|
40081
40080
|
};
|
|
40082
40081
|
customElements.define("nine-diff-popup", NineDiffPopup);
|
|
40083
40082
|
const NineMu = {
|
|
40084
|
-
version: "0.1.
|
|
40083
|
+
version: "0.1.106",
|
|
40085
40084
|
init: (config2) => {
|
|
40086
40085
|
trace.log("🛠️ Nine-Mu Engine initialized", config2);
|
|
40087
40086
|
}
|