gantt-task-react-powern 0.4.62 → 0.4.64
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.
- package/dist/components/grid/grid-body.d.ts +2 -0
- package/dist/components/task-list/task-list-table.d.ts +1 -0
- package/dist/components/task-list/task-list.d.ts +2 -0
- package/dist/index.css +27 -1
- package/dist/index.js +77 -22
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +77 -22
- package/dist/index.modern.js.map +1 -1
- package/dist/types/public-types.d.ts +4 -0
- package/package.json +1 -1
|
@@ -115,6 +115,7 @@ export interface StylingOption {
|
|
|
115
115
|
arrowColor?: string;
|
|
116
116
|
arrowIndent?: number;
|
|
117
117
|
todayColor?: string;
|
|
118
|
+
weekendColor?: string;
|
|
118
119
|
TooltipContent?: React.FC<{
|
|
119
120
|
task: Task;
|
|
120
121
|
fontSize: string;
|
|
@@ -146,4 +147,7 @@ export interface StylingOption {
|
|
|
146
147
|
export interface GanttProps extends EventOption, DisplayOption, StylingOption {
|
|
147
148
|
tasks: Task[];
|
|
148
149
|
leafTasks?: Task[];
|
|
150
|
+
scheduleType: string;
|
|
151
|
+
startDate?: Date;
|
|
152
|
+
endDate?: Date;
|
|
149
153
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gantt-task-react-powern",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.64",
|
|
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",
|