@nine-lab/nine-mu 0.1.146 → 0.1.147
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
CHANGED
|
@@ -13513,6 +13513,7 @@ class NineChatManager {
|
|
|
13513
13513
|
__privateAdd(this, _owner);
|
|
13514
13514
|
__publicField(this, "handleChatSubmit", async (el) => {
|
|
13515
13515
|
trace.log(__privateGet(this, _mcpClient));
|
|
13516
|
+
const routes = [];
|
|
13516
13517
|
__privateMethod(this, _NineChatManager_instances, callTool_fn).call(this, "system-brain", {
|
|
13517
13518
|
user_input: el.value.trim(),
|
|
13518
13519
|
routes,
|
|
@@ -13532,12 +13533,12 @@ class NineChatManager {
|
|
|
13532
13533
|
}
|
|
13533
13534
|
try {
|
|
13534
13535
|
__privateMethod(this, _NineChatManager_instances, pushMessage_fn).call(this, "user", userInput);
|
|
13535
|
-
const
|
|
13536
|
+
const routes = await __privateMethod(this, _NineChatManager_instances, fetchRoutes_fn).call(this);
|
|
13536
13537
|
const response = await __privateGet(this, _mcpClient).callTool({
|
|
13537
13538
|
name: "system-brain",
|
|
13538
13539
|
arguments: {
|
|
13539
13540
|
user_input: userInput,
|
|
13540
|
-
routes
|
|
13541
|
+
routes,
|
|
13541
13542
|
current_path: window.location.pathname
|
|
13542
13543
|
// 실시간 경로 주입
|
|
13543
13544
|
}
|
|
@@ -13822,7 +13823,7 @@ render_fn = function() {
|
|
|
13822
13823
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
13823
13824
|
this.shadowRoot.innerHTML = `
|
|
13824
13825
|
<style>
|
|
13825
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
13826
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.146"}/dist/css/nine-mu.css";
|
|
13826
13827
|
${customImport}
|
|
13827
13828
|
</style>
|
|
13828
13829
|
<div class="wrapper">
|
|
@@ -40040,7 +40041,7 @@ class NineDiff extends HTMLElement {
|
|
|
40040
40041
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
40041
40042
|
this.shadowRoot.innerHTML = `
|
|
40042
40043
|
<style>
|
|
40043
|
-
@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.146"}/dist/css/nine-mu.css";
|
|
40044
40045
|
${customImport}
|
|
40045
40046
|
</style>
|
|
40046
40047
|
|
|
@@ -40150,7 +40151,7 @@ render_fn2 = function() {
|
|
|
40150
40151
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
40151
40152
|
this.shadowRoot.innerHTML = `
|
|
40152
40153
|
<style>
|
|
40153
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
40154
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.146"}/dist/css/nine-mu.css";
|
|
40154
40155
|
${customImport}
|
|
40155
40156
|
</style>
|
|
40156
40157
|
|
|
@@ -40189,7 +40190,7 @@ handleCancel_fn = function() {
|
|
|
40189
40190
|
};
|
|
40190
40191
|
customElements.define("nine-diff-popup", NineDiffPopup);
|
|
40191
40192
|
const NineMu = {
|
|
40192
|
-
version: "0.1.
|
|
40193
|
+
version: "0.1.146",
|
|
40193
40194
|
init: (config2) => {
|
|
40194
40195
|
trace$1.log("🛠️ Nine-Mu Engine initialized", config2);
|
|
40195
40196
|
}
|