react-timeline-scheduler
Version:
A highly customizable timeline scheduler for managing production tasks in React applications.
16 lines (15 loc) • 401 B
TypeScript
export declare enum TaskColors {
REMOVED_TASK = "#C90000",
ADDED_TASK = "#31c48d",
ROW_EVEN = "#F6F6F6",
ROW_ODD = "#ffffff",
TASK_EVEN = "#4D81C7",
TASK_ODD = "#52C0D5",
PROGRESSBAR = "#84e1bc"
}
export declare const defaultStyles: {
customCellHeightPX: number;
customCellWidthPX: number;
taskbgColorFormat: typeof TaskColors;
daybgColorHighlight: any;
};