@nine-lab/nine-mu 0.1.323 → 0.1.324

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.323",
3
+ "version": "0.1.324",
4
4
  "description": "AI-Driven Full-Stack Code Fabrication Engine",
5
5
  "type": "module",
6
6
  "main": "./dist/nine-mu.umd.js",
@@ -831,6 +831,21 @@
831
831
  }
832
832
  .btn { padding: 8px 20px; cursor: pointer; border-radius: 4px; border: 1px solid #ccc; font-weight: bold; }
833
833
  .btn-confirm { background: #007bff; color: white; border: none; }
834
+ .btn-confirm[disabled] {
835
+ /* 1. 마우스 커서를 불가능(금지) 모양으로 변경 */
836
+ cursor: not-allowed;
837
+
838
+ /* 2. 버튼을 반투명하게 만들어 비활성화된 느낌 부여 */
839
+ opacity: 0.5;
840
+
841
+ /* 3. 혹시 모를 마우스 클릭/호버 이벤트 완전히 차단 */
842
+ pointer-events: none;
843
+
844
+ /* 4. (선택사항) 배경색이나 보더를 더 연한 회색 톤으로 다운 */
845
+ background-color: #e0e0e0;
846
+ color: #a0a0a0;
847
+ border-color: #d0d0d0;
848
+ }
834
849
 
835
850
  .tab-pages .tab-page {
836
851
  height: 100%;
@@ -38,10 +38,10 @@ export class NotificationHandler {
38
38
 
39
39
  switch (logger) {
40
40
  case "generate-source-brain":
41
- if (data && data.source) {
41
+ //if (data && data.source) {
42
42
  //trace.log(`[시그널 감지] 설계 완료`, data);
43
43
  this.#generateSource(data);
44
- }
44
+ //}
45
45
  break;
46
46
 
47
47
  case "modify-source-brain":
@@ -103,6 +103,11 @@ export class NotificationHandler {
103
103
  * [분리 비즈니스 로직 2] 수신된 소스코드 데이터 유효성 검증 및 추후 파일 저장 연동
104
104
  */
105
105
  #generateSource = async (data) => {
106
+
107
+ trace.log(data);
108
+
109
+ return;
110
+
106
111
  // 소스코드 데이터가 정상적으로 확보되었는지 1%의 누락 검증
107
112
  if (data.layer) {
108
113
  //trace.warn("⚠️ 소스 또는 파일명 누락 데이터 수신됨", data);