@nine-lab/nine-mu 0.1.20 → 0.1.21
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
|
@@ -178,7 +178,7 @@ render_fn = function() {
|
|
|
178
178
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
179
179
|
this.shadowRoot.innerHTML = `
|
|
180
180
|
<style>
|
|
181
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
181
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.20"}/dist/css/nine-mu.css";
|
|
182
182
|
${customImport}
|
|
183
183
|
</style>
|
|
184
184
|
<div class="wrapper">
|
|
@@ -26378,7 +26378,7 @@ class NineDiff extends HTMLElement {
|
|
|
26378
26378
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
26379
26379
|
this.shadowRoot.innerHTML = `
|
|
26380
26380
|
<style>
|
|
26381
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
26381
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.20"}/dist/css/nine-mu.css";
|
|
26382
26382
|
${customImport}
|
|
26383
26383
|
</style>
|
|
26384
26384
|
|
|
@@ -26476,7 +26476,9 @@ _asis = new WeakMap();
|
|
|
26476
26476
|
_tobe = new WeakMap();
|
|
26477
26477
|
_lang = new WeakMap();
|
|
26478
26478
|
_diffView = new WeakMap();
|
|
26479
|
-
customElements.
|
|
26479
|
+
if (!customElements.get("nine-diff-container")) {
|
|
26480
|
+
customElements.define("nine-diff-container", NineDiffContainer);
|
|
26481
|
+
}
|
|
26480
26482
|
class NineDialog extends HTMLElement {
|
|
26481
26483
|
constructor() {
|
|
26482
26484
|
super();
|
|
@@ -26569,7 +26571,7 @@ if (!customElements.get("nine-dialog")) {
|
|
|
26569
26571
|
customElements.define("nine-dialog", NineDialog);
|
|
26570
26572
|
}
|
|
26571
26573
|
const NineMu = {
|
|
26572
|
-
version: "0.1.
|
|
26574
|
+
version: "0.1.20",
|
|
26573
26575
|
init: (config) => {
|
|
26574
26576
|
trace.log("🛠️ Nine-Mu Engine initialized", config);
|
|
26575
26577
|
}
|