From 0277b6ba698c9f7ec2ecdc15b42ea7512dcf7c5a Mon Sep 17 00:00:00 2001 From: DDD1542 Date: Thu, 12 Mar 2026 01:17:51 +0900 Subject: [PATCH] [agent-pipeline] pipe-20260311155325-udmh round-3 --- .../V2CategoryManagerConfigPanel.tsx | 192 +++++ .../V2ItemRoutingConfigPanel.tsx | 661 ++++++++++++++++++ .../V2ProcessWorkStandardConfigPanel.tsx | 361 ++++++++++ .../components/v2-category-manager/index.ts | 4 +- .../components/v2-item-routing/index.ts | 2 +- .../v2-process-work-standard/index.ts | 2 +- 6 files changed, 1218 insertions(+), 4 deletions(-) create mode 100644 frontend/components/v2/config-panels/V2CategoryManagerConfigPanel.tsx create mode 100644 frontend/components/v2/config-panels/V2ItemRoutingConfigPanel.tsx create mode 100644 frontend/components/v2/config-panels/V2ProcessWorkStandardConfigPanel.tsx diff --git a/frontend/components/v2/config-panels/V2CategoryManagerConfigPanel.tsx b/frontend/components/v2/config-panels/V2CategoryManagerConfigPanel.tsx new file mode 100644 index 00000000..34d6e33c --- /dev/null +++ b/frontend/components/v2/config-panels/V2CategoryManagerConfigPanel.tsx @@ -0,0 +1,192 @@ +"use client"; + +/** + * V2 카테고리 관리 설정 패널 (토스식 리디자인) + * 토스식 단계별 UX: 뷰 모드 -> 트리 설정 -> 레이아웃(접힘) + */ + +import React, { useState } from "react"; +import { Input } from "@/components/ui/input"; +import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select"; +import { Switch } from "@/components/ui/switch"; +import { Collapsible, CollapsibleContent, CollapsibleTrigger } from "@/components/ui/collapsible"; +import { Settings, ChevronDown, FolderTree } from "lucide-react"; +import { cn } from "@/lib/utils"; +import type { V2CategoryManagerConfig, ViewMode } from "@/lib/registry/components/v2-category-manager/types"; +import { defaultV2CategoryManagerConfig } from "@/lib/registry/components/v2-category-manager/types"; + +interface V2CategoryManagerConfigPanelProps { + config: Partial; + onChange: (config: Partial) => void; +} + +export const V2CategoryManagerConfigPanel: React.FC = ({ + config: externalConfig, + onChange, +}) => { + const [layoutOpen, setLayoutOpen] = useState(false); + + const config: V2CategoryManagerConfig = { + ...defaultV2CategoryManagerConfig, + ...externalConfig, + }; + + const handleChange = (key: K, value: V2CategoryManagerConfig[K]) => { + onChange({ ...config, [key]: value }); + }; + + return ( +
+ {/* ─── 1단계: 뷰 모드 설정 ─── */} +
+
+ +

뷰 모드 설정

+
+

카테고리 표시 방식을 설정해요

+
+ +
+
+ 기본 뷰 모드 + +
+ +
+
+

뷰 모드 토글

+

트리/목록 전환 버튼을 표시해요

+
+ handleChange("showViewModeToggle", checked)} + /> +
+
+ + {/* ─── 2단계: 트리 설정 ─── */} +
+

트리 설정

+

트리 뷰의 기본 동작을 설정해요

+
+ +
+
+
+ 기본 펼침 단계 +

처음 로드 시 펼쳐지는 깊이

+
+ +
+ +
+
+

비활성 항목 표시

+

비활성화된 카테고리도 보여줘요

+
+ handleChange("showInactiveItems", checked)} + /> +
+
+ + {/* ─── 3단계: 레이아웃 (Collapsible) ─── */} + + + + + +
+
+
+

컬럼 목록 표시

+

좌측 카테고리 컬럼 목록 패널을 보여줘요

+
+ handleChange("showColumnList", checked)} + /> +
+ + {config.showColumnList && ( +
+
+
+ 좌측 패널 너비 (%) +

10~40% 범위

+
+ handleChange("leftPanelWidth", Number(e.target.value))} + className="h-7 w-[80px] text-xs" + /> +
+
+ )} + +
+
+ 높이 +

px 또는 % (예: 100%, 600)

