@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/dist/css/nine-mu.css +1 -0
- package/dist/nine-mu.js +7 -9
- 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/public/css/nine-mu.css +1 -0
- package/src/components/ChatMessage.js +2 -3
- package/src/components/NineChat.js +1 -1
package/package.json
CHANGED
package/public/css/nine-mu.css
CHANGED
|
@@ -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
|
-
|
|
369
|
+
|
|
370
|
+
const customImport = nine.cssPath ? `@import "${nine.cssPath}/ninePanel.css";` : "";
|
|
372
371
|
|
|
373
372
|
this.shadowRoot.innerHTML = `
|
|
374
373
|
<style>
|