@nine-lab/nine-mu 0.1.341 → 0.1.342

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
@@ -17537,7 +17537,7 @@ render_fn = function() {
17537
17537
  const customImport = nine$1.cssPath ? `@import "${nine$1.cssPath}/nine-mu.css";` : "";
17538
17538
  this.shadowRoot.innerHTML = `
17539
17539
  <style>
17540
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.340"}/dist/css/nine-mu.css";
17540
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.341"}/dist/css/nine-mu.css";
17541
17541
  ${customImport}
17542
17542
  </style>
17543
17543
  <div class="wrapper">
@@ -43787,7 +43787,7 @@ class NineDiff extends HTMLElement {
43787
43787
  const customImport = nine.cssPath ? `@import "${nine.cssPath}/nine-mu.css";` : "";
43788
43788
  this.shadowRoot.innerHTML = `
43789
43789
  <style>
43790
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.340"}/dist/css/nine-mu.css";
43790
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.341"}/dist/css/nine-mu.css";
43791
43791
  ${customImport}
43792
43792
  </style>
43793
43793
 
@@ -43927,7 +43927,7 @@ renderScaffolding_fn = function() {
43927
43927
  const customImport = nine$1.cssPath ? `@import "${nine$1.cssPath}/nine-mu.css";` : "";
43928
43928
  this.shadowRoot.innerHTML = `
43929
43929
  <style>
43930
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.340"}/dist/css/nine-mu.css";
43930
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.341"}/dist/css/nine-mu.css";
43931
43931
  ${customImport}
43932
43932
  </style>
43933
43933
 
@@ -44036,7 +44036,7 @@ render_fn2 = function() {
44036
44036
  const customImport = nine$1.cssPath ? `@import "${nine$1.cssPath}/nine-mu.css";` : "";
44037
44037
  this.shadowRoot.innerHTML = `
44038
44038
  <style>
44039
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.340"}/dist/css/nine-mu.css";
44039
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.341"}/dist/css/nine-mu.css";
44040
44040
  ${customImport}
44041
44041
  </style>
44042
44042
 
@@ -44366,7 +44366,7 @@ class ChatMessageBody extends HTMLElement {
44366
44366
  const customImport = nine.cssPath ? `@import "${nine.cssPath}/nine-mu.css";` : "";
44367
44367
  this.shadowRoot.innerHTML = `
44368
44368
  <style>
44369
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.340"}/dist/css/nine-mu.css";
44369
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.341"}/dist/css/nine-mu.css";
44370
44370
  ${customImport}
44371
44371
  </style>
44372
44372
 
@@ -44476,7 +44476,7 @@ class ExceptionHook extends HTMLElement {
44476
44476
  const customImport = nine$1.cssPath ? `@import "${nine$1.cssPath}/nine-mu.css";` : "";
44477
44477
  this.shadowRoot.innerHTML = `
44478
44478
  <style>
44479
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.340"}/dist/css/nine-mu.css";
44479
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.341"}/dist/css/nine-mu.css";
44480
44480
  ${customImport}
44481
44481
  </style>
44482
44482
 
@@ -44624,15 +44624,15 @@ renderError_fn = function(errorMessage, errorStack) {
44624
44624
  if (__privateGet(this, _hasError)) return;
44625
44625
  __privateSet(this, _hasError, true);
44626
44626
  setTimeout(() => {
44627
- console.log("🎨 [nine-exception-hook] 리액트 사이클 종료 후 에러 UI 최종 렌더링");
44627
+ trace.log("🎨 [nine-exception-hook] 리액트 사이클 종료 후 에러 UI 최종 렌더링");
44628
44628
  const coreContainer = this.shadowRoot.querySelector(".nine-hook-core");
44629
44629
  if (coreContainer) {
44630
44630
  coreContainer.style.display = "none";
44631
- console.log("🎨 [nine-exception-hook] <slot> 본문 영역 컨테이너 숨김");
44631
+ trace.log("🎨 [nine-exception-hook] <slot> 본문 영역 컨테이너 숨김");
44632
44632
  }
44633
44633
  const exceptionBoard = this.shadowRoot.querySelector(".nine-exception-board");
44634
44634
  if (!exceptionBoard) {
44635
- console.error("❌ [nine-exception-hook] .nine-exception-board 엘리먼트를 찾을 수 없습니다.");
44635
+ trace.error("❌ [nine-exception-hook] .nine-exception-board 엘리먼트를 찾을 수 없습니다.");
44636
44636
  return;
44637
44637
  }
44638
44638
  const errorHTML = `
@@ -44650,11 +44650,11 @@ renderError_fn = function(errorMessage, errorStack) {
44650
44650
  </div>
44651
44651
  `;
44652
44652
  exceptionBoard.innerHTML = errorHTML;
44653
- console.log("🎨 [nine-exception-hook] Shadow DOM에 에러 UI 최종 삽입 성공");
44653
+ trace.log("🎨 [nine-exception-hook] Shadow DOM에 에러 UI 최종 삽입 성공");
44654
44654
  const aiBtn = this.shadowRoot.querySelector(".nine-ai-btn");
44655
44655
  if (aiBtn) {
44656
44656
  aiBtn.addEventListener("click", () => __privateGet(this, _sendToAiAction).call(this, errorMessage, errorStack));
44657
- console.log("🎨 [nine-exception-hook] AI 요청 버튼 이벤트 리스너 최종 바인딩 성공");
44657
+ trace.log("🎨 [nine-exception-hook] AI 요청 버튼 이벤트 리스너 최종 바인딩 성공");
44658
44658
  }
44659
44659
  }, 0);
44660
44660
  };
@@ -44662,7 +44662,7 @@ if (!customElements.get("nine-exception-hook")) {
44662
44662
  customElements.define("nine-exception-hook", ExceptionHook);
44663
44663
  }
44664
44664
  const NineMu = {
44665
- version: "0.1.340",
44665
+ version: "0.1.341",
44666
44666
  init: (config2) => {
44667
44667
  trace$1.log("🛠️ Nine-Mu Engine initialized", config2);
44668
44668
  }