gantt-task-react-v 1.0.17 → 1.0.18
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/gantt-task-react.es.js +6 -6
- package/dist/gantt-task-react.umd.js +6 -6
- package/dist/style.css +60 -12
- package/package.json +1 -1
|
@@ -13147,12 +13147,12 @@ const TaskGanttContentInner = (props) => {
|
|
|
13147
13147
|
] });
|
|
13148
13148
|
};
|
|
13149
13149
|
const TaskGanttContent = memo(TaskGanttContentInner);
|
|
13150
|
-
const ganttVerticalContainer = "
|
|
13151
|
-
const horizontalContainer = "
|
|
13152
|
-
const ganttHeader = "
|
|
13153
|
-
const ganttBodyScroll = "
|
|
13154
|
-
const wrapper = "
|
|
13155
|
-
const calendarDragging = "
|
|
13150
|
+
const ganttVerticalContainer = "_ganttVerticalContainer_15txg_1";
|
|
13151
|
+
const horizontalContainer = "_horizontalContainer_15txg_79";
|
|
13152
|
+
const ganttHeader = "_ganttHeader_15txg_143";
|
|
13153
|
+
const ganttBodyScroll = "_ganttBodyScroll_15txg_153";
|
|
13154
|
+
const wrapper = "_wrapper_15txg_217";
|
|
13155
|
+
const calendarDragging = "_calendarDragging_15txg_243";
|
|
13156
13156
|
const styles$2 = {
|
|
13157
13157
|
ganttVerticalContainer,
|
|
13158
13158
|
horizontalContainer,
|
|
@@ -13164,12 +13164,12 @@
|
|
|
13164
13164
|
] });
|
|
13165
13165
|
};
|
|
13166
13166
|
const TaskGanttContent = React.memo(TaskGanttContentInner);
|
|
13167
|
-
const ganttVerticalContainer = "
|
|
13168
|
-
const horizontalContainer = "
|
|
13169
|
-
const ganttHeader = "
|
|
13170
|
-
const ganttBodyScroll = "
|
|
13171
|
-
const wrapper = "
|
|
13172
|
-
const calendarDragging = "
|
|
13167
|
+
const ganttVerticalContainer = "_ganttVerticalContainer_15txg_1";
|
|
13168
|
+
const horizontalContainer = "_horizontalContainer_15txg_79";
|
|
13169
|
+
const ganttHeader = "_ganttHeader_15txg_143";
|
|
13170
|
+
const ganttBodyScroll = "_ganttBodyScroll_15txg_153";
|
|
13171
|
+
const wrapper = "_wrapper_15txg_217";
|
|
13172
|
+
const calendarDragging = "_calendarDragging_15txg_243";
|
|
13173
13173
|
const styles$2 = {
|
|
13174
13174
|
ganttVerticalContainer,
|
|
13175
13175
|
horizontalContainer,
|
package/dist/style.css
CHANGED
|
@@ -581,10 +581,10 @@
|
|
|
581
581
|
user-select: none;
|
|
582
582
|
stroke-width: 0;
|
|
583
583
|
}
|
|
584
|
-
.
|
|
584
|
+
._ganttVerticalContainer_15txg_1 {
|
|
585
585
|
display: flex;
|
|
586
586
|
flex-direction: column;
|
|
587
|
-
overflow-x:
|
|
587
|
+
overflow-x: auto;
|
|
588
588
|
overflow-y: hidden;
|
|
589
589
|
font-size: 0;
|
|
590
590
|
margin: 0;
|
|
@@ -596,16 +596,16 @@
|
|
|
596
596
|
min-height: 0;
|
|
597
597
|
}
|
|
598
598
|
|
|
599
|
-
.
|
|
599
|
+
._ganttVerticalContainer_15txg_1::-webkit-scrollbar {
|
|
600
600
|
width: 1rem;
|
|
601
601
|
height: 1rem;
|
|
602
602
|
}
|
|
603
603
|
|
|
604
|
-
.
|
|
604
|
+
._ganttVerticalContainer_15txg_1::-webkit-scrollbar-corner {
|
|
605
605
|
background: transparent;
|
|
606
606
|
}
|
|
607
607
|
|
|
608
|
-
.
|
|
608
|
+
._ganttVerticalContainer_15txg_1::-webkit-scrollbar-thumb {
|
|
609
609
|
border: 4px solid transparent;
|
|
610
610
|
/*noinspection CssUnresolvedCustomProperty*/
|
|
611
611
|
background: var(--gantt-scrollbar-thumb-color);
|
|
@@ -613,27 +613,51 @@
|
|
|
613
613
|
background-clip: padding-box;
|
|
614
614
|
}
|
|
615
615
|
|
|
616
|
-
.
|
|
616
|
+
._ganttVerticalContainer_15txg_1::-webkit-scrollbar-thumb:hover {
|
|
617
617
|
border: 2px solid transparent;
|
|
618
618
|
/*noinspection CssUnresolvedCustomProperty*/
|
|
619
619
|
background: var(--gantt-scrollbar-thumb-color);
|
|
620
620
|
background-clip: padding-box;
|
|
621
621
|
}
|
|
622
622
|
|
|
623
|
-
.
|
|
623
|
+
._horizontalContainer_15txg_79 {
|
|
624
624
|
margin: 0;
|
|
625
625
|
padding: 0;
|
|
626
|
-
overflow:
|
|
626
|
+
overflow: auto;
|
|
627
627
|
height: 100%;
|
|
628
628
|
min-height: 0;
|
|
629
629
|
}
|
|
630
630
|
|
|
631
|
-
.
|
|
631
|
+
._horizontalContainer_15txg_79::-webkit-scrollbar {
|
|
632
|
+
width: 1rem;
|
|
633
|
+
height: 1rem;
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
._horizontalContainer_15txg_79::-webkit-scrollbar-corner {
|
|
637
|
+
background: transparent;
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
._horizontalContainer_15txg_79::-webkit-scrollbar-thumb {
|
|
641
|
+
border: 4px solid transparent;
|
|
642
|
+
/*noinspection CssUnresolvedCustomProperty*/
|
|
643
|
+
background: var(--gantt-scrollbar-thumb-color);
|
|
644
|
+
border-radius: 12px;
|
|
645
|
+
background-clip: padding-box;
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
._horizontalContainer_15txg_79::-webkit-scrollbar-thumb:hover {
|
|
649
|
+
border: 2px solid transparent;
|
|
650
|
+
/*noinspection CssUnresolvedCustomProperty*/
|
|
651
|
+
background: var(--gantt-scrollbar-thumb-color);
|
|
652
|
+
background-clip: padding-box;
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
._ganttHeader_15txg_143 {
|
|
632
656
|
flex: 0 0 auto;
|
|
633
657
|
z-index: 3;
|
|
634
658
|
}
|
|
635
659
|
|
|
636
|
-
.
|
|
660
|
+
._ganttBodyScroll_15txg_153 {
|
|
637
661
|
flex: 1 1 auto;
|
|
638
662
|
overflow-y: auto;
|
|
639
663
|
overflow-x: hidden;
|
|
@@ -641,7 +665,31 @@
|
|
|
641
665
|
height: 100%;
|
|
642
666
|
}
|
|
643
667
|
|
|
644
|
-
.
|
|
668
|
+
._ganttBodyScroll_15txg_153::-webkit-scrollbar {
|
|
669
|
+
width: 1rem;
|
|
670
|
+
height: 1rem;
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
._ganttBodyScroll_15txg_153::-webkit-scrollbar-corner {
|
|
674
|
+
background: transparent;
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
._ganttBodyScroll_15txg_153::-webkit-scrollbar-thumb {
|
|
678
|
+
border: 4px solid transparent;
|
|
679
|
+
/*noinspection CssUnresolvedCustomProperty*/
|
|
680
|
+
background: var(--gantt-scrollbar-thumb-color);
|
|
681
|
+
border-radius: 12px;
|
|
682
|
+
background-clip: padding-box;
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
._ganttBodyScroll_15txg_153::-webkit-scrollbar-thumb:hover {
|
|
686
|
+
border: 2px solid transparent;
|
|
687
|
+
/*noinspection CssUnresolvedCustomProperty*/
|
|
688
|
+
background: var(--gantt-scrollbar-thumb-color);
|
|
689
|
+
background-clip: padding-box;
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
._wrapper_15txg_217 {
|
|
645
693
|
display: flex;
|
|
646
694
|
padding: 0;
|
|
647
695
|
margin: 0;
|
|
@@ -654,7 +702,7 @@
|
|
|
654
702
|
min-height: 0;
|
|
655
703
|
}
|
|
656
704
|
|
|
657
|
-
.
|
|
705
|
+
._calendarDragging_15txg_243 {
|
|
658
706
|
cursor: grabbing;
|
|
659
707
|
}
|
|
660
708
|
/*noinspection CssUnresolvedCustomProperty*/
|
package/package.json
CHANGED