@megha-ui/react 1.2.811 → 1.2.812
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.
|
@@ -1526,11 +1526,7 @@ withCard = false, cardClassName, cardHeader, title, headerLeft, headerRight, sub
|
|
|
1526
1526
|
? "minmax(max-content, 1fr)"
|
|
1527
1527
|
: "max-content")
|
|
1528
1528
|
.join(" "),
|
|
1529
|
-
gridTemplateRows: gridColumns
|
|
1530
|
-
.map((_, index) => index > gridColumns.length - 2
|
|
1531
|
-
? "minmax(max-content, 1fr)"
|
|
1532
|
-
: "max-content")
|
|
1533
|
-
.join(" "),
|
|
1529
|
+
gridTemplateRows: gridColumns.map(() => "max-content").join(" "),
|
|
1534
1530
|
height: `calc(100% - ${removalHeight})`,
|
|
1535
1531
|
border: gridBorder ? "1px solid #f0f0f0" : "none",
|
|
1536
1532
|
overflow: calculateVisible && gridGroupBy ? "visible" : "auto",
|
package/package.json
CHANGED