@nine-lab/nine-mu 0.1.132 → 0.1.134
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/NineChat.js +12 -3
package/dist/nine-mu.js
CHANGED
|
@@ -13699,7 +13699,14 @@ initActions_fn = function() {
|
|
|
13699
13699
|
e.preventDefault();
|
|
13700
13700
|
const userInput = e.target.value.trim();
|
|
13701
13701
|
if (!userInput) return;
|
|
13702
|
-
const response = await __privateGet(this, _mcpClient).
|
|
13702
|
+
const response = await __privateGet(this, _mcpClient).callTool({
|
|
13703
|
+
name: "ask_nine_engine",
|
|
13704
|
+
arguments: {
|
|
13705
|
+
prompt: userInput,
|
|
13706
|
+
routes: []
|
|
13707
|
+
// 현재 화면의 메뉴 정보
|
|
13708
|
+
}
|
|
13709
|
+
});
|
|
13703
13710
|
console.log(response);
|
|
13704
13711
|
const result = JSON.parse(response.content[0].text);
|
|
13705
13712
|
if (result.action === "SHOW_DIFF") this.openDiff(result);
|
|
@@ -13712,7 +13719,7 @@ render_fn = function() {
|
|
|
13712
13719
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
13713
13720
|
this.shadowRoot.innerHTML = `
|
|
13714
13721
|
<style>
|
|
13715
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
13722
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.133"}/dist/css/nine-mu.css";
|
|
13716
13723
|
${customImport}
|
|
13717
13724
|
</style>
|
|
13718
13725
|
<div class="wrapper">
|
|
@@ -39930,7 +39937,7 @@ class NineDiff extends HTMLElement {
|
|
|
39930
39937
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
39931
39938
|
this.shadowRoot.innerHTML = `
|
|
39932
39939
|
<style>
|
|
39933
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
39940
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.133"}/dist/css/nine-mu.css";
|
|
39934
39941
|
${customImport}
|
|
39935
39942
|
</style>
|
|
39936
39943
|
|
|
@@ -40040,7 +40047,7 @@ render_fn2 = function() {
|
|
|
40040
40047
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
40041
40048
|
this.shadowRoot.innerHTML = `
|
|
40042
40049
|
<style>
|
|
40043
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
40050
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.133"}/dist/css/nine-mu.css";
|
|
40044
40051
|
${customImport}
|
|
40045
40052
|
</style>
|
|
40046
40053
|
|
|
@@ -40079,7 +40086,7 @@ handleCancel_fn = function() {
|
|
|
40079
40086
|
};
|
|
40080
40087
|
customElements.define("nine-diff-popup", NineDiffPopup);
|
|
40081
40088
|
const NineMu = {
|
|
40082
|
-
version: "0.1.
|
|
40089
|
+
version: "0.1.133",
|
|
40083
40090
|
init: (config2) => {
|
|
40084
40091
|
trace$1.log("🛠️ Nine-Mu Engine initialized", config2);
|
|
40085
40092
|
}
|