@thepocman/gantt-task-react 1.0.0 → 1.0.3

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.
@@ -156,6 +156,7 @@ export interface Task {
156
156
  hideChildren?: boolean;
157
157
  displayOrder?: number;
158
158
  comparisonLevel?: number;
159
+ status?: string;
159
160
  }
160
161
  export interface EmptyTask {
161
162
  id: string;
@@ -163,6 +164,7 @@ export interface EmptyTask {
163
164
  name: string;
164
165
  parent?: string;
165
166
  comparisonLevel?: number;
167
+ status?: string;
166
168
  displayOrder?: number;
167
169
  isDisabled?: boolean;
168
170
  styles?: Partial<ColorStyles>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thepocman/gantt-task-react",
3
- "version": "1.0.0",
3
+ "version": "1.0.3",
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",