@nine-lab/nine-mu 0.1.40 → 0.1.41
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 -4
- 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/NineDiff.js +3 -0
package/dist/nine-mu.js
CHANGED
|
@@ -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.40"}/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.40"}/dist/css/nine-mu.css";
|
|
26389
26389
|
${customImport}
|
|
26390
26390
|
</style>
|
|
26391
26391
|
|
|
@@ -26402,6 +26402,7 @@ class NineDiff extends HTMLElement {
|
|
|
26402
26402
|
bubbles: true,
|
|
26403
26403
|
composed: true
|
|
26404
26404
|
}));
|
|
26405
|
+
trace.log("dispatchEvent");
|
|
26405
26406
|
});
|
|
26406
26407
|
}
|
|
26407
26408
|
disconnectedCallback() {
|
|
@@ -26449,7 +26450,7 @@ class NineDiffPopup extends HTMLElement {
|
|
|
26449
26450
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
26450
26451
|
this.shadowRoot.innerHTML = `
|
|
26451
26452
|
<style>
|
|
26452
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
26453
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.40"}/dist/css/nine-mu.css";
|
|
26453
26454
|
${customImport}
|
|
26454
26455
|
</style>
|
|
26455
26456
|
|
|
@@ -26594,7 +26595,7 @@ if (!customElements.get("nine-dialog")) {
|
|
|
26594
26595
|
customElements.define("nine-dialog", NineDialog);
|
|
26595
26596
|
}
|
|
26596
26597
|
const NineMu = {
|
|
26597
|
-
version: "0.1.
|
|
26598
|
+
version: "0.1.40",
|
|
26598
26599
|
init: (config) => {
|
|
26599
26600
|
trace.log("🛠️ Nine-Mu Engine initialized", config);
|
|
26600
26601
|
}
|