diff --git a/frontend/lib/registry/components/split-panel-layout/SplitPanelLayoutComponent.tsx b/frontend/lib/registry/components/split-panel-layout/SplitPanelLayoutComponent.tsx index 2bfdda74..ef91a23d 100644 --- a/frontend/lib/registry/components/split-panel-layout/SplitPanelLayoutComponent.tsx +++ b/frontend/lib/registry/components/split-panel-layout/SplitPanelLayoutComponent.tsx @@ -2030,8 +2030,17 @@ export const SplitPanelLayoutComponent: React.FC className="border-border flex flex-shrink-0 flex-col border-r" > - -
+ +
{componentConfig.leftPanel?.title || "좌측 패널"} @@ -2042,8 +2051,10 @@ export const SplitPanelLayoutComponent: React.FC )}
- {componentConfig.leftPanel?.showSearch && ( -
+ + {componentConfig.leftPanel?.showSearch && ( +
+
className="pl-9" />
- )} - +
+ )} {/* 좌측 데이터 목록/테이블 */} {componentConfig.leftPanel?.displayMode === "table" ? ( @@ -2510,8 +2521,17 @@ export const SplitPanelLayoutComponent: React.FC className="flex flex-shrink-0 flex-col" > - -
+ +
{componentConfig.rightPanel?.title || "우측 패널"} @@ -2527,8 +2547,10 @@ export const SplitPanelLayoutComponent: React.FC
)}
- {componentConfig.rightPanel?.showSearch && ( -
+ + {componentConfig.rightPanel?.showSearch && ( +
+
className="pl-9" />
- )} - +
+ )} {/* 우측 데이터 */} {isLoadingRight ? ( diff --git a/frontend/lib/registry/components/split-panel-layout/SplitPanelLayoutConfigPanel.tsx b/frontend/lib/registry/components/split-panel-layout/SplitPanelLayoutConfigPanel.tsx index 203e1e47..5ca50ffb 100644 --- a/frontend/lib/registry/components/split-panel-layout/SplitPanelLayoutConfigPanel.tsx +++ b/frontend/lib/registry/components/split-panel-layout/SplitPanelLayoutConfigPanel.tsx @@ -602,6 +602,19 @@ export const SplitPanelLayoutConfigPanel: React.FC
+
+ + updateLeftPanel({ panelHeaderHeight: parseInt(e.target.value) || 48 })} + placeholder="48" + min={32} + max={120} + /> +

패널 상단 헤더의 높이 (기본: 48px)

+
+
@@ -1486,6 +1499,19 @@ export const SplitPanelLayoutConfigPanel: React.FC
+
+ + updateRightPanel({ panelHeaderHeight: parseInt(e.target.value) || 48 })} + placeholder="48" + min={32} + max={120} + /> +

패널 상단 헤더의 높이 (기본: 48px)

+
+ {/* 관계 타입에 따라 테이블 선택 UI 변경 */} {relationshipType === "detail" ? ( // 상세 모드: 좌측과 동일한 테이블 (자동 설정) diff --git a/frontend/lib/registry/components/split-panel-layout/types.ts b/frontend/lib/registry/components/split-panel-layout/types.ts index 3fdc3792..0e9d6db9 100644 --- a/frontend/lib/registry/components/split-panel-layout/types.ts +++ b/frontend/lib/registry/components/split-panel-layout/types.ts @@ -8,6 +8,7 @@ export interface SplitPanelLayoutConfig { // 좌측 패널 설정 leftPanel: { title: string; + panelHeaderHeight?: number; // 패널 상단 헤더 높이 (px) tableName?: string; // 데이터베이스 테이블명 dataSource?: string; // API 엔드포인트 displayMode?: "list" | "table"; // 표시 모드: 목록 또는 테이블 @@ -70,6 +71,7 @@ export interface SplitPanelLayoutConfig { // 우측 패널 설정 rightPanel: { title: string; + panelHeaderHeight?: number; // 패널 상단 헤더 높이 (px) tableName?: string; dataSource?: string; displayMode?: "list" | "table"; // 표시 모드: 목록 또는 테이블