숨김처리

This commit is contained in:
kjs
2026-01-05 14:36:56 +09:00
parent 56036d7fe4
commit 30012d908a
4 changed files with 31 additions and 33 deletions

View File

@@ -132,8 +132,6 @@ export function ComponentsPanel({
"file-upload", // → UnifiedMedia (file)
"entity-search-input", // → UnifiedSelect (entity 모드)
"autocomplete-search-input", // → UnifiedSelect (autocomplete 모드)
// UnifiedBiz로 통합 예정
"rack-structure", // → UnifiedBiz (rack)
// DataFlow 전용 (일반 화면에서 불필요)
"mail-recipient-selector",
// 현재 사용 안함

View File

@@ -393,33 +393,33 @@ const fallbackTemplates: TemplateComponent[] = [
],
},
// 아코디언 영역
{
id: "area-accordion",
name: "아코디언 영역",
description: "접고 펼칠 수 있는 섹션들로 구성된 영역",
category: "area",
icon: <ChevronDown className="h-4 w-4" />,
defaultSize: { width: 500, height: 600 },
components: [
{
type: "area",
label: "아코디언 영역",
position: { x: 0, y: 0 },
size: { width: 500, height: 600 },
layoutType: "accordion",
layoutConfig: {
allowMultiple: false,
defaultExpanded: ["section1"],
},
style: {
backgroundColor: "#ffffff",
border: "1px solid #e5e7eb",
borderRadius: "8px",
},
},
],
},
// 아코디언 영역 - 숨김 처리
// {
// id: "area-accordion",
// name: "아코디언 영역",
// description: "접고 펼칠 수 있는 섹션들로 구성된 영역",
// category: "area",
// icon: <ChevronDown className="h-4 w-4" />,
// defaultSize: { width: 500, height: 600 },
// components: [
// {
// type: "area",
// label: "아코디언 영역",
// position: { x: 0, y: 0 },
// size: { width: 500, height: 600 },
// layoutType: "accordion",
// layoutConfig: {
// allowMultiple: false,
// defaultExpanded: ["section1"],
// },
// style: {
// backgroundColor: "#ffffff",
// border: "1px solid #e5e7eb",
// borderRadius: "8px",
// },
// },
// ],
// },
];
interface TemplatesPanelProps {