Frontend Enhancements: - Complete React TypeScript frontend with modern UI components - Distributed workflows management interface with real-time updates - Socket.IO integration for live agent status monitoring - Agent management dashboard with cluster visualization - Project management interface with metrics and task tracking - Responsive design with proper error handling and loading states Backend Infrastructure: - Distributed coordinator for multi-agent workflow orchestration - Cluster management API with comprehensive agent operations - Enhanced database models for agents and projects - Project service for filesystem-based project discovery - Performance monitoring and metrics collection - Comprehensive API documentation and error handling Documentation: - Complete distributed development guide (README_DISTRIBUTED.md) - Comprehensive development report with architecture insights - System configuration templates and deployment guides The platform now provides a complete web interface for managing the distributed AI cluster with real-time monitoring, workflow orchestration, and agent coordination capabilities. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
59 lines
2.7 KiB
JavaScript
59 lines
2.7 KiB
JavaScript
// "export type" declarations on separate lines are in use
|
|
// to workaround babel issue(s) 11465 12578
|
|
//
|
|
|
|
// see https://github.com/babel/babel/issues/11464#issuecomment-617606898
|
|
export { Surface } from './container/Surface';
|
|
export { Layer } from './container/Layer';
|
|
export { Legend } from './component/Legend';
|
|
export { DefaultLegendContent } from './component/DefaultLegendContent';
|
|
export { Tooltip } from './component/Tooltip';
|
|
export { DefaultTooltipContent } from './component/DefaultTooltipContent';
|
|
export { ResponsiveContainer } from './component/ResponsiveContainer';
|
|
export { Cell } from './component/Cell';
|
|
export { Text } from './component/Text';
|
|
export { Label } from './component/Label';
|
|
export { LabelList } from './component/LabelList';
|
|
export { Customized } from './component/Customized';
|
|
export { Sector } from './shape/Sector';
|
|
export { Curve } from './shape/Curve';
|
|
export { Rectangle } from './shape/Rectangle';
|
|
export { Polygon } from './shape/Polygon';
|
|
export { Dot } from './shape/Dot';
|
|
export { Cross } from './shape/Cross';
|
|
export { Symbols } from './shape/Symbols';
|
|
export { PolarGrid } from './polar/PolarGrid';
|
|
export { PolarRadiusAxis } from './polar/PolarRadiusAxis';
|
|
export { PolarAngleAxis } from './polar/PolarAngleAxis';
|
|
export { Pie } from './polar/Pie';
|
|
export { Radar } from './polar/Radar';
|
|
export { RadialBar } from './polar/RadialBar';
|
|
export { Brush } from './cartesian/Brush';
|
|
export { ReferenceLine } from './cartesian/ReferenceLine';
|
|
export { ReferenceDot } from './cartesian/ReferenceDot';
|
|
export { ReferenceArea } from './cartesian/ReferenceArea';
|
|
export { CartesianAxis } from './cartesian/CartesianAxis';
|
|
export { CartesianGrid } from './cartesian/CartesianGrid';
|
|
export { Line } from './cartesian/Line';
|
|
export { Area } from './cartesian/Area';
|
|
export { Bar } from './cartesian/Bar';
|
|
export { Scatter } from './cartesian/Scatter';
|
|
export { XAxis } from './cartesian/XAxis';
|
|
export { YAxis } from './cartesian/YAxis';
|
|
export { ZAxis } from './cartesian/ZAxis';
|
|
export { ErrorBar } from './cartesian/ErrorBar';
|
|
export { LineChart } from './chart/LineChart';
|
|
export { BarChart } from './chart/BarChart';
|
|
export { PieChart } from './chart/PieChart';
|
|
export { Treemap } from './chart/Treemap';
|
|
export { Sankey } from './chart/Sankey';
|
|
export { RadarChart } from './chart/RadarChart';
|
|
export { ScatterChart } from './chart/ScatterChart';
|
|
export { AreaChart } from './chart/AreaChart';
|
|
export { RadialBarChart } from './chart/RadialBarChart';
|
|
export { ComposedChart } from './chart/ComposedChart';
|
|
export { SunburstChart } from './chart/SunburstChart';
|
|
export { Funnel } from './numberAxis/Funnel';
|
|
export { FunnelChart } from './chart/FunnelChart';
|
|
export { Trapezoid } from './shape/Trapezoid';
|
|
export { Global } from './util/Global'; |