gantt-task-react-v 1.6.19 → 1.7.1
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/gantt-today/index.d.ts +0 -8
- package/dist/components/task-item/task-label/task-responsive-label.d.ts +1 -0
- package/dist/gantt-task-react.es.js +451 -406
- package/dist/gantt-task-react.umd.js +451 -406
- package/dist/style.css +20 -10
- package/dist/types/public-types.d.ts +0 -32
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -534,10 +534,13 @@
|
|
|
534
534
|
._ganttTodayCircle_1oyhk_9 {
|
|
535
535
|
|
|
536
536
|
}
|
|
537
|
-
.
|
|
537
|
+
._calendarBottomText_1mt8w_1 {
|
|
538
538
|
text-anchor: middle;
|
|
539
539
|
/*noinspection CssUnresolvedCustomProperty*/
|
|
540
|
-
fill: var(
|
|
540
|
+
fill: var(
|
|
541
|
+
--gantt-calendar-bottom-text-color,
|
|
542
|
+
var(--gantt-secondary-text-color)
|
|
543
|
+
);
|
|
541
544
|
-webkit-touch-callout: none;
|
|
542
545
|
-webkit-user-select: none;
|
|
543
546
|
-moz-user-select: none;
|
|
@@ -546,12 +549,12 @@
|
|
|
546
549
|
pointer-events: none;
|
|
547
550
|
}
|
|
548
551
|
|
|
549
|
-
.
|
|
552
|
+
._calendarTopTick_1mt8w_31 {
|
|
550
553
|
/*noinspection CssUnresolvedCustomProperty*/
|
|
551
554
|
stroke: var(--gantt-calendar-top-divider-color, var(--gantt-divider-color));
|
|
552
555
|
}
|
|
553
556
|
|
|
554
|
-
.
|
|
557
|
+
._calendarTopText_1mt8w_41 {
|
|
555
558
|
text-anchor: middle;
|
|
556
559
|
/*noinspection CssUnresolvedCustomProperty*/
|
|
557
560
|
fill: var(--gantt-calendar-top-text-color, var(--gantt-primary-text-color));
|
|
@@ -564,19 +567,25 @@
|
|
|
564
567
|
font-weight: bold;
|
|
565
568
|
}
|
|
566
569
|
|
|
567
|
-
.
|
|
570
|
+
._calendarHeader_1mt8w_67 {
|
|
568
571
|
fill: transparent;
|
|
569
572
|
/*noinspection CssUnresolvedCustomProperty*/
|
|
570
573
|
stroke: var(--gantt-calendar-stroke-color);
|
|
571
574
|
stroke-width: 1.4;
|
|
572
575
|
}
|
|
573
576
|
|
|
574
|
-
.
|
|
577
|
+
._calendarBottomSeparator_1mt8w_81 {
|
|
578
|
+
/*noinspection CssUnresolvedCustomProperty*/
|
|
579
|
+
stroke: var(--gantt-calendar-stroke-color, #e0e0e0);
|
|
580
|
+
stroke-width: 1;
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
._calendar_1mt8w_1 {
|
|
575
584
|
cursor: auto;
|
|
576
585
|
user-select: none;
|
|
577
586
|
}
|
|
578
587
|
|
|
579
|
-
.
|
|
588
|
+
._calendarDragging_1mt8w_103 {
|
|
580
589
|
cursor: ew-resize;
|
|
581
590
|
}
|
|
582
591
|
._arrow_clickable_3u3q2_1 {
|
|
@@ -700,7 +709,7 @@
|
|
|
700
709
|
._milestoneBackground_vcirf_11 {
|
|
701
710
|
user-select: none;
|
|
702
711
|
}
|
|
703
|
-
.
|
|
712
|
+
._barLabel_5nsbb_1 {
|
|
704
713
|
fill: #fff;
|
|
705
714
|
text-anchor: middle;
|
|
706
715
|
font-weight: lighter;
|
|
@@ -713,14 +722,15 @@
|
|
|
713
722
|
pointer-events: none;
|
|
714
723
|
}
|
|
715
724
|
|
|
716
|
-
.
|
|
725
|
+
._barLabelHidden_5nsbb_27 {
|
|
717
726
|
display: none;
|
|
718
727
|
}
|
|
719
728
|
|
|
720
729
|
/*noinspection CssUnresolvedCustomProperty*/
|
|
721
|
-
.
|
|
730
|
+
._barLabelOutside_5nsbb_37 {
|
|
722
731
|
fill: var(--gantt-secondary-text-color);
|
|
723
732
|
text-anchor: start;
|
|
733
|
+
dominant-baseline: central;
|
|
724
734
|
stroke: white;
|
|
725
735
|
stroke-width: 4px;
|
|
726
736
|
stroke-linejoin: round;
|
|
@@ -414,38 +414,6 @@ 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;
|
|
449
417
|
/**
|
|
450
418
|
* Show/hide progress bar on task bars. Defaults to true.
|
|
451
419
|
*/
|
package/package.json
CHANGED