gantt-task-react-v 1.0.26 → 1.0.27
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.
|
@@ -4674,7 +4674,6 @@ const styles$k = {
|
|
|
4674
4674
|
scroll
|
|
4675
4675
|
};
|
|
4676
4676
|
const VerticalScroll = ({
|
|
4677
|
-
ganttHeight,
|
|
4678
4677
|
ganttFullHeight,
|
|
4679
4678
|
headerHeight,
|
|
4680
4679
|
isChangeInProgress,
|
|
@@ -4686,7 +4685,7 @@ const VerticalScroll = ({
|
|
|
4686
4685
|
"div",
|
|
4687
4686
|
{
|
|
4688
4687
|
style: {
|
|
4689
|
-
height:
|
|
4688
|
+
height: `calc(100% - ${headerHeight}px)`,
|
|
4690
4689
|
marginTop: headerHeight,
|
|
4691
4690
|
marginLeft: rtl ? void 0 : "-1rem",
|
|
4692
4691
|
pointerEvents: isChangeInProgress ? "none" : void 0
|
|
@@ -4691,7 +4691,6 @@
|
|
|
4691
4691
|
scroll
|
|
4692
4692
|
};
|
|
4693
4693
|
const VerticalScroll = ({
|
|
4694
|
-
ganttHeight,
|
|
4695
4694
|
ganttFullHeight,
|
|
4696
4695
|
headerHeight,
|
|
4697
4696
|
isChangeInProgress,
|
|
@@ -4703,7 +4702,7 @@
|
|
|
4703
4702
|
"div",
|
|
4704
4703
|
{
|
|
4705
4704
|
style: {
|
|
4706
|
-
height:
|
|
4705
|
+
height: `calc(100% - ${headerHeight}px)`,
|
|
4707
4706
|
marginTop: headerHeight,
|
|
4708
4707
|
marginLeft: rtl ? void 0 : "-1rem",
|
|
4709
4708
|
pointerEvents: isChangeInProgress ? "none" : void 0
|
package/package.json
CHANGED