| 7 | import FieldEditDialog from "./FieldEditDialog"; |
| 8 | |
| 9 | interface 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 | |
| 24 | const SidePanel = ({ |
| 25 | allFields, |
nothing calls this directly
no outgoing calls
no test coverage detected