@megha-ui/react 1.2.716 → 1.2.717
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.
|
@@ -174,6 +174,7 @@ const SummariseDetails = ({ columns, rowIndex, groupBy, sortable, cellStyle, col
|
|
|
174
174
|
const columnKey = groupedData
|
|
175
175
|
? `${groupedData}-${column.key}`
|
|
176
176
|
: column.key;
|
|
177
|
+
console.log("Rendering column:", columnKey, column);
|
|
177
178
|
if (!column.hidden) {
|
|
178
179
|
return (_jsxs("div", { className: `${sortable && column.sortable ? "sortable" : ""} ${column.showMenu ? "menu-true" : "menu-false"} ${`column-${column.key}`} ${columnKey}-${(_a = summariseDetails[columnKey]) === null || _a === void 0 ? void 0 : _a.type}`, style: Object.assign(Object.assign({}, cellStyle), { position: "relative", padding: "0.5rem", textAlign: "left", whiteSpace: "nowrap", textOverflow: "ellipsis", width: columnWidths[`column-${column.key}`]
|
|
179
180
|
? columnWidths[`column-${column.key}`]
|
package/package.json
CHANGED