@nine-lab/nine-mu 0.1.299 → 0.1.300
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/css/nine-mu.css +29 -0
- package/dist/nine-mu.js +7 -8
- 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/public/css/nine-mu.css +29 -0
- package/src/components/NineChat.js +1 -1
- package/src/components/NineDiffPopup.js +2 -2
package/package.json
CHANGED
package/public/css/nine-mu.css
CHANGED
|
@@ -831,6 +831,35 @@
|
|
|
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
|
+
|
|
835
|
+
.tab-pages .tab-page {
|
|
836
|
+
height: 100%;
|
|
837
|
+
}
|
|
838
|
+
|
|
839
|
+
nine-dialog {
|
|
840
|
+
display: flex;
|
|
841
|
+
flex-direction: column;
|
|
842
|
+
width: 85vw;
|
|
843
|
+
height: 80vh; /* 팝업 전체 높이를 브라우저 화면의 80%로 제한 */
|
|
844
|
+
min-width: 900px;
|
|
845
|
+
overflow: hidden; /* 다이얼로그 자체가 늘어나며 바깥 스크롤 생기는 현상 방지 */
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
/* 🎯 [핵심 교정]: 탭 영역이 남은 다이얼로그 높이를 100% 꽉 채우도록 설정 */
|
|
849
|
+
nine-tab {
|
|
850
|
+
flex: 1;
|
|
851
|
+
min-height: 0; /* 플렉스 자식의 무한 늘어남 방지 (스크롤 유도 필수 속성) */
|
|
852
|
+
display: flex;
|
|
853
|
+
flex-direction: column;
|
|
854
|
+
}
|
|
855
|
+
|
|
856
|
+
.footer1111 {
|
|
857
|
+
display: flex;
|
|
858
|
+
justify-content: flex-end;
|
|
859
|
+
gap: 10px;
|
|
860
|
+
padding: 15px 0 0 0;
|
|
861
|
+
border-top: 1px solid #e5e7eb;
|
|
862
|
+
}
|
|
834
863
|
}
|
|
835
864
|
|
|
836
865
|
:host(nine-diff) {
|
|
@@ -125,7 +125,7 @@ export class NineChat extends HTMLElement {
|
|
|
125
125
|
|
|
126
126
|
const asis = await this.#manager.getRoutes();
|
|
127
127
|
|
|
128
|
-
if (parsed?.selected_tool === "
|
|
128
|
+
if (parsed?.selected_tool === "generator-menu") {
|
|
129
129
|
const hasCreated = parsed?.data.some(item => item.action === 'CREATE');
|
|
130
130
|
const hasUpdated = parsed?.data.some(item => item.action === 'UPDATE');
|
|
131
131
|
const hasDeleted = parsed?.data.some(item => item.action === 'DELETE');
|
|
@@ -79,10 +79,10 @@ export class NineDiffPopup extends HTMLElement {
|
|
|
79
79
|
fileList.forEach((file) => {
|
|
80
80
|
const { layer, full_path } = file;
|
|
81
81
|
const fileName = full_path.split('/').pop() || "Unknown";
|
|
82
|
-
const captionName = `${layer.toUpperCase()} (${fileName})`;
|
|
82
|
+
//const captionName = `${layer.toUpperCase()} (${fileName})`;
|
|
83
83
|
|
|
84
84
|
totalTabHtml += `
|
|
85
|
-
<nine-tab-page caption="${
|
|
85
|
+
<nine-tab-page caption="${fileName}">
|
|
86
86
|
<nine-diff class="${layer}"></nine-diff>
|
|
87
87
|
</nine-tab-page>
|
|
88
88
|
`;
|