@nine-lab/nine-mu 0.1.106 → 0.1.108
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 -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 +7 -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.107"}/dist/css/nine-mu.css";
|
|
13718
13717
|
${customImport}
|
|
13719
13718
|
</style>
|
|
13720
13719
|
<div class="wrapper">
|
|
@@ -13755,6 +13754,7 @@ render_fn = function() {
|
|
|
13755
13754
|
_makeMenuHandler = new WeakMap();
|
|
13756
13755
|
_sourceGenHandler = new WeakMap();
|
|
13757
13756
|
_showDiff = new WeakMap();
|
|
13757
|
+
trace.init("nine-mu", "#0969da");
|
|
13758
13758
|
if (!customElements.get("nine-chat")) {
|
|
13759
13759
|
customElements.define("nine-chat", NineChat);
|
|
13760
13760
|
}
|
|
@@ -39932,7 +39932,7 @@ class NineDiff extends HTMLElement {
|
|
|
39932
39932
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
39933
39933
|
this.shadowRoot.innerHTML = `
|
|
39934
39934
|
<style>
|
|
39935
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
39935
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.107"}/dist/css/nine-mu.css";
|
|
39936
39936
|
${customImport}
|
|
39937
39937
|
</style>
|
|
39938
39938
|
|
|
@@ -40042,7 +40042,7 @@ render_fn2 = function() {
|
|
|
40042
40042
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
40043
40043
|
this.shadowRoot.innerHTML = `
|
|
40044
40044
|
<style>
|
|
40045
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
40045
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.107"}/dist/css/nine-mu.css";
|
|
40046
40046
|
${customImport}
|
|
40047
40047
|
</style>
|
|
40048
40048
|
|
|
@@ -40081,7 +40081,7 @@ handleCancel_fn = function() {
|
|
|
40081
40081
|
};
|
|
40082
40082
|
customElements.define("nine-diff-popup", NineDiffPopup);
|
|
40083
40083
|
const NineMu = {
|
|
40084
|
-
version: "0.1.
|
|
40084
|
+
version: "0.1.107",
|
|
40085
40085
|
init: (config2) => {
|
|
40086
40086
|
trace.log("🛠️ Nine-Mu Engine initialized", config2);
|
|
40087
40087
|
}
|