UNPKG

@hadyfayed/filament-workflow-canvas

Version:

Visual workflow builder and canvas component for Filament applications

19 lines 650 B
import { FC } from 'react'; export interface CustomControlsProps { onZoomIn: () => void; onZoomOut: () => void; onFitView: () => void; isFullScreen: boolean; onToggleFullscreen: () => void; onSave: () => void; position?: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right'; size?: 'sm' | 'md' | 'lg'; showLabels?: boolean; saveStatus?: 'idle' | 'saving' | 'saved' | 'error'; } /** * CustomControls component using composition * Combines ViewportControls and WorkflowActions in a ControlPanel */ export declare const CustomControls: FC<CustomControlsProps>; //# sourceMappingURL=CustomControls.d.ts.map