gantt-task-react-v 1.0.49 → 1.0.50

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.
@@ -353,31 +353,13 @@ export interface GanttProps {
353
353
  */
354
354
  dataDateLabel?: string;
355
355
  /**
356
- * Colors to use when splitting bars at the data date line.
357
- * Structure: { task?: { onTime?: string; delayed?: string }, project?: { onTime?: string; delayed?: string }, comparison?: { onTime?: string; delayed?: string } }
358
- */
359
- splitbarColors?: {
360
- task?: {
361
- onTime?: string;
362
- delayed?: string;
363
- };
364
- project?: {
365
- onTime?: string;
366
- delayed?: string;
367
- };
368
- comparison?: {
369
- onTime?: string;
370
- delayed?: string;
371
- };
372
- };
373
- /**
374
- * Show or hide the progress bar overlay on tasks. Defaults to true.
356
+ * Show/hide progress bar on task bars. Defaults to true.
375
357
  */
376
- showProgressBar?: boolean;
358
+ showProgress?: boolean;
377
359
  /**
378
- * Color for the progress bar overlay. If not provided, theme progress color is used.
360
+ * Custom color for progress bars. If not provided, theme progress colors are used.
379
361
  */
380
- progressBarColor?: string;
362
+ progressColor?: string;
381
363
  }
382
364
  export interface GanttTaskBarActions {
383
365
  allowMoveTaskBar?: (action: TaskBarMoveAction, task: RenderTask) => boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gantt-task-react-v",
3
- "version": "1.0.49",
3
+ "version": "1.0.50",
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",