UNPKG

@hadyfayed/filament-workflow-canvas

Version:

Visual workflow builder and canvas component for Filament applications

16 lines 558 B
import { FC } from 'react'; export interface WorkflowActionsProps { onSave?: () => void; onToggleFullscreen?: () => void; isFullScreen?: boolean; orientation?: 'horizontal' | 'vertical'; size?: 'sm' | 'md' | 'lg'; showLabels?: boolean; saveStatus?: 'idle' | 'saving' | 'saved' | 'error'; } /** * WorkflowActions component for save and fullscreen operations * Provides reusable action buttons with status indicators */ export declare const WorkflowActions: FC<WorkflowActionsProps>; //# sourceMappingURL=WorkflowActions.d.ts.map