@nine-lab/nine-mu 0.1.131 → 0.1.132

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
@@ -13699,7 +13699,7 @@ 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).executeAgent(userInput);
13702
+ const response = await __privateGet(this, _mcpClient).sendChatMessage(userInput);
13703
13703
  console.log(response);
13704
13704
  const result = JSON.parse(response.content[0].text);
13705
13705
  if (result.action === "SHOW_DIFF") this.openDiff(result);
@@ -13712,7 +13712,7 @@ render_fn = function() {
13712
13712
  const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
13713
13713
  this.shadowRoot.innerHTML = `
13714
13714
  <style>
13715
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.130"}/dist/css/nine-mu.css";
13715
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.131"}/dist/css/nine-mu.css";
13716
13716
  ${customImport}
13717
13717
  </style>
13718
13718
  <div class="wrapper">
@@ -39930,7 +39930,7 @@ class NineDiff extends HTMLElement {
39930
39930
  const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
39931
39931
  this.shadowRoot.innerHTML = `
39932
39932
  <style>
39933
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.130"}/dist/css/nine-mu.css";
39933
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.131"}/dist/css/nine-mu.css";
39934
39934
  ${customImport}
39935
39935
  </style>
39936
39936
 
@@ -40040,7 +40040,7 @@ render_fn2 = function() {
40040
40040
  const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
40041
40041
  this.shadowRoot.innerHTML = `
40042
40042
  <style>
40043
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.130"}/dist/css/nine-mu.css";
40043
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.131"}/dist/css/nine-mu.css";
40044
40044
  ${customImport}
40045
40045
  </style>
40046
40046
 
@@ -40079,7 +40079,7 @@ handleCancel_fn = function() {
40079
40079
  };
40080
40080
  customElements.define("nine-diff-popup", NineDiffPopup);
40081
40081
  const NineMu = {
40082
- version: "0.1.130",
40082
+ version: "0.1.131",
40083
40083
  init: (config2) => {
40084
40084
  trace$1.log("🛠️ Nine-Mu Engine initialized", config2);
40085
40085
  }