Add comprehensive analytics system with: - Analytics data layer (aggregator, metrics, trends, cache) - 6 API endpoints (overview, plants, transport, farms, sustainability, export) - 6 chart components (LineChart, BarChart, PieChart, AreaChart, Gauge, Heatmap) - 5 dashboard widgets (KPICard, TrendIndicator, DataTable, DateRangePicker, FilterPanel) - 5 dashboard pages (overview, plants, transport, farms, sustainability) - Export functionality (CSV, JSON) Dependencies added: recharts, d3, date-fns Also includes minor fixes: - Fix EnvironmentalForm spread type error - Fix AgentOrchestrator Map iteration issues - Fix next.config.js image domains undefined error - Add downlevelIteration to tsconfig
11 lines
362 B
TypeScript
11 lines
362 B
TypeScript
/**
|
|
* Chart Components Index
|
|
* Export all chart components
|
|
*/
|
|
|
|
export { default as LineChart } from './LineChart';
|
|
export { default as BarChart } from './BarChart';
|
|
export { default as PieChart } from './PieChart';
|
|
export { default as AreaChart } from './AreaChart';
|
|
export { default as Gauge } from './Gauge';
|
|
export { default as Heatmap } from './Heatmap';
|