+
+ { + const v = e.target.value; + handleChange("height", isNaN(Number(v)) ? v : Number(v)); + }} + placeholder="100%" + className="h-7 w-[100px] text-xs" + /> +
+
+
+
+
+ ); +}; + +V2CategoryManagerConfigPanel.displayName = "V2CategoryManagerConfigPanel"; + +export default V2CategoryManagerConfigPanel; diff --git a/frontend/components/v2/config-panels/V2ItemRoutingConfigPanel.tsx b/frontend/components/v2/config-panels/V2ItemRoutingConfigPanel.tsx new file mode 100644 index 00000000..f7855440 --- /dev/null +++ b/frontend/components/v2/config-panels/V2ItemRoutingConfigPanel.tsx @@ -0,0 +1,661 @@ +"use client"; + +/** + * V2 품목별 라우팅 설정 패널 + * 토스식 단계별 UX: 데이터 소스 -> 모달 연동 -> 공정 컬럼 -> 레이아웃(접힘) + */ + +import React, { useState, useEffect } from "react"; +import { Input } from "@/components/ui/input"; +import { Switch } from "@/components/ui/switch"; +import { Button } from "@/components/ui/button"; +import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select"; +import { Collapsible, CollapsibleContent, CollapsibleTrigger } from "@/components/ui/collapsible"; +import { Popover, PopoverContent, PopoverTrigger } from "@/components/ui/popover"; +import { Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList } from "@/components/ui/command"; +import { + Settings, ChevronDown, Plus, Trash2, Check, ChevronsUpDown, + Database, Monitor, Columns, +} from "lucide-react"; +import { cn } from "@/lib/utils"; +import type { ItemRoutingConfig, ProcessColumnDef } from "@/lib/registry/components/v2-item-routing/types"; +import { defaultConfig } from "@/lib/registry/components/v2-item-routing/config"; + +interface V2ItemRoutingConfigPanelProps { + config: Partial; + onChange: (config: Partial) => void; +} + +interface TableInfo { + tableName: string; + displayName?: string; +} + +interface ColumnInfo { + columnName: string; + displayName?: string; + dataType?: string; +} + +interface ScreenInfo { + screenId: number; + screenName: string; + screenCode: string; +} + +// ─── 테이블 Combobox ─── +function TableCombobox({ + value, + onChange, + tables, + loading, +}: { + value: string; + onChange: (v: string) => void; + tables: TableInfo[]; + loading: boolean; +}) { + const [open, setOpen] = useState(false); + const selected = tables.find((t) => t.tableName === value); + + return ( + + + + + + + + + 테이블을 찾을 수 없습니다. + + {tables.map((t) => ( + { onChange(t.tableName); setOpen(false); }} + className="text-xs" + > + +
+ {t.displayName || t.tableName} + {t.displayName && {t.tableName}} +
+
+ ))} +
+
+
+
+
+ ); +} + +// ─── 컬럼 Combobox ─── +function ColumnCombobox({ + value, + onChange, + tableName, + placeholder, +}: { + value: string; + onChange: (v: string) => void; + tableName: string; + placeholder?: string; +}) { + const [open, setOpen] = useState(false); + const [columns, setColumns] = useState([]); + const [loading, setLoading] = useState(false); + + useEffect(() => { + if (!tableName) { setColumns([]); return; } + const load = async () => { + setLoading(true); + try { + const { tableManagementApi } = await import("@/lib/api/tableManagement"); + const res = await tableManagementApi.getColumnList(tableName); + if (res.success && res.data?.columns) { + setColumns(res.data.columns); + } + } catch { /* ignore */ } finally { setLoading(false); } + }; + load(); + }, [tableName]); + + const selected = columns.find((c) => c.columnName === value); + + return ( + + + + + + + + + 컬럼을 찾을 수 없습니다. + + {columns.map((c) => ( + { onChange(c.columnName); setOpen(false); }} + className="text-xs" + > + +
+ {c.displayName || c.columnName} + {c.displayName && {c.columnName}} +
+
+ ))} +
+
+
+
+
+ ); +} + +// ─── 화면 Combobox ─── +function ScreenCombobox({ + value, + onChange, +}: { + value?: number; + onChange: (v?: number) => void; +}) { + const [open, setOpen] = useState(false); + const [screens, setScreens] = useState([]); + const [loading, setLoading] = useState(false); + + useEffect(() => { + const load = async () => { + setLoading(true); + try { + const { screenApi } = await import("@/lib/api/screen"); + const res = await screenApi.getScreens({ page: 1, size: 1000 }); + if (res.data) { + setScreens( + res.data.map((s: any) => ({ + screenId: s.screenId, + screenName: s.screenName || `화면 ${s.screenId}`, + screenCode: s.screenCode || "", + })) + ); + } + } catch { /* ignore */ } finally { setLoading(false); } + }; + load(); + }, []); + + const selected = screens.find((s) => s.screenId === value); + + return ( + + + + + + + + + 화면을 찾을 수 없습니다. + + {screens.map((s) => ( + { onChange(s.screenId); setOpen(false); }} + className="text-xs" + > + +
+ {s.screenName} + ID: {s.screenId} +
+
+ ))} +
+
+
+
+
+ ); +} + +// ─── 메인 컴포넌트 ─── +export const V2ItemRoutingConfigPanel: React.FC = ({ + config: configProp, + onChange, +}) => { + const [tables, setTables] = useState([]); + const [loadingTables, setLoadingTables] = useState(false); + const [dataSourceOpen, setDataSourceOpen] = useState(false); + const [layoutOpen, setLayoutOpen] = useState(false); + + const config: ItemRoutingConfig = { + ...defaultConfig, + ...configProp, + dataSource: { ...defaultConfig.dataSource, ...configProp?.dataSource }, + modals: { ...defaultConfig.modals, ...configProp?.modals }, + processColumns: configProp?.processColumns?.length ? configProp.processColumns : defaultConfig.processColumns, + }; + + useEffect(() => { + const loadTables = async () => { + setLoadingTables(true); + try { + const { tableManagementApi } = await import("@/lib/api/tableManagement"); + const res = await tableManagementApi.getTableList(); + if (res.success && res.data) { + setTables( + res.data.map((t: any) => ({ + tableName: t.tableName, + displayName: t.displayName || t.tableName, + })) + ); + } + } catch { /* ignore */ } finally { setLoadingTables(false); } + }; + loadTables(); + }, []); + + const update = (partial: Partial) => { + onChange({ ...configProp, ...partial }); + }; + + const updateDataSource = (field: string, value: string) => { + update({ dataSource: { ...config.dataSource, [field]: value } }); + }; + + const updateModals = (field: string, value?: number) => { + update({ modals: { ...config.modals, [field]: value } }); + }; + + // 공정 컬럼 관리 + const addColumn = () => { + update({ + processColumns: [ + ...config.processColumns, + { name: "", label: "새 컬럼", width: 100, align: "left" as const }, + ], + }); + }; + + const removeColumn = (idx: number) => { + update({ processColumns: config.processColumns.filter((_, i) => i !== idx) }); + }; + + const updateColumn = (idx: number, field: keyof ProcessColumnDef, value: string | number) => { + const next = [...config.processColumns]; + next[idx] = { ...next[idx], [field]: value }; + update({ processColumns: next }); + }; + + return ( +
+ {/* ─── 1단계: 모달 연동 ─── */} +
+
+ +

