@nine-lab/nine-mu 0.1.328 → 0.1.330

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nine-lab/nine-mu",
3
- "version": "0.1.328",
3
+ "version": "0.1.330",
4
4
  "description": "AI-Driven Full-Stack Code Fabrication Engine",
5
5
  "type": "module",
6
6
  "main": "./dist/nine-mu.umd.js",
@@ -780,6 +780,7 @@
780
780
  font-weight: 700;
781
781
 
782
782
  a {
783
+ display: none;
783
784
  position: relative;
784
785
  color: green;
785
786
  text-decoration: none;
@@ -68,8 +68,6 @@ class AiMessage extends HTMLElement
68
68
  Object.fromEntries(this.#unique.map(key => [key, item[key]]))
69
69
  );
70
70
 
71
- console.log(keys);
72
-
73
71
  this.dispatchEvent(new CustomEvent("database", { bubbles: true, detail: { key : keys } }));
74
72
  });
75
73
 
@@ -368,7 +366,8 @@ class ChatMessageBody extends HTMLElement
368
366
  };
369
367
 
370
368
  #renderer = () => {
371
- const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
369
+
370
+ const customImport = nine.cssPath ? `@import "${nine.cssPath}/ninePanel.css";` : "";
372
371
 
373
372
  this.shadowRoot.innerHTML = `
374
373
  <style>
@@ -119,7 +119,7 @@ export class NineChat extends HTMLElement {
119
119
 
120
120
  if (parsed.message) {
121
121
  this.#manager.addChatHistory(parsed.message);
122
- this.#$nineChatMessage.add("ai", parsed.message);
122
+ //this.#$nineChatMessage.add("ai", parsed.message);
123
123
  }
124
124
  }
125
125
  }