@nine-lab/nine-mu 0.1.356 → 0.1.357
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 +32 -26
- 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 +24 -19
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.356"}/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.356"}/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.356"}/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.356"}/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.356"}/dist/css/nine-mu.css";
|
|
44371
44371
|
${customImport}
|
|
44372
44372
|
</style>
|
|
44373
44373
|
|
|
@@ -44467,24 +44467,35 @@ if (!customElements.get("nine-chat-progress")) {
|
|
|
44467
44467
|
}
|
|
44468
44468
|
const NineExceptionStyles = {
|
|
44469
44469
|
container: {
|
|
44470
|
-
|
|
44471
|
-
|
|
44470
|
+
// 1. 화면 전체를 꽉 채우는 터미널 화면으로 전환
|
|
44471
|
+
position: "absolute",
|
|
44472
|
+
top: 0,
|
|
44473
|
+
left: 0,
|
|
44474
|
+
width: "100%",
|
|
44475
|
+
height: "100%",
|
|
44476
|
+
padding: "40px",
|
|
44477
|
+
// 내부 여백을 넉넉히 주어 가독성 확보
|
|
44478
|
+
boxSizing: "border-box",
|
|
44472
44479
|
background: "#121314",
|
|
44473
|
-
|
|
44474
|
-
borderRadius: "6px",
|
|
44480
|
+
// 터미널 다크 블랙 배경
|
|
44475
44481
|
fontFamily: 'Consolas, Monaco, "Courier New", monospace',
|
|
44476
44482
|
textAlign: "left",
|
|
44477
|
-
|
|
44478
|
-
//
|
|
44479
|
-
|
|
44483
|
+
zIndex: 9999,
|
|
44484
|
+
// 화면 최상단으로 올리기
|
|
44485
|
+
// 2. 미세하게 엇갈리던 줄간격을 완벽한 시스템 그리드로 정렬
|
|
44486
|
+
display: "flex",
|
|
44487
|
+
flexDirection: "column",
|
|
44488
|
+
gap: "16px",
|
|
44489
|
+
// 모든 줄 사이의 간격을 16px로 강제 통일
|
|
44490
|
+
lineHeight: "1"
|
|
44480
44491
|
},
|
|
44481
44492
|
systemError: {
|
|
44482
44493
|
color: "#999",
|
|
44483
|
-
//
|
|
44494
|
+
// 문구 색상 #999로 톤다운
|
|
44484
44495
|
fontWeight: "bold",
|
|
44485
44496
|
fontSize: "14px",
|
|
44486
44497
|
margin: "0",
|
|
44487
|
-
//
|
|
44498
|
+
// 외부 여백을 제거하여 flex gap으로 제어
|
|
44488
44499
|
letterSpacing: "0.5px",
|
|
44489
44500
|
padding: "0"
|
|
44490
44501
|
},
|
|
@@ -44493,46 +44504,41 @@ const NineExceptionStyles = {
|
|
|
44493
44504
|
color: "#F8F9FA",
|
|
44494
44505
|
padding: "0",
|
|
44495
44506
|
margin: "0",
|
|
44496
|
-
//
|
|
44507
|
+
// pre 태그 고유의 엉뚱한 마진 원천 차단
|
|
44497
44508
|
border: "none",
|
|
44498
44509
|
overflowX: "auto",
|
|
44499
44510
|
whiteSpace: "pre-wrap",
|
|
44500
44511
|
fontFamily: "Consolas, Monaco, monospace",
|
|
44501
44512
|
fontSize: "14px",
|
|
44502
|
-
// 4. 추가: 브라우저가 pre 태그에 임의로 잡는 베이스라인 정렬을 강제로 리셋
|
|
44503
44513
|
display: "block"
|
|
44504
44514
|
},
|
|
44505
44515
|
footer: {
|
|
44506
44516
|
fontSize: "14px",
|
|
44507
44517
|
color: "#999",
|
|
44508
|
-
// ⭐ 전체 기본 텍스트 톤을 #999로 변경
|
|
44509
44518
|
margin: "0",
|
|
44510
44519
|
padding: "0",
|
|
44511
44520
|
display: "flex",
|
|
44512
44521
|
flexDirection: "column",
|
|
44513
|
-
gap: "
|
|
44514
|
-
//
|
|
44522
|
+
gap: "16px"
|
|
44523
|
+
// 후속 로그 적재 시 간격 일치
|
|
44515
44524
|
},
|
|
44516
44525
|
promptRow: {
|
|
44517
44526
|
margin: "0",
|
|
44518
44527
|
padding: "0",
|
|
44519
44528
|
display: "block",
|
|
44520
|
-
lineHeight: "1",
|
|
44521
|
-
// 줄간 격차 원천 차단
|
|
44522
44529
|
color: "#999"
|
|
44523
|
-
//
|
|
44530
|
+
// Send err... 문구 색상 #999 적용
|
|
44524
44531
|
},
|
|
44525
44532
|
cliLink: {
|
|
44526
44533
|
color: "#38A169",
|
|
44527
|
-
//
|
|
44534
|
+
// y 링크는 터미널 그린 유지
|
|
44528
44535
|
padding: "0",
|
|
44529
44536
|
fontFamily: "Consolas, Monaco, monospace",
|
|
44530
44537
|
fontSize: "14px",
|
|
44531
44538
|
fontWeight: "bold",
|
|
44532
44539
|
cursor: "pointer",
|
|
44533
44540
|
textDecoration: "underline",
|
|
44534
|
-
textUnderlineOffset: "3px"
|
|
44535
|
-
lineHeight: "1"
|
|
44541
|
+
textUnderlineOffset: "3px"
|
|
44536
44542
|
}
|
|
44537
44543
|
};
|
|
44538
44544
|
class NineExceptionHook extends React.Component {
|
|
@@ -44651,7 +44657,7 @@ class NineExceptionHook extends React.Component {
|
|
|
44651
44657
|
}
|
|
44652
44658
|
}
|
|
44653
44659
|
const NineMu = {
|
|
44654
|
-
version: "0.1.
|
|
44660
|
+
version: "0.1.356",
|
|
44655
44661
|
init: (config2) => {
|
|
44656
44662
|
trace$1.log("🛠️ Nine-Mu Engine initialized", config2);
|
|
44657
44663
|
}
|