@cellaware/utils 8.11.16 → 8.11.17

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.
@@ -1305,6 +1305,7 @@ export function transformDatagrid(rows, datagridState, locale, condition) {
1305
1305
  }
1306
1306
  }
1307
1307
  });
1308
+ adjRows.push(adjRow);
1308
1309
  chartRows.push(chartRow);
1309
1310
  if (rowIdx < DATAGRID_HTML_ROWS) {
1310
1311
  htmlBuf += buildHtmlRow(htmlRowValues, htmlRowStyles, htmlColumnStyles, DATAGRID_HTML_COLS);
@@ -1334,7 +1335,7 @@ export function transformDatagrid(rows, datagridState, locale, condition) {
1334
1335
  rows = groupAndAggregate(rows, rowGroupCols, [], valueCols);
1335
1336
  }
1336
1337
  rows = sortModel.length > 0 ? sortRows(rows, sortModel) : rows;
1337
- const visibleColumnState = columnState.filter(column => !column.hide);
1338
+ const visibleColumnState = columnState.filter(column => !column.hide || !!column.rowGroup);
1338
1339
  let rowIdx = 0;
1339
1340
  rows.forEach((row) => {
1340
1341
  let adjRow = {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cellaware/utils",
3
- "version": "8.11.16",
3
+ "version": "8.11.17",
4
4
  "description": "Cellaware Utilities for Node.js",
5
5
  "author": "Cellaware Technologies",
6
6
  "type": "module",