모달 연동

+
+

버전 추가/공정 추가·수정 시 열리는 화면을 설정해요

+
+ +
+
+ 버전 추가 화면 + updateModals("versionAddScreenId", v)} + /> +
+
+ 공정 추가 화면 + updateModals("processAddScreenId", v)} + /> +
+
+ 공정 수정 화면 + updateModals("processEditScreenId", v)} + /> +
+
+ + {/* ─── 2단계: 공정 테이블 컬럼 ─── */} +
+
+ +

공정 테이블 컬럼

+
+

공정 순서 테이블에 표시할 컬럼을 설정해요

+
+ +
+ {config.processColumns.map((col, idx) => ( +
+ updateColumn(idx, "name", e.target.value)} + className="h-7 w-24 text-[10px]" + placeholder="컬럼명" + /> + updateColumn(idx, "label", e.target.value)} + className="h-7 flex-1 text-[10px]" + placeholder="표시명" + /> + updateColumn(idx, "width", parseInt(e.target.value) || 100)} + className="h-7 w-14 text-[10px]" + placeholder="너비" + /> + + +
+ ))} + + +
+ + {/* ─── 3단계: 데이터 소스 (Collapsible) ─── */} + + + + + +
+
+ 품목 테이블 + updateDataSource("itemTable", v)} + tables={tables} + loading={loadingTables} + /> +
+
+ 품목명 컬럼 + updateDataSource("itemNameColumn", v)} + tableName={config.dataSource.itemTable} + placeholder="품목명" + /> +
+
+ 품목코드 컬럼 + updateDataSource("itemCodeColumn", v)} + tableName={config.dataSource.itemTable} + placeholder="품목코드" + /> +
+
+ 라우팅 버전 테이블 + updateDataSource("routingVersionTable", v)} + tables={tables} + loading={loadingTables} + /> +
+
+ 품목 FK 컬럼 + updateDataSource("routingVersionFkColumn", v)} + tableName={config.dataSource.routingVersionTable} + placeholder="FK 컬럼" + /> +
+
+ 버전명 컬럼 + updateDataSource("routingVersionNameColumn", v)} + tableName={config.dataSource.routingVersionTable} + placeholder="버전명" + /> +
+
+ 라우팅 상세 테이블 + updateDataSource("routingDetailTable", v)} + tables={tables} + loading={loadingTables} + /> +
+
+ 버전 FK 컬럼 + updateDataSource("routingDetailFkColumn", v)} + tableName={config.dataSource.routingDetailTable} + placeholder="FK 컬럼" + /> +
+
+ 공정 마스터 테이블 + updateDataSource("processTable", v)} + tables={tables} + loading={loadingTables} + /> +
+
+ 공정명 컬럼 + updateDataSource("processNameColumn", v)} + tableName={config.dataSource.processTable} + placeholder="공정명" + /> +
+
+ 공정코드 컬럼 + updateDataSource("processCodeColumn", v)} + tableName={config.dataSource.processTable} + placeholder="공정코드" + /> +
+
+
+
+ + {/* ─── 4단계: 레이아웃 & 기타 (Collapsible) ─── */} + + + + + +
+
+
+ 좌측 패널 비율 (%) +

