react-timeline-scheduler
Version:
A highly customizable timeline scheduler for managing production tasks in React applications.
26 lines (25 loc) • 739 B
TypeScript
import { default as React } from 'react';
interface HeaderProps {
dates: string[];
topic: string;
cellWidthPX: number;
lockOperations: boolean;
daybgColor?: {
daysHighlight: Date[];
daybgColorHighlight: {
[key: string]: string;
};
};
scrollIntoToday?: boolean;
containerRef: React.RefObject<HTMLDivElement>;
borderColor: string;
labelConfig: {
additionalStickyLeft: number;
labelMaxWidth: number;
setLabelMaxWidth: React.Dispatch<React.SetStateAction<number>>;
};
setTooltipVisible: React.Dispatch<React.SetStateAction<React.ReactNode>>;
lockChange: () => void;
}
export declare const Header: React.FC<HeaderProps>;
export {};