@nine-lab/nine-mu 0.1.23 → 0.1.24

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.22"}/dist/css/nine-mu.css";
181
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.23"}/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.22"}/dist/css/nine-mu.css";
26381
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.23"}/dist/css/nine-mu.css";
26382
26382
  ${customImport}
26383
26383
  </style>
26384
26384
 
@@ -26431,9 +26431,12 @@ class NineDiffContainer extends HTMLElement {
26431
26431
  * @param {Object} data - { asis, tobe, lang }
26432
26432
  */
26433
26433
  __publicField(this, "setData", ({ asis, tobe, lang }) => {
26434
- __privateSet(this, _asis, asis || "");
26435
- __privateSet(this, _tobe, tobe || "");
26436
- __privateSet(this, _lang, lang || "javascript");
26434
+ try {
26435
+ __privateSet(this, _asis, asis || "");
26436
+ __privateSet(this, _tobe, tobe || "");
26437
+ __privateSet(this, _lang, lang || "javascript");
26438
+ } catch (e) {
26439
+ }
26437
26440
  this.render();
26438
26441
  });
26439
26442
  // 최종 결과물(사용자가 편집한 ASIS 내용)을 가져옵니다.
@@ -26494,7 +26497,7 @@ class NineDiffPopup extends HTMLElement {
26494
26497
  render() {
26495
26498
  this.shadowRoot.innerHTML = `
26496
26499
  <style>
26497
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-ai@${"0.1.22"}/dist/css/nine-ai.css";
26500
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-ai@${"0.1.23"}/dist/css/nine-ai.css";
26498
26501
  /* nx-dialog 내부 스타일 조정 */
26499
26502
  nx-dialog { --dialog-width: 90vw; --dialog-height: 85vh; }
26500
26503
  .footer {
@@ -26649,7 +26652,7 @@ if (!customElements.get("nine-dialog")) {
26649
26652
  customElements.define("nine-dialog", NineDialog);
26650
26653
  }
26651
26654
  const NineMu = {
26652
- version: "0.1.22",
26655
+ version: "0.1.23",
26653
26656
  init: (config) => {
26654
26657
  trace.log("🛠️ Nine-Mu Engine initialized", config);
26655
26658
  }