gantt-task-react-v 1.0.22 → 1.0.23
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.
|
@@ -13186,16 +13186,14 @@ const TaskGanttInner = (props) => {
|
|
|
13186
13186
|
const containerStyle = useMemo(
|
|
13187
13187
|
() => ({
|
|
13188
13188
|
height: "100%",
|
|
13189
|
-
|
|
13190
|
-
width: "max-content"
|
|
13189
|
+
width: fullSvgWidth
|
|
13191
13190
|
}),
|
|
13192
13191
|
[fullSvgWidth]
|
|
13193
13192
|
);
|
|
13194
13193
|
const gridStyle = useMemo(
|
|
13195
13194
|
() => ({
|
|
13196
13195
|
height: Math.max(ganttFullHeight, minimumRowDisplayed * rowHeight),
|
|
13197
|
-
|
|
13198
|
-
width: "max-content",
|
|
13196
|
+
width: fullSvgWidth,
|
|
13199
13197
|
backgroundSize: `${columnWidth}px ${fullRowHeight * 2}px`,
|
|
13200
13198
|
backgroundPositionX: additionalLeftSpace || void 0,
|
|
13201
13199
|
backgroundImage: [
|
|
@@ -13203,16 +13203,14 @@
|
|
|
13203
13203
|
const containerStyle = React.useMemo(
|
|
13204
13204
|
() => ({
|
|
13205
13205
|
height: "100%",
|
|
13206
|
-
|
|
13207
|
-
width: "max-content"
|
|
13206
|
+
width: fullSvgWidth
|
|
13208
13207
|
}),
|
|
13209
13208
|
[fullSvgWidth]
|
|
13210
13209
|
);
|
|
13211
13210
|
const gridStyle = React.useMemo(
|
|
13212
13211
|
() => ({
|
|
13213
13212
|
height: Math.max(ganttFullHeight, minimumRowDisplayed * rowHeight),
|
|
13214
|
-
|
|
13215
|
-
width: "max-content",
|
|
13213
|
+
width: fullSvgWidth,
|
|
13216
13214
|
backgroundSize: `${columnWidth}px ${fullRowHeight * 2}px`,
|
|
13217
13215
|
backgroundPositionX: additionalLeftSpace || void 0,
|
|
13218
13216
|
backgroundImage: [
|
package/package.json
CHANGED