@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nine-lab/nine-mu",
3
- "version": "0.1.356",
3
+ "version": "0.1.357",
4
4
  "description": "AI-Driven Full-Stack Code Fabrication Engine",
5
5
  "type": "module",
6
6
  "main": "./dist/nine-mu.umd.js",
@@ -5,22 +5,30 @@ import React from 'react';
5
5
  // ==========================================
6
6
  export const NineExceptionStyles = {
7
7
  container: {
8
- padding: '25px',
9
- margin: '20px',
10
- background: '#121314',
11
- border: '1px solid #343A40',
12
- borderRadius: '6px',
8
+ // 1. 화면 전체를 꽉 채우는 터미널 화면으로 전환
9
+ position: 'absolute',
10
+ top: 0,
11
+ left: 0,
12
+ width: '100%',
13
+ height: '100%',
14
+ padding: '40px', // 내부 여백을 넉넉히 주어 가독성 확보
15
+ boxSizing: 'border-box',
16
+ background: '#121314', // 터미널 다크 블랙 배경
13
17
  fontFamily: 'Consolas, Monaco, "Courier New", monospace',
14
18
  textAlign: 'left',
15
- boxShadow: '0 4px 12px rgba(0,0,0,0.3)',
16
- // 1. 수정: 전체 내부 줄간격을 1.5 정도로 주어 터미널 특유의 쾌적하고 꽉 찬 느낌을 제공
17
- lineHeight: '1.5'
19
+ zIndex: 9999, // 화면 최상단으로 올리기
20
+
21
+ // 2. 미세하게 엇갈리던 줄간격을 완벽한 시스템 그리드로 정렬
22
+ display: 'flex',
23
+ flexDirection: 'column',
24
+ gap: '16px', // 모든 줄 사이의 간격을 16px로 강제 통일
25
+ lineHeight: '1'
18
26
  },
19
27
  systemError: {
20
- color: '#999', // 캡처 화면과 동일하게 #999 유지
28
+ color: '#999', // 문구 색상 #999 톤다운
21
29
  fontWeight: 'bold',
22
30
  fontSize: '14px',
23
- margin: '0', // 2. 수정: 아래 마진을 없애서 순수 lineHeight로만 줄간격 통일
31
+ margin: '0', // 외부 여백을 제거하여 flex gap으로 제어
24
32
  letterSpacing: '0.5px',
25
33
  padding: '0'
26
34
  },
@@ -28,41 +36,38 @@ export const NineExceptionStyles = {
28
36
  background: 'transparent',
29
37
  color: '#F8F9FA',
30
38
  padding: '0',
31
- margin: '0', // 3. 수정: 아래 마진을 없애서 다음 줄과의 간격을 첫 줄 간격과 100% 일치시킴
39
+ margin: '0', // pre 태그 고유의 엉뚱한 마진 원천 차단
32
40
  border: 'none',
33
41
  overflowX: 'auto',
34
42
  whiteSpace: 'pre-wrap',
35
43
  fontFamily: 'Consolas, Monaco, monospace',
36
44
  fontSize: '14px',
37
- // 4. 추가: 브라우저가 pre 태그에 임의로 잡는 베이스라인 정렬을 강제로 리셋
38
45
  display: 'block'
39
46
  },
40
47
  footer: {
41
48
  fontSize: '14px',
42
- color: '#999', // ⭐ 전체 기본 텍스트 톤을 #999로 변경
49
+ color: '#999',
43
50
  margin: '0',
44
51
  padding: '0',
45
52
  display: 'flex',
46
53
  flexDirection: 'column',
47
- gap: '12px' // 하단 상태 로그 적재 시 간격 12px
54
+ gap: '16px' // 후속 로그 적재 시 간격 일치
48
55
  },
49
56
  promptRow: {
50
57
  margin: '0',
51
58
  padding: '0',
52
59
  display: 'block',
53
- lineHeight: '1', // 줄간 격차 원천 차단
54
- color: '#999' // ⭐ 괄호 및 텍스트 전체 #999 적용
60
+ color: '#999' // Send err... 문구 색상 #999 적용
55
61
  },
56
62
  cliLink: {
57
- color: '#38A169', // 선택 수단 y는 터미널 그린 유지
63
+ color: '#38A169', // y 링크는 터미널 그린 유지
58
64
  padding: '0',
59
65
  fontFamily: 'Consolas, Monaco, monospace',
60
66
  fontSize: '14px',
61
67
  fontWeight: 'bold',
62
68
  cursor: 'pointer',
63
69
  textDecoration: 'underline',
64
- textUnderlineOffset: '3px',
65
- lineHeight: '1'
70
+ textUnderlineOffset: '3px'
66
71
  }
67
72
  };
68
73