@nine-lab/nine-mu 0.1.35 → 0.1.37
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 +5 -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 +1 -1
package/dist/nine-mu.js
CHANGED
|
@@ -106,7 +106,7 @@ class NineChat extends HTMLElement {
|
|
|
106
106
|
__privateAdd(this, _service, null);
|
|
107
107
|
__privateAdd(this, _routes, []);
|
|
108
108
|
__privateAdd(this, _diffPopup);
|
|
109
|
-
__publicField(this, "
|
|
109
|
+
__publicField(this, "showDiff", (data) => {
|
|
110
110
|
__privateGet(this, _diffPopup).popup(data);
|
|
111
111
|
});
|
|
112
112
|
this.attachShadow({ mode: "open" });
|
|
@@ -183,7 +183,7 @@ render_fn = function() {
|
|
|
183
183
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
184
184
|
this.shadowRoot.innerHTML = `
|
|
185
185
|
<style>
|
|
186
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
186
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.36"}/dist/css/nine-mu.css";
|
|
187
187
|
${customImport}
|
|
188
188
|
</style>
|
|
189
189
|
<div class="wrapper">
|
|
@@ -26385,7 +26385,7 @@ class NineDiff extends HTMLElement {
|
|
|
26385
26385
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
26386
26386
|
this.shadowRoot.innerHTML = `
|
|
26387
26387
|
<style>
|
|
26388
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
26388
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.36"}/dist/css/nine-mu.css";
|
|
26389
26389
|
${customImport}
|
|
26390
26390
|
</style>
|
|
26391
26391
|
|
|
@@ -26449,7 +26449,7 @@ class NineDiffPopup extends HTMLElement {
|
|
|
26449
26449
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
26450
26450
|
this.shadowRoot.innerHTML = `
|
|
26451
26451
|
<style>
|
|
26452
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
26452
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.36"}/dist/css/nine-mu.css";
|
|
26453
26453
|
${customImport}
|
|
26454
26454
|
</style>
|
|
26455
26455
|
|
|
@@ -26593,7 +26593,7 @@ if (!customElements.get("nine-dialog")) {
|
|
|
26593
26593
|
customElements.define("nine-dialog", NineDialog);
|
|
26594
26594
|
}
|
|
26595
26595
|
const NineMu = {
|
|
26596
|
-
version: "0.1.
|
|
26596
|
+
version: "0.1.36",
|
|
26597
26597
|
init: (config) => {
|
|
26598
26598
|
trace.log("🛠️ Nine-Mu Engine initialized", config);
|
|
26599
26599
|
}
|