품목 목록 패널의 너비

+
+ update({ splitRatio: parseInt(e.target.value) || 40 })} + className="h-7 w-[80px] text-xs" + /> +
+ +
+ 좌측 패널 제목 + update({ leftPanelTitle: e.target.value })} + placeholder="품목 목록" + className="h-7 w-[140px] text-xs" + /> +
+ +
+ 우측 패널 제목 + update({ rightPanelTitle: e.target.value })} + placeholder="공정 순서" + className="h-7 w-[140px] text-xs" + /> +
+ +
+ 버전 추가 버튼 텍스트 + update({ versionAddButtonText: e.target.value })} + placeholder="+ 라우팅 버전 추가" + className="h-7 w-[140px] text-xs" + /> +
+ +
+ 공정 추가 버튼 텍스트 + update({ processAddButtonText: e.target.value })} + placeholder="+ 공정 추가" + className="h-7 w-[140px] text-xs" + /> +
+ +
+
+

첫 번째 버전 자동 선택

+

품목 선택 시 첫 버전을 자동으로 선택해요

+
+ update({ autoSelectFirstVersion: checked })} + /> +
+ +
+
+

읽기 전용

+

추가/수정/삭제 버튼을 숨겨요

+
+ update({ readonly: checked })} + /> +
+
+
+
+
+ ); +}; + +V2ItemRoutingConfigPanel.displayName = "V2ItemRoutingConfigPanel"; + +export default V2ItemRoutingConfigPanel; diff --git a/frontend/components/v2/config-panels/V2ProcessWorkStandardConfigPanel.tsx b/frontend/components/v2/config-panels/V2ProcessWorkStandardConfigPanel.tsx new file mode 100644 index 00000000..9ffe10c2 --- /dev/null +++ b/frontend/components/v2/config-panels/V2ProcessWorkStandardConfigPanel.tsx @@ -0,0 +1,361 @@ +"use client"; + +/** + * V2 공정 작업기준 설정 패널 + * 토스식 단계별 UX: 데이터 소스 -> 작업 단계 관리 -> 상세 유형 관리 -> 레이아웃(접힘) + */ + +import React, { useState } from "react"; +import { Input } from "@/components/ui/input"; +import { Switch } from "@/components/ui/switch"; +import { Button } from "@/components/ui/button"; +import { Collapsible, CollapsibleContent, CollapsibleTrigger } from "@/components/ui/collapsible"; +import { Settings, ChevronDown, Plus, Trash2, GripVertical, Database, Layers } from "lucide-react"; +import { cn } from "@/lib/utils"; +import type { + ProcessWorkStandardConfig, + WorkPhaseDefinition, + DetailTypeDefinition, +} from "@/lib/registry/components/v2-process-work-standard/types"; +import { defaultConfig } from "@/lib/registry/components/v2-process-work-standard/config"; + +interface V2ProcessWorkStandardConfigPanelProps { + config: Partial; + onChange: (config: Partial) => void; +} + +export const V2ProcessWorkStandardConfigPanel: React.FC = ({ + config: configProp, + onChange, +}) => { + const [dataSourceOpen, setDataSourceOpen] = useState(false); + const [layoutOpen, setLayoutOpen] = useState(false); + + const config: ProcessWorkStandardConfig = { + ...defaultConfig, + ...configProp, + dataSource: { ...defaultConfig.dataSource, ...configProp?.dataSource }, + phases: configProp?.phases?.length ? configProp.phases : defaultConfig.phases, + detailTypes: configProp?.detailTypes?.length ? configProp.detailTypes : defaultConfig.detailTypes, + }; + + const update = (partial: Partial) => { + onChange({ ...configProp, ...partial }); + }; + + const updateDataSource = (field: string, value: string) => { + update({ dataSource: { ...config.dataSource, [field]: value } }); + }; + + // ─── 작업 단계 관리 ─── + const addPhase = () => { + const nextOrder = config.phases.length + 1; + update({ + phases: [ + ...config.phases, + { key: `PHASE_${nextOrder}`, label: `단계 ${nextOrder}`, sortOrder: nextOrder }, + ], + }); + }; + + const removePhase = (idx: number) => { + update({ phases: config.phases.filter((_, i) => i !== idx) }); + }; + + const updatePhase = (idx: number, field: keyof WorkPhaseDefinition, value: string | number) => { + const next = [...config.phases]; + next[idx] = { ...next[idx], [field]: value }; + update({ phases: next }); + }; + + // ─── 상세 유형 관리 ─── + const addDetailType = () => { + update({ + detailTypes: [ + ...config.detailTypes, + { value: `TYPE_${config.detailTypes.length + 1}`, label: "신규 유형" }, + ], + }); + }; + + const removeDetailType = (idx: number) => { + update({ detailTypes: config.detailTypes.filter((_, i) => i !== idx) }); + }; + + const updateDetailType = (idx: number, field: keyof DetailTypeDefinition, value: string) => { + const next = [...config.detailTypes]; + next[idx] = { ...next[idx], [field]: value }; + update({ detailTypes: next }); + }; + + return ( +
+ {/* ─── 1단계: 작업 단계 설정 ─── */} +
+
+ +

작업 단계 설정

+
+

공정별 작업 단계(Phase)를 정의해요

+
+ +
+ {config.phases.map((phase, idx) => ( +
+ + updatePhase(idx, "key", e.target.value)} + className="h-7 w-20 text-[10px]" + placeholder="키" + /> + updatePhase(idx, "label", e.target.value)} + className="h-7 flex-1 text-[10px]" + placeholder="표시명" + /> + +
+ ))} + + +
+ + {/* ─── 2단계: 상세 유형 옵션 ─── */} +
+

