gantt-task-react-v 1.1.20 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -30,10 +30,6 @@ export interface TaskGanttContentProps extends GanttTaskBarActions {
30
30
  selectTaskOnMouseDown: (taskId: string, event: MouseEvent) => void;
31
31
  selectedIdsMirror: Readonly<Record<string, true>>;
32
32
  onTooltipTask: (task: Task | null, element: Element | null) => void;
33
- /**
34
- * When true, disable interactive behaviors for task bars (drag, click, relations)
35
- */
36
- isLoading?: boolean;
37
33
  startColumnIndex: number;
38
34
  taskYOffset: number;
39
35
  visibleTasksMirror: Readonly<Record<string, true>>;
@@ -18,5 +18,6 @@ export interface TaskGanttProps extends GanttTaskBarActions {
18
18
  onVerticalScrollbarScrollX: (event: SyntheticEvent<HTMLDivElement>) => void;
19
19
  verticalGanttContainerRef: RefObject<HTMLDivElement>;
20
20
  onOpenGanttContextMenu?: (clientX: number, clientY: number) => void;
21
+ isLoading?: boolean;
21
22
  }
22
23
  export declare const TaskGantt: React.NamedExoticComponent<TaskGanttProps>;
@@ -38,11 +38,8 @@ export type TaskListProps = {
38
38
  taskListContainerRef: RefObject<HTMLDivElement>;
39
39
  taskListRef: RefObject<HTMLDivElement>;
40
40
  tasks: readonly RenderTask[];
41
- /**
42
- * When true, disable user interactions on the task list (clicks, context menu)
43
- */
44
- isLoading?: boolean;
45
41
  onResizeColumn?: OnResizeColumn;
46
42
  tableBottom?: TableRenderBottomProps;
43
+ isLoading?: boolean;
47
44
  };
48
45
  export declare const TaskList: React.NamedExoticComponent<TaskListProps>;