@thepocman/gantt-task-react 1.0.4 → 1.0.5

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.
@@ -136,6 +136,7 @@ export interface Distances {
136
136
  export type TaskType = "task" | "milestone" | "project";
137
137
  export interface Task {
138
138
  id: string;
139
+ taskId?: string;
139
140
  type: TaskType;
140
141
  name: string;
141
142
  start: Date;
@@ -160,6 +161,7 @@ export interface Task {
160
161
  }
161
162
  export interface EmptyTask {
162
163
  id: string;
164
+ taskId?: string;
163
165
  type: "empty";
164
166
  name: string;
165
167
  parent?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thepocman/gantt-task-react",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Fork of gantt-task-react with support for grouped tasks on a single row when collapsed",
5
5
  "author": "Adrian Bueno <adrianlbueno@users.noreply.github.com>",
6
6
  "homepage": "https://github.com/adrianlbueno/gantt-task-react#readme",