gantt-task-react-v 1.6.17 → 1.6.19

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.
@@ -414,6 +414,38 @@ export interface GanttProps {
414
414
  * Label text for the data date marker. Defaults to "Data Date".
415
415
  */
416
416
  dataDateLabel?: string;
417
+ /**
418
+ * Show vertical line for project start date on the chart
419
+ */
420
+ showProjectStartLine?: boolean;
421
+ /**
422
+ * Show vertical line for project end date on the chart
423
+ */
424
+ showProjectEndLine?: boolean;
425
+ /**
426
+ * Project start date to render as a vertical line when `showProjectStartLine` is true
427
+ */
428
+ projectStartDate?: Date | null;
429
+ /**
430
+ * Project end date to render as a vertical line when `showProjectEndLine` is true
431
+ */
432
+ projectEndDate?: Date | null;
433
+ /**
434
+ * Color used for the project start line, pin and label. Defaults to green.
435
+ */
436
+ projectStartColor?: string;
437
+ /**
438
+ * Color used for the project end line, pin and label. Defaults to red.
439
+ */
440
+ projectEndColor?: string;
441
+ /**
442
+ * Label text for the project start marker. Defaults to "Project Start".
443
+ */
444
+ projectStartLabel?: string;
445
+ /**
446
+ * Label text for the project end marker. Defaults to "Project End".
447
+ */
448
+ projectEndLabel?: string;
417
449
  /**
418
450
  * Show/hide progress bar on task bars. Defaults to true.
419
451
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gantt-task-react-v",
3
- "version": "1.6.17",
3
+ "version": "1.6.19",
4
4
  "description": "Interactive Gantt Chart for React with TypeScript.",
5
5
  "author": "aguilanbon",
6
6
  "homepage": "https://github.com/aguilanbon/gantt-task-react-v",