@nine-lab/nine-mu 0.1.349 → 0.1.351

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
@@ -17538,7 +17538,7 @@ render_fn = function() {
17538
17538
  const customImport = nine$1.cssPath ? `@import "${nine$1.cssPath}/nine-mu.css";` : "";
17539
17539
  this.shadowRoot.innerHTML = `
17540
17540
  <style>
17541
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.348"}/dist/css/nine-mu.css";
17541
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.350"}/dist/css/nine-mu.css";
17542
17542
  ${customImport}
17543
17543
  </style>
17544
17544
  <div class="wrapper">
@@ -43788,7 +43788,7 @@ class NineDiff extends HTMLElement {
43788
43788
  const customImport = nine.cssPath ? `@import "${nine.cssPath}/nine-mu.css";` : "";
43789
43789
  this.shadowRoot.innerHTML = `
43790
43790
  <style>
43791
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.348"}/dist/css/nine-mu.css";
43791
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.350"}/dist/css/nine-mu.css";
43792
43792
  ${customImport}
43793
43793
  </style>
43794
43794
 
@@ -43928,7 +43928,7 @@ renderScaffolding_fn = function() {
43928
43928
  const customImport = nine$1.cssPath ? `@import "${nine$1.cssPath}/nine-mu.css";` : "";
43929
43929
  this.shadowRoot.innerHTML = `
43930
43930
  <style>
43931
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.348"}/dist/css/nine-mu.css";
43931
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.350"}/dist/css/nine-mu.css";
43932
43932
  ${customImport}
43933
43933
  </style>
43934
43934
 
@@ -44037,7 +44037,7 @@ render_fn2 = function() {
44037
44037
  const customImport = nine$1.cssPath ? `@import "${nine$1.cssPath}/nine-mu.css";` : "";
44038
44038
  this.shadowRoot.innerHTML = `
44039
44039
  <style>
44040
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.348"}/dist/css/nine-mu.css";
44040
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.350"}/dist/css/nine-mu.css";
44041
44041
  ${customImport}
44042
44042
  </style>
44043
44043
 
@@ -44367,7 +44367,7 @@ class ChatMessageBody extends HTMLElement {
44367
44367
  const customImport = nine.cssPath ? `@import "${nine.cssPath}/nine-mu.css";` : "";
44368
44368
  this.shadowRoot.innerHTML = `
44369
44369
  <style>
44370
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.348"}/dist/css/nine-mu.css";
44370
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.350"}/dist/css/nine-mu.css";
44371
44371
  ${customImport}
44372
44372
  </style>
44373
44373
 
@@ -44480,26 +44480,6 @@ const NineExceptionStyles = {
44480
44480
  boxShadow: "0 4px 12px rgba(0,0,0,0.3)"
44481
44481
  // 터미널 윈도우 입체감
44482
44482
  },
44483
- title: {
44484
- color: "#FFFFFF",
44485
- // 화이트 타이틀
44486
- marginTop: 0,
44487
- fontSize: "16px",
44488
- fontWeight: "600",
44489
- display: "flex",
44490
- alignItems: "center",
44491
- gap: "8px",
44492
- borderBottom: "1px solid #2D3139",
44493
- // 상단 바 구분선 느낌
44494
- paddingBottom: "12px"
44495
- },
44496
- label: {
44497
- margin: "15px 0 8px 0",
44498
- fontWeight: "bold",
44499
- color: "#A0AEC0",
44500
- // 프롬프트 서브 텍스트 (연한 그레이)
44501
- fontSize: "13px"
44502
- },
44503
44483
  pre: {
44504
44484
  background: "#1A1C1E",
44505
44485
  // 코드 블록 내부의 살짝 더 깊은 블랙
@@ -44602,9 +44582,31 @@ class NineExceptionHook extends React.Component {
44602
44582
  {
44603
44583
  style: { ...NineExceptionStyles.container, ...customStyles.container, ...this.props.containerStyle }
44604
44584
  },
44605
- React.createElement("h3", { style: { ...NineExceptionStyles.title, ...customStyles.title } }, "🤖 [SYSTEM] COMPONENT RENDER ERROR DETECTED"),
44606
- React.createElement("p", { style: { ...NineExceptionStyles.label, ...customStyles.label } }, "$ cat error.log"),
44585
+ /**
44586
+ // 1. 상단 프롬프트 헤더 (시스템 상태 알림)
44587
+ React.createElement(
44588
+ 'div',
44589
+ { style: { ...NineExceptionStyles.title, ...customStyles.title } },
44590
+ React.createElement('span', { style: { color: '#38A169', marginRight: '5px' } }, 'nandoo@nine-mu:~$'),
44591
+ './system-check --status'
44592
+ ), */
44593
+ // 2. 시스템 에러 감지 출력 로그
44594
+ React.createElement(
44595
+ "div",
44596
+ { style: { color: "red", margin: "15px 0 5px 0", letterSpacing: "0.5px" } },
44597
+ "[SYSTEM] COMPONENT RENDER ERROR DETECTED"
44598
+ ),
44599
+ /**
44600
+ // 3. 명령어 입력 시뮬레이션 ($ cat error.log)
44601
+ React.createElement(
44602
+ 'p',
44603
+ { style: { ...NineExceptionStyles.label, ...customStyles.label } },
44604
+ React.createElement('span', { style: { color: '#3182CE', marginRight: '6px' } }, 'nandoo@nine-mu:~$'),
44605
+ 'cat error.log'
44606
+ ), */
44607
+ // 4. 에러 내용 본문 박스
44607
44608
  React.createElement("pre", { style: { ...NineExceptionStyles.pre, ...customStyles.pre } }, errorMessage),
44609
+ // 5. 하단 버튼 및 피드백 영역
44608
44610
  React.createElement(
44609
44611
  "div",
44610
44612
  { style: { ...NineExceptionStyles.footer, ...customStyles.footer } },
@@ -44634,7 +44636,7 @@ class NineExceptionHook extends React.Component {
44634
44636
  }
44635
44637
  }
44636
44638
  const NineMu = {
44637
- version: "0.1.348",
44639
+ version: "0.1.350",
44638
44640
  init: (config2) => {
44639
44641
  trace$1.log("🛠️ Nine-Mu Engine initialized", config2);
44640
44642
  }