@nine-lab/nine-mu 0.1.24 → 0.1.25
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.24"}/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.24"}/dist/css/nine-mu.css";
|
|
26382
26382
|
${customImport}
|
|
26383
26383
|
</style>
|
|
26384
26384
|
|
|
@@ -26430,11 +26430,11 @@ class NineDiffContainer extends HTMLElement {
|
|
|
26430
26430
|
* 단일 비교 데이터를 설정합니다.
|
|
26431
26431
|
* @param {Object} data - { asis, tobe, lang }
|
|
26432
26432
|
*/
|
|
26433
|
-
__publicField(this, "setData", (
|
|
26433
|
+
__publicField(this, "setData", (data) => {
|
|
26434
26434
|
try {
|
|
26435
|
-
__privateSet(this, _asis, asis || "");
|
|
26436
|
-
__privateSet(this, _tobe, tobe || "");
|
|
26437
|
-
__privateSet(this, _lang, lang || "
|
|
26435
|
+
__privateSet(this, _asis, (data == null ? void 0 : data.asis) || "");
|
|
26436
|
+
__privateSet(this, _tobe, (data == null ? void 0 : data.tobe) || "");
|
|
26437
|
+
__privateSet(this, _lang, (data == null ? void 0 : data.lang) || "");
|
|
26438
26438
|
} catch (e) {
|
|
26439
26439
|
}
|
|
26440
26440
|
this.render();
|
|
@@ -26497,7 +26497,7 @@ class NineDiffPopup extends HTMLElement {
|
|
|
26497
26497
|
render() {
|
|
26498
26498
|
this.shadowRoot.innerHTML = `
|
|
26499
26499
|
<style>
|
|
26500
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-ai@${"0.1.
|
|
26500
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-ai@${"0.1.24"}/dist/css/nine-ai.css";
|
|
26501
26501
|
/* nx-dialog 내부 스타일 조정 */
|
|
26502
26502
|
nx-dialog { --dialog-width: 90vw; --dialog-height: 85vh; }
|
|
26503
26503
|
.footer {
|
|
@@ -26652,7 +26652,7 @@ if (!customElements.get("nine-dialog")) {
|
|
|
26652
26652
|
customElements.define("nine-dialog", NineDialog);
|
|
26653
26653
|
}
|
|
26654
26654
|
const NineMu = {
|
|
26655
|
-
version: "0.1.
|
|
26655
|
+
version: "0.1.24",
|
|
26656
26656
|
init: (config) => {
|
|
26657
26657
|
trace.log("🛠️ Nine-Mu Engine initialized", config);
|
|
26658
26658
|
}
|