@nine-lab/nine-mu 0.1.353 → 0.1.354
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 +26 -28
- package/dist/nine-mu.js.map +1 -1
- package/dist/nine-mu.umd.js +1 -1
- package/dist/nine-mu.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/exception/ExceptionHook.js +20 -21
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.
|
|
17541
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.353"}/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.
|
|
43791
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.353"}/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.
|
|
43931
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.353"}/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.
|
|
44040
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.353"}/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.
|
|
44370
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.353"}/dist/css/nine-mu.css";
|
|
44371
44371
|
${customImport}
|
|
44372
44372
|
</style>
|
|
44373
44373
|
|
|
@@ -44472,29 +44472,30 @@ const NineExceptionStyles = {
|
|
|
44472
44472
|
background: "#121314",
|
|
44473
44473
|
// 터미널 다크 블랙 배경
|
|
44474
44474
|
border: "1px solid #343A40",
|
|
44475
|
-
// 외곽
|
|
44475
|
+
// 외곽 테두리
|
|
44476
44476
|
borderRadius: "6px",
|
|
44477
44477
|
fontFamily: 'Consolas, Monaco, "Courier New", monospace',
|
|
44478
44478
|
textAlign: "left",
|
|
44479
44479
|
boxShadow: "0 4px 12px rgba(0,0,0,0.3)",
|
|
44480
44480
|
lineHeight: "1.2"
|
|
44481
|
-
//
|
|
44481
|
+
// 기본 줄높이를 고정하여 서체 왜곡 방지
|
|
44482
44482
|
},
|
|
44483
44483
|
systemError: {
|
|
44484
44484
|
color: "#E53E3E",
|
|
44485
44485
|
// 터미널 레드 Warning
|
|
44486
44486
|
fontWeight: "bold",
|
|
44487
44487
|
fontSize: "14px",
|
|
44488
|
-
margin: "0 0
|
|
44489
|
-
//
|
|
44490
|
-
letterSpacing: "0.5px"
|
|
44488
|
+
margin: "0 0 12px 0",
|
|
44489
|
+
// ⭐ 첫 번째 줄 아래 여백 (12px)
|
|
44490
|
+
letterSpacing: "0.5px",
|
|
44491
|
+
padding: "0"
|
|
44491
44492
|
},
|
|
44492
44493
|
pre: {
|
|
44493
44494
|
background: "transparent",
|
|
44494
44495
|
color: "#F8F9FA",
|
|
44495
44496
|
padding: "0",
|
|
44496
44497
|
margin: "0 0 12px 0",
|
|
44497
|
-
//
|
|
44498
|
+
// ⭐ 브라우저 기본 마진을 지우고 정확히 하단 여백 12px 강제
|
|
44498
44499
|
border: "none",
|
|
44499
44500
|
overflowX: "auto",
|
|
44500
44501
|
whiteSpace: "pre-wrap",
|
|
@@ -44505,30 +44506,27 @@ const NineExceptionStyles = {
|
|
|
44505
44506
|
fontSize: "14px",
|
|
44506
44507
|
color: "#E2E8F0",
|
|
44507
44508
|
margin: "0",
|
|
44508
|
-
|
|
44509
|
+
padding: "0",
|
|
44509
44510
|
display: "flex",
|
|
44510
44511
|
flexDirection: "column",
|
|
44511
|
-
gap: "
|
|
44512
|
+
gap: "12px"
|
|
44513
|
+
// ⭐ 상태 메시지들 간의 간격도 12px로 통일
|
|
44512
44514
|
},
|
|
44513
44515
|
promptRow: {
|
|
44514
|
-
|
|
44515
|
-
|
|
44516
|
-
|
|
44516
|
+
margin: "0",
|
|
44517
|
+
padding: "0",
|
|
44518
|
+
display: "block"
|
|
44517
44519
|
},
|
|
44518
|
-
// ⭐ y 글자에 직접 바인딩할 터미널 링크 스타일
|
|
44519
44520
|
cliLink: {
|
|
44520
|
-
background: "transparent",
|
|
44521
44521
|
color: "#38A169",
|
|
44522
44522
|
// 터미널 그린
|
|
44523
|
-
|
|
44524
|
-
padding: "0 2px",
|
|
44523
|
+
padding: "0",
|
|
44525
44524
|
fontFamily: "Consolas, Monaco, monospace",
|
|
44526
44525
|
fontSize: "14px",
|
|
44527
44526
|
fontWeight: "bold",
|
|
44528
44527
|
cursor: "pointer",
|
|
44529
44528
|
textDecoration: "underline",
|
|
44530
|
-
textUnderlineOffset: "
|
|
44531
|
-
display: "inline"
|
|
44529
|
+
textUnderlineOffset: "3px"
|
|
44532
44530
|
}
|
|
44533
44531
|
};
|
|
44534
44532
|
class NineExceptionHook extends React.Component {
|
|
@@ -44609,9 +44607,9 @@ class NineExceptionHook extends React.Component {
|
|
|
44609
44607
|
{ style: { ...NineExceptionStyles.systemError, ...customStyles.systemError } },
|
|
44610
44608
|
"[SYSTEM] COMPONENT RENDER ERROR DETECTED"
|
|
44611
44609
|
),
|
|
44612
|
-
// 2. 에러 내용
|
|
44610
|
+
// 2. 에러 내용
|
|
44613
44611
|
React.createElement("pre", { style: { ...NineExceptionStyles.pre, ...customStyles.pre } }, errorMessage),
|
|
44614
|
-
// 3. CLI 프롬프트
|
|
44612
|
+
// 3. CLI 프롬프트 영역
|
|
44615
44613
|
React.createElement(
|
|
44616
44614
|
"div",
|
|
44617
44615
|
{ style: { ...NineExceptionStyles.footer, ...customStyles.footer } },
|
|
@@ -44620,7 +44618,7 @@ class NineExceptionHook extends React.Component {
|
|
|
44620
44618
|
{ style: NineExceptionStyles.promptRow },
|
|
44621
44619
|
React.createElement("span", null, "Send error log to Control Tower ("),
|
|
44622
44620
|
React.createElement(
|
|
44623
|
-
"
|
|
44621
|
+
"span",
|
|
44624
44622
|
{
|
|
44625
44623
|
style: { ...NineExceptionStyles.cliLink, ...customStyles.cliLink },
|
|
44626
44624
|
onClick: this.handleReport
|
|
@@ -44631,12 +44629,12 @@ class NineExceptionHook extends React.Component {
|
|
|
44631
44629
|
),
|
|
44632
44630
|
this.state.reportStatus === "sending" && React.createElement(
|
|
44633
44631
|
"div",
|
|
44634
|
-
{ style: { color: "#ED8936" } },
|
|
44632
|
+
{ style: { color: "#ED8936", margin: "0" } },
|
|
44635
44633
|
">> Connecting to Control Tower... Sending payload."
|
|
44636
44634
|
),
|
|
44637
44635
|
this.state.reportStatus === "success" && React.createElement(
|
|
44638
44636
|
"div",
|
|
44639
|
-
{ style: { display: "flex", flexDirection: "column", gap: "
|
|
44637
|
+
{ style: { display: "flex", flexDirection: "column", gap: "12px", margin: "0" } },
|
|
44640
44638
|
React.createElement("div", { style: { color: "#38A169", fontWeight: "bold" } }, ">> Transmit complete. Core engine initialized."),
|
|
44641
44639
|
React.createElement("div", { style: { color: "#A0AEC0", fontStyle: "italic", fontSize: "13px" } }, "AI가 소스 코드를 재수정하는 동안 잠시만 기다려주세요...")
|
|
44642
44640
|
)
|
|
@@ -44647,7 +44645,7 @@ class NineExceptionHook extends React.Component {
|
|
|
44647
44645
|
}
|
|
44648
44646
|
}
|
|
44649
44647
|
const NineMu = {
|
|
44650
|
-
version: "0.1.
|
|
44648
|
+
version: "0.1.353",
|
|
44651
44649
|
init: (config2) => {
|
|
44652
44650
|
trace$1.log("🛠️ Nine-Mu Engine initialized", config2);
|
|
44653
44651
|
}
|