상세 유형 옵션

+

작업 항목의 상세 유형 드롭다운 옵션을 설정해요

+
+ +
+ {config.detailTypes.map((dt, idx) => ( +
+ updateDetailType(idx, "value", e.target.value)} + className="h-7 w-24 text-[10px]" + placeholder="값" + /> + updateDetailType(idx, "label", e.target.value)} + className="h-7 flex-1 text-[10px]" + placeholder="표시명" + /> + +
+ ))} + + +
+ + {/* ─── 3단계: 데이터 소스 (Collapsible) ─── */} + + + + + +
+
+ 품목 테이블 + updateDataSource("itemTable", e.target.value)} + className="h-7 w-[160px] text-xs" + /> +
+
+ 품목명 컬럼 + updateDataSource("itemNameColumn", e.target.value)} + className="h-7 w-[160px] text-xs" + /> +
+
+ 품목코드 컬럼 + updateDataSource("itemCodeColumn", e.target.value)} + className="h-7 w-[160px] text-xs" + /> +
+
+ 라우팅 버전 테이블 + updateDataSource("routingVersionTable", e.target.value)} + className="h-7 w-[160px] text-xs" + /> +
+
+ 품목 연결 FK + updateDataSource("routingFkColumn", e.target.value)} + className="h-7 w-[160px] text-xs" + /> +
+
+ 버전명 컬럼 + updateDataSource("routingVersionNameColumn", e.target.value)} + className="h-7 w-[160px] text-xs" + /> +
+
+ 라우팅 상세 테이블 + updateDataSource("routingDetailTable", e.target.value)} + className="h-7 w-[160px] text-xs" + /> +
+
+ 공정 마스터 테이블 + updateDataSource("processTable", e.target.value)} + className="h-7 w-[160px] text-xs" + /> +
+
+ 공정명 컬럼 + updateDataSource("processNameColumn", e.target.value)} + className="h-7 w-[160px] text-xs" + /> +
+
+ 공정코드 컬럼 + updateDataSource("processCodeColumn", e.target.value)} + className="h-7 w-[160px] text-xs" + /> +
+
+
+
+ + {/* ─── 4단계: 레이아웃 & 기타 (Collapsible) ─── */} + + + + + +
+
+
+ 좌측 패널 비율 (%) +

