UNPKG

react-timeline-scheduler

Version:

A highly customizable timeline scheduler for managing production tasks in React applications.

17 lines (16 loc) 756 B
import { default as React } from 'react'; import { ProductionTask } from '../../../../types'; type TaskContentProps = { task: ProductionTask; percentage: number; taskBackgroundColor: string; lockOperations: boolean; cellWidthPX: number; textStickyLeftPX?: number; handleVisibleTooltip: (task: ProductionTask) => void; handleExpand: () => void; handleShrink: () => void; setTooltipVisible: (value: React.SetStateAction<React.ReactNode>) => void; }; export declare const TaskContent: ({ task, percentage, taskBackgroundColor, lockOperations, cellWidthPX, textStickyLeftPX, handleVisibleTooltip, handleExpand, handleShrink, setTooltipVisible, }: TaskContentProps) => import("react/jsx-runtime").JSX.Element; export {};