플로우 구현

This commit is contained in:
kjs
2025-10-20 10:55:33 +09:00
parent 6603ff81fe
commit f9c171c513
37 changed files with 6881 additions and 238 deletions

View File

@@ -25,6 +25,7 @@ const CONFIG_PANEL_MAP: Record<string, () => Promise<any>> = {
"card-display": () => import("@/lib/registry/components/card-display/CardDisplayConfigPanel"),
"split-panel-layout": () => import("@/lib/registry/components/split-panel-layout/SplitPanelLayoutConfigPanel"),
"repeater-field-group": () => import("@/components/webtypes/config/RepeaterConfigPanel"),
"flow-widget": () => import("@/components/screen/config-panels/FlowWidgetConfigPanel"),
};
// ConfigPanel 컴포넌트 캐시
@@ -54,6 +55,7 @@ export async function getComponentConfigPanel(componentId: string): Promise<Reac
const ConfigPanelComponent =
module[`${toPascalCase(componentId)}ConfigPanel`] ||
module.RepeaterConfigPanel || // repeater-field-group의 export명
module.FlowWidgetConfigPanel || // flow-widget의 export명
module.default;
if (!ConfigPanelComponent) {