@nine-lab/nine-mu 0.1.157 → 0.1.158

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
@@ -13802,7 +13802,7 @@ initActions_fn = function() {
13802
13802
  $textarea.addEventListener("keypress", async (e) => {
13803
13803
  if (e.key === "Enter" && !e.shiftKey) {
13804
13804
  e.preventDefault();
13805
- const userInput = e.target.value.trim();
13805
+ const userInput = $textarea.value.trim();
13806
13806
  if (!userInput || this.isProcessing) return;
13807
13807
  this.isProcessing = true;
13808
13808
  __privateGet(this, _$nineChatMessage).add("me", userInput);
@@ -13823,7 +13823,7 @@ render_fn = function() {
13823
13823
  const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
13824
13824
  this.shadowRoot.innerHTML = `
13825
13825
  <style>
13826
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.156"}/dist/css/nine-mu.css";
13826
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.157"}/dist/css/nine-mu.css";
13827
13827
  ${customImport}
13828
13828
  </style>
13829
13829
  <div class="wrapper">
@@ -40042,7 +40042,7 @@ class NineDiff extends HTMLElement {
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.156"}/dist/css/nine-mu.css";
40045
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.157"}/dist/css/nine-mu.css";
40046
40046
  ${customImport}
40047
40047
  </style>
40048
40048
 
@@ -40152,7 +40152,7 @@ render_fn2 = function() {
40152
40152
  const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
40153
40153
  this.shadowRoot.innerHTML = `
40154
40154
  <style>
40155
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.156"}/dist/css/nine-mu.css";
40155
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.157"}/dist/css/nine-mu.css";
40156
40156
  ${customImport}
40157
40157
  </style>
40158
40158
 
@@ -40480,7 +40480,7 @@ class ChatMessage extends HTMLElement {
40480
40480
  const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
40481
40481
  this.shadowRoot.innerHTML = `
40482
40482
  <style>
40483
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.156"}/dist/css/nine-mu.css";
40483
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.157"}/dist/css/nine-mu.css";
40484
40484
  ${customImport}
40485
40485
  </style>
40486
40486
 
@@ -40574,7 +40574,7 @@ if (!customElements.get("nine-chat-me")) {
40574
40574
  customElements.define("nine-chat-me", MyMessage);
40575
40575
  }
40576
40576
  const NineMu = {
40577
- version: "0.1.156",
40577
+ version: "0.1.157",
40578
40578
  init: (config2) => {
40579
40579
  trace$1.log("🛠️ Nine-Mu Engine initialized", config2);
40580
40580
  }