MCPcopy Create free account
hub / github.com/Thanas-R/Virdis / SidePanelProps

Interface SidePanelProps

src/components/SidePanel.tsx:9–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7import FieldEditDialog from "./FieldEditDialog";
8
9interface SidePanelProps {
10 allFields: Field[];
11 selectedFields: Field[];
12 activeField: Field | null;
13 detailField: Field | null;
14 onFieldClick: (field: Field) => void;
15 onFieldDoubleClick: (field: Field) => void;
16 onBackFromDetail: () => void;
17 onToggleField: (field: Field) => void;
18 onApplySelection: (ids: string[]) => void;
19 onUpdateField: (field: Field) => void;
20 onDeleteField: (id: string) => void;
21 onEditBoundary?: (field: Field) => void;
22}
23
24const SidePanel = ({
25 allFields,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected