gantt-task-react-powern 0.3.11 → 0.3.12

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.
@@ -129,6 +129,7 @@ export interface StylingOption {
129
129
  setSelectedTask: (taskId: string) => void;
130
130
  onExpanderClick: (task: Task) => void;
131
131
  }>;
132
+ taskLabelRenderer?: (Task: Task) => React.ReactNode;
132
133
  }
133
134
  export interface GanttProps extends EventOption, DisplayOption, StylingOption {
134
135
  tasks: Task[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gantt-task-react-powern",
3
- "version": "0.3.11",
3
+ "version": "0.3.12",
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",
@@ -62,5 +62,8 @@
62
62
  },
63
63
  "files": [
64
64
  "dist"
65
- ]
65
+ ],
66
+ "dependencies": {
67
+ "gantt-task-react": "^0.3.9"
68
+ }
66
69
  }