gantt-task-react-powern 0.4.66 → 0.4.68

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.
@@ -76,10 +76,6 @@ export interface EventOption {
76
76
  * Invokes on expander on task list
77
77
  */
78
78
  onExpanderClick?: (task: Task) => void;
79
- /**
80
- * Invokes when tasks are multi-selected via checkboxes
81
- */
82
- onMultiSelect?: (tasks: Task[]) => void;
83
79
  }
84
80
  export interface DisplayOption {
85
81
  viewMode?: ViewMode;
@@ -119,7 +115,6 @@ export interface StylingOption {
119
115
  arrowColor?: string;
120
116
  arrowIndent?: number;
121
117
  todayColor?: string;
122
- weekendColor?: string;
123
118
  TooltipContent?: React.FC<{
124
119
  task: Task;
125
120
  fontSize: string;
@@ -151,7 +146,4 @@ export interface StylingOption {
151
146
  export interface GanttProps extends EventOption, DisplayOption, StylingOption {
152
147
  tasks: Task[];
153
148
  leafTasks?: Task[];
154
- scheduleType: string;
155
- startDate?: Date;
156
- endDate?: Date;
157
149
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gantt-task-react-powern",
3
- "version": "0.4.66",
3
+ "version": "0.4.68",
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",