분할패널 설정 간소화

This commit is contained in:
kjs 2026-01-05 12:21:02 +09:00
parent f7ab488b3c
commit d7eb91a043
3 changed files with 336 additions and 1830 deletions

View File

@ -16,13 +16,13 @@ export const splitPanelLayoutConfig = {
name: "코드 관리",
leftPanel: {
title: "코드 카테고리",
showSearch: true,
showAdd: true,
showSearch: false,
showAdd: false,
},
rightPanel: {
title: "코드 목록",
showSearch: true,
showAdd: true,
showSearch: false,
showAdd: false,
relation: {
type: "detail",
foreignKey: "category_id",
@ -34,13 +34,13 @@ export const splitPanelLayoutConfig = {
name: "테이블 조인",
leftPanel: {
title: "기본 테이블",
showSearch: true,
showSearch: false,
showAdd: false,
},
rightPanel: {
title: "조인 조건",
showSearch: false,
showAdd: true,
showAdd: false,
relation: {
type: "join",
},
@ -51,8 +51,8 @@ export const splitPanelLayoutConfig = {
name: "메뉴 설정",
leftPanel: {
title: "메뉴 트리",
showSearch: true,
showAdd: true,
showSearch: false,
showAdd: false,
},
rightPanel: {
title: "메뉴 상세",

View File

@ -22,12 +22,12 @@ export const SplitPanelLayoutDefinition = createComponentDefinition({
defaultConfig: {
leftPanel: {
title: "마스터",
showSearch: true,
showSearch: false,
showAdd: false,
},
rightPanel: {
title: "디테일",
showSearch: true,
showSearch: false,
showAdd: false,
relation: {
type: "detail",