@megha-ui/react 1.2.626 → 1.2.627

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.
@@ -614,7 +614,7 @@ withCard = false, cardClassName, cardHeader, title, headerLeft, headerRight, sub
614
614
  const flatArray = [];
615
615
  if (groupedData) {
616
616
  groupedData.forEach((group) => {
617
- const _groupedValues = [...groupedValues, group.value].map((item) => item ? item : "row");
617
+ const _groupedValues = [...groupedValues, group.value].map((item) => item ? item : "--");
618
618
  const currentKeys = (group.allKeys
619
619
  ? [...parentKeys, group.allKeys.join("+")]
620
620
  : [...parentKeys, group.key]).filter((item) => item);
@@ -60,9 +60,9 @@ const GroupedGrid = ({ groupedData, rowOpened, startIndex, endIndex, alternateRo
60
60
  width: widthMode === "auto"
61
61
  ? "auto"
62
62
  : (column === null || column === void 0 ? void 0 : column.width)
63
- ? column === null || column === void 0 ? void 0 : column.width
63
+ ? `calc(${column === null || column === void 0 ? void 0 : column.width} + 25px)`
64
64
  : columnWidths[`column-${columnKey}`]
65
- ? columnWidths[`column-${columnKey}`]
65
+ ? `calc(${columnWidths[`column-${columnKey}`]} + 25px)`
66
66
  : "fit-content",
67
67
  flex: widthMode === "auto" ? 1 : undefined,
68
68
  flexGrow: widthMode === "auto" ? 1 : 0,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@megha-ui/react",
3
- "version": "1.2.626",
3
+ "version": "1.2.627",
4
4
  "description": "A collection of reusable UI components for React applications, built with TypeScript.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",