gantt-task-react-powern 0.4.67 → 0.4.69

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.
@@ -13,6 +13,7 @@ export declare enum ViewMode {
13
13
  export declare type TaskType = "task" | "milestone" | "project";
14
14
  export interface Task {
15
15
  id: string;
16
+ optionalId?: string | null;
16
17
  type: TaskType;
17
18
  name: string;
18
19
  start: Date;
@@ -115,7 +116,6 @@ export interface StylingOption {
115
116
  arrowColor?: string;
116
117
  arrowIndent?: number;
117
118
  todayColor?: string;
118
- weekendColor?: string;
119
119
  TooltipContent?: React.FC<{
120
120
  task: Task;
121
121
  fontSize: string;
@@ -147,7 +147,4 @@ export interface StylingOption {
147
147
  export interface GanttProps extends EventOption, DisplayOption, StylingOption {
148
148
  tasks: Task[];
149
149
  leafTasks?: Task[];
150
- scheduleType: string;
151
- startDate?: Date;
152
- endDate?: Date;
153
150
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gantt-task-react-powern",
3
- "version": "0.4.67",
3
+ "version": "0.4.69",
4
4
  "description": "Interactive Gantt Chart for React with TypeScript.",
5
5
  "author": "lewibs <benjamin.lewis@powern.ai>",
6
6
  "homepage": "https://github.com/powernai/gantt-task-react-powern",