- Add milestone support with diamond markers - Implement dependency line rendering with SVG arrows - Add isMilestone property to GanttTask type - Create dependency calculation and visualization - Add comprehensive tests for milestones and dependencies - Add index module tests for exports - Coverage: GanttChart 98.37%, types 91.66%, index 100%
14 lines
256 B
TypeScript
14 lines
256 B
TypeScript
/**
|
|
* Gantt Chart component exports
|
|
* @module gantt
|
|
*/
|
|
|
|
export { GanttChart } from "./GanttChart";
|
|
export type {
|
|
GanttTask,
|
|
GanttChartProps,
|
|
TimelineRange,
|
|
GanttBarPosition,
|
|
} from "./types";
|
|
export { toGanttTask, toGanttTasks } from "./types";
|