품목/공정 선택 패널의 너비

+
+ update({ splitRatio: parseInt(e.target.value) || 30 })} + className="h-7 w-[80px] text-xs" + /> +
+ +
+ 좌측 패널 제목 + update({ leftPanelTitle: e.target.value })} + placeholder="품목 및 공정 선택" + className="h-7 w-[160px] text-xs" + /> +
+ +
+
+

읽기 전용

+

수정/삭제 버튼을 숨겨요

+
+ update({ readonly: checked })} + /> +
+
+
+
+
+ ); +}; + +V2ProcessWorkStandardConfigPanel.displayName = "V2ProcessWorkStandardConfigPanel"; + +export default V2ProcessWorkStandardConfigPanel; diff --git a/frontend/lib/registry/components/v2-category-manager/index.ts b/frontend/lib/registry/components/v2-category-manager/index.ts index 3f8a9be3..6cbd5437 100644 --- a/frontend/lib/registry/components/v2-category-manager/index.ts +++ b/frontend/lib/registry/components/v2-category-manager/index.ts @@ -3,7 +3,7 @@ import { createComponentDefinition } from "../../utils/createComponentDefinition"; import { ComponentCategory } from "@/types/component"; import { V2CategoryManagerComponent } from "./V2CategoryManagerComponent"; -import { V2CategoryManagerConfigPanel } from "./V2CategoryManagerConfigPanel"; +import { V2CategoryManagerConfigPanel } from "@/components/v2/config-panels/V2CategoryManagerConfigPanel"; import { defaultV2CategoryManagerConfig } from "./types"; /** @@ -32,5 +32,5 @@ export const V2CategoryManagerDefinition = createComponentDefinition({ // 타입 내보내기 export type { V2CategoryManagerConfig, CategoryValue, ViewMode } from "./types"; export { V2CategoryManagerComponent } from "./V2CategoryManagerComponent"; -export { V2CategoryManagerConfigPanel } from "./V2CategoryManagerConfigPanel"; +export { V2CategoryManagerConfigPanel } from "@/components/v2/config-panels/V2CategoryManagerConfigPanel"; diff --git a/frontend/lib/registry/components/v2-item-routing/index.ts b/frontend/lib/registry/components/v2-item-routing/index.ts index 1ccd3c7a..85404072 100644 --- a/frontend/lib/registry/components/v2-item-routing/index.ts +++ b/frontend/lib/registry/components/v2-item-routing/index.ts @@ -4,7 +4,7 @@ import React from "react"; import { createComponentDefinition } from "../../utils/createComponentDefinition"; import { ComponentCategory } from "@/types/component"; import { ItemRoutingComponent } from "./ItemRoutingComponent"; -import { ItemRoutingConfigPanel } from "./ItemRoutingConfigPanel"; +import { V2ItemRoutingConfigPanel as ItemRoutingConfigPanel } from "@/components/v2/config-panels/V2ItemRoutingConfigPanel"; import { defaultConfig } from "./config"; export const V2ItemRoutingDefinition = createComponentDefinition({ diff --git a/frontend/lib/registry/components/v2-process-work-standard/index.ts b/frontend/lib/registry/components/v2-process-work-standard/index.ts index f400abae..55975174 100644 --- a/frontend/lib/registry/components/v2-process-work-standard/index.ts +++ b/frontend/lib/registry/components/v2-process-work-standard/index.ts @@ -4,7 +4,7 @@ import React from "react"; import { createComponentDefinition } from "../../utils/createComponentDefinition"; import { ComponentCategory } from "@/types/component"; import { ProcessWorkStandardComponent } from "./ProcessWorkStandardComponent"; -import { ProcessWorkStandardConfigPanel } from "./ProcessWorkStandardConfigPanel"; +import { V2ProcessWorkStandardConfigPanel as ProcessWorkStandardConfigPanel } from "@/components/v2/config-panels/V2ProcessWorkStandardConfigPanel"; import { defaultConfig } from "./config"; export const V2ProcessWorkStandardDefinition = createComponentDefinition({