@hadyfayed/filament-workflow-canvas
Version:
Visual workflow builder and canvas component for Filament applications
15 lines • 501 B
TypeScript
import { FC } from 'react';
export interface ToolbarProps {
onAddNode: (type: string) => void;
position?: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
showNodeTypes?: string[];
groupByCategory?: boolean;
size?: 'sm' | 'md' | 'lg';
title?: string;
}
/**
* Toolbar component using composition and services
* Provides dynamic node templates based on connection manager rules
*/
export declare const Toolbar: FC<ToolbarProps>;
//# sourceMappingURL=Toolbar.d.ts.map