패널 정리 중간 커밋

This commit is contained in:
kjs
2025-10-28 17:33:03 +09:00
parent b5605d93da
commit 743ae6dbf1
43 changed files with 1191 additions and 1666 deletions

View File

@@ -71,26 +71,16 @@ export const LeftUnifiedToolbar: React.FC<LeftUnifiedToolbarProps> = ({ buttons,
);
};
// 기본 버튼 설정 (컴포넌트와 편집 2개)
// 기본 버튼 설정 (통합 패널 1개)
export const defaultToolbarButtons: ToolbarButton[] = [
// 컴포넌트 그룹 (테이블 + 컴포넌트 탭)
// 통합 패널 (컴포넌트 + 편집 탭)
{
id: "components",
label: "컴포넌트",
id: "unified",
label: "패널",
icon: <Layout className="h-5 w-5" />,
shortcut: "C",
group: "source",
panelWidth: 400,
},
// 편집 그룹 (속성 + 스타일 & 해상도 탭)
{
id: "properties",
label: "편집",
icon: <Settings className="h-5 w-5" />,
shortcut: "P",
group: "editor",
panelWidth: 400,
group: "source",
panelWidth: 240,
},
];