@hadyfayed/filament-workflow-canvas
Version:
Visual workflow builder and canvas component for Filament applications
32 lines (23 loc) • 673 B
text/typescript
/**
* Components - Main barrel export for all workflow canvas components
* Organized by feature and responsibility
*/
// Provider components
export * from './providers';
// Canvas components
export * from './canvas';
// Control components
export * from './controls';
// Property components
export * from './properties';
// Toolbar components
export * from './toolbar';
// Layout components
export * from './layout';
// UI components
export * from './ui';
// Legacy node panel components (maintain compatibility)
export * from './AnalyticsNodePanel';
export * from './ConditionNodePanel';
export * from './TransformNodePanel';
export * from './TriggerNodePanel';