gantt-task-react-v 1.0.14 → 1.0.15
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.
|
@@ -10828,22 +10828,15 @@ const TaskListInner = ({
|
|
|
10828
10828
|
ref: taskListContainerRef,
|
|
10829
10829
|
className: styles$d.horizontalContainer,
|
|
10830
10830
|
style: {
|
|
10831
|
-
height: Math.min(
|
|
10832
|
-
ganttFullHeight,
|
|
10833
|
-
distances.minimumRowDisplayed * distances.rowHeight
|
|
10834
|
-
),
|
|
10835
10831
|
width: taskListWidth
|
|
10836
10832
|
},
|
|
10837
10833
|
children: /* @__PURE__ */ jsx(
|
|
10838
10834
|
"div",
|
|
10839
10835
|
{
|
|
10840
10836
|
style: {
|
|
10841
|
-
height: Math.max(
|
|
10842
|
-
ganttFullHeight,
|
|
10843
|
-
distances.minimumRowDisplayed * distances.rowHeight
|
|
10844
|
-
),
|
|
10845
10837
|
backgroundSize: `100% ${fullRowHeight * 2}px`,
|
|
10846
|
-
backgroundImage: `linear-gradient(to bottom, transparent ${fullRowHeight}px, #f5f5f5 ${fullRowHeight}px)
|
|
10838
|
+
backgroundImage: `linear-gradient(to bottom, transparent ${fullRowHeight}px, #f5f5f5 ${fullRowHeight}px)`,
|
|
10839
|
+
height: "100%"
|
|
10847
10840
|
},
|
|
10848
10841
|
children: /* @__PURE__ */ jsx(
|
|
10849
10842
|
RenderTaskListTable,
|
|
@@ -10845,22 +10845,15 @@
|
|
|
10845
10845
|
ref: taskListContainerRef,
|
|
10846
10846
|
className: styles$d.horizontalContainer,
|
|
10847
10847
|
style: {
|
|
10848
|
-
height: Math.min(
|
|
10849
|
-
ganttFullHeight,
|
|
10850
|
-
distances.minimumRowDisplayed * distances.rowHeight
|
|
10851
|
-
),
|
|
10852
10848
|
width: taskListWidth
|
|
10853
10849
|
},
|
|
10854
10850
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
10855
10851
|
"div",
|
|
10856
10852
|
{
|
|
10857
10853
|
style: {
|
|
10858
|
-
height: Math.max(
|
|
10859
|
-
ganttFullHeight,
|
|
10860
|
-
distances.minimumRowDisplayed * distances.rowHeight
|
|
10861
|
-
),
|
|
10862
10854
|
backgroundSize: `100% ${fullRowHeight * 2}px`,
|
|
10863
|
-
backgroundImage: `linear-gradient(to bottom, transparent ${fullRowHeight}px, #f5f5f5 ${fullRowHeight}px)
|
|
10855
|
+
backgroundImage: `linear-gradient(to bottom, transparent ${fullRowHeight}px, #f5f5f5 ${fullRowHeight}px)`,
|
|
10856
|
+
height: "100%"
|
|
10864
10857
|
},
|
|
10865
10858
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
10866
10859
|
RenderTaskListTable,
|
package/package.json
CHANGED