gantt-task-react-powern 0.4.67 → 0.4.69
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 +0 -2
- package/dist/components/task-list/task-list-header.d.ts +0 -1
- package/dist/components/task-list/task-list-table.d.ts +0 -1
- package/dist/components/task-list/task-list.d.ts +0 -3
- package/dist/index.css +1 -27
- package/dist/index.js +51 -138
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +51 -138
- package/dist/index.modern.js.map +1 -1
- package/dist/types/public-types.d.ts +1 -4
- package/package.json +1 -1
|
@@ -13,6 +13,7 @@ export declare enum ViewMode {
|
|
|
13
13
|
export declare type TaskType = "task" | "milestone" | "project";
|
|
14
14
|
export interface Task {
|
|
15
15
|
id: string;
|
|
16
|
+
optionalId?: string | null;
|
|
16
17
|
type: TaskType;
|
|
17
18
|
name: string;
|
|
18
19
|
start: Date;
|
|
@@ -115,7 +116,6 @@ export interface StylingOption {
|
|
|
115
116
|
arrowColor?: string;
|
|
116
117
|
arrowIndent?: number;
|
|
117
118
|
todayColor?: string;
|
|
118
|
-
weekendColor?: string;
|
|
119
119
|
TooltipContent?: React.FC<{
|
|
120
120
|
task: Task;
|
|
121
121
|
fontSize: string;
|
|
@@ -147,7 +147,4 @@ export interface StylingOption {
|
|
|
147
147
|
export interface GanttProps extends EventOption, DisplayOption, StylingOption {
|
|
148
148
|
tasks: Task[];
|
|
149
149
|
leafTasks?: Task[];
|
|
150
|
-
scheduleType: string;
|
|
151
|
-
startDate?: Date;
|
|
152
|
-
endDate?: Date;
|
|
153
150
|
}
|
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.69",
|
|
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",
|