@cellaware/utils 8.1.10 → 8.1.12

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.
@@ -723,11 +723,9 @@ export function transformDatagrid(rows, datagridState, locale, condition) {
723
723
  rows = filterRows(rows, filterModel);
724
724
  const chartRowData = [];
725
725
  // IMPORTANT: we evaluate the datagrid condition AFTER we are done with all transformations.
726
- if (isPivotMode && pivotCols.length > 0 && valueCols.length > 0) {
726
+ if (isPivotMode && valueCols.length > 0) {
727
727
  const pivotOutput = pivotData(rows, rowGroupCols, pivotCols, valueCols);
728
728
  rows = pivotOutput.rows;
729
- console.log('PIVOT MODE');
730
- console.log(rows);
731
729
  rows = sortModel.length > 0 ? sortRows(rows, sortModel) : rows;
732
730
  let mappedDisplayColumnNames = new Map();
733
731
  // Should not need to do hidden/visible column analysis -- pivoting creates new results with only the necessary columns.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cellaware/utils",
3
- "version": "8.1.10",
3
+ "version": "8.1.12",
4
4
  "description": "Cellaware Utilities for Node.js",
5
5
  "author": "Cellaware Technologies",
6
6
  "type": "module",