gantt-task-react-v 1.0.33 → 1.0.34

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.
@@ -13146,12 +13146,12 @@ const TaskGanttContentInner = (props) => {
13146
13146
  ] });
13147
13147
  };
13148
13148
  const TaskGanttContent = memo(TaskGanttContentInner);
13149
- const ganttVerticalContainer = "_ganttVerticalContainer_1khem_1";
13150
- const horizontalContainer = "_horizontalContainer_1khem_81";
13151
- const ganttHeader = "_ganttHeader_1khem_103";
13152
- const ganttBodyScroll = "_ganttBodyScroll_1khem_113";
13153
- const wrapper = "_wrapper_1khem_131";
13154
- const calendarDragging = "_calendarDragging_1khem_163";
13149
+ const ganttVerticalContainer = "_ganttVerticalContainer_ht10f_1";
13150
+ const horizontalContainer = "_horizontalContainer_ht10f_81";
13151
+ const ganttHeader = "_ganttHeader_ht10f_103";
13152
+ const ganttBodyScroll = "_ganttBodyScroll_ht10f_113";
13153
+ const wrapper = "_wrapper_ht10f_131";
13154
+ const calendarDragging = "_calendarDragging_ht10f_165";
13155
13155
  const styles$2 = {
13156
13156
  ganttVerticalContainer,
13157
13157
  horizontalContainer,
@@ -13163,12 +13163,12 @@
13163
13163
  ] });
13164
13164
  };
13165
13165
  const TaskGanttContent = React.memo(TaskGanttContentInner);
13166
- const ganttVerticalContainer = "_ganttVerticalContainer_1khem_1";
13167
- const horizontalContainer = "_horizontalContainer_1khem_81";
13168
- const ganttHeader = "_ganttHeader_1khem_103";
13169
- const ganttBodyScroll = "_ganttBodyScroll_1khem_113";
13170
- const wrapper = "_wrapper_1khem_131";
13171
- const calendarDragging = "_calendarDragging_1khem_163";
13166
+ const ganttVerticalContainer = "_ganttVerticalContainer_ht10f_1";
13167
+ const horizontalContainer = "_horizontalContainer_ht10f_81";
13168
+ const ganttHeader = "_ganttHeader_ht10f_103";
13169
+ const ganttBodyScroll = "_ganttBodyScroll_ht10f_113";
13170
+ const wrapper = "_wrapper_ht10f_131";
13171
+ const calendarDragging = "_calendarDragging_ht10f_165";
13172
13172
  const styles$2 = {
13173
13173
  ganttVerticalContainer,
13174
13174
  horizontalContainer,
package/dist/style.css CHANGED
@@ -584,7 +584,7 @@
584
584
  user-select: none;
585
585
  stroke-width: 0;
586
586
  }
587
- ._ganttVerticalContainer_1khem_1 {
587
+ ._ganttVerticalContainer_ht10f_1 {
588
588
  display: flex;
589
589
  flex-direction: column;
590
590
  overflow-x: auto;
@@ -600,16 +600,16 @@
600
600
  max-width: 100%;
601
601
  }
602
602
 
603
- ._ganttVerticalContainer_1khem_1::-webkit-scrollbar {
603
+ ._ganttVerticalContainer_ht10f_1::-webkit-scrollbar {
604
604
  width: 1rem;
605
605
  height: 1rem;
606
606
  }
607
607
 
608
- ._ganttVerticalContainer_1khem_1::-webkit-scrollbar-corner {
608
+ ._ganttVerticalContainer_ht10f_1::-webkit-scrollbar-corner {
609
609
  background: transparent;
610
610
  }
611
611
 
612
- ._ganttVerticalContainer_1khem_1::-webkit-scrollbar-thumb {
612
+ ._ganttVerticalContainer_ht10f_1::-webkit-scrollbar-thumb {
613
613
  border: 4px solid transparent;
614
614
  /*noinspection CssUnresolvedCustomProperty*/
615
615
  background: var(--gantt-scrollbar-thumb-color);
@@ -617,14 +617,14 @@
617
617
  background-clip: padding-box;
618
618
  }
619
619
 
620
- ._ganttVerticalContainer_1khem_1::-webkit-scrollbar-thumb:hover {
620
+ ._ganttVerticalContainer_ht10f_1::-webkit-scrollbar-thumb:hover {
621
621
  border: 2px solid transparent;
622
622
  /*noinspection CssUnresolvedCustomProperty*/
623
623
  background: var(--gantt-scrollbar-thumb-color);
624
624
  background-clip: padding-box;
625
625
  }
626
626
 
627
- ._horizontalContainer_1khem_81 {
627
+ ._horizontalContainer_ht10f_81 {
628
628
  margin: 0;
629
629
  padding: 0;
630
630
  /* allow the inner grid/svg to overflow horizontally so the outer container can scroll
@@ -635,12 +635,12 @@
635
635
  min-height: 0;
636
636
  }
637
637
 
638
- ._ganttHeader_1khem_103 {
638
+ ._ganttHeader_ht10f_103 {
639
639
  flex: 0 0 auto;
640
640
  z-index: 3;
641
641
  }
642
642
 
643
- ._ganttBodyScroll_1khem_113 {
643
+ ._ganttBodyScroll_ht10f_113 {
644
644
  flex: 1 1 auto;
645
645
  /* allow horizontal scrolling here so the visible scroll area matches the SVG width */
646
646
  overflow-y: auto;
@@ -649,7 +649,7 @@
649
649
  height: 100%;
650
650
  }
651
651
 
652
- ._wrapper_1khem_131 {
652
+ ._wrapper_ht10f_131 {
653
653
  display: flex;
654
654
  padding: 0;
655
655
  margin: 0;
@@ -660,12 +660,13 @@
660
660
  border-bottom: 1px solid var(--gantt-divider-color);
661
661
  height: 100%;
662
662
  min-height: 0;
663
- /* allow children (like the gantt svg) to overflow horizontally instead of being clipped */
664
- max-width: none;
665
- overflow: visible;
663
+ /* allow horizontal scrolling on the wrapper so users can navigate the wide gantt */
664
+ max-width: 100%;
665
+ overflow-x: auto;
666
+ overflow-y: hidden;
666
667
  }
667
668
 
668
- ._calendarDragging_1khem_163 {
669
+ ._calendarDragging_ht10f_165 {
669
670
  cursor: grabbing;
670
671
  }
671
672
  /*noinspection CssUnresolvedCustomProperty*/
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gantt-task-react-v",
3
- "version": "1.0.33",
3
+ "version": "1.0.34",
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",