@cellaware/utils 8.1.11 → 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,10 +723,7 @@ 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
- console.log('Pivot Mode: ' + isPivotMode);
727
- console.log(pivotCols);
728
- console.log(valueCols);
729
- if (isPivotMode && pivotCols.length > 0 && valueCols.length > 0) {
726
+ if (isPivotMode && valueCols.length > 0) {
730
727
  const pivotOutput = pivotData(rows, rowGroupCols, pivotCols, valueCols);
731
728
  rows = pivotOutput.rows;
732
729
  rows = sortModel.length > 0 ? sortRows(rows, sortModel) : rows;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cellaware/utils",
3
- "version": "8.1.11",
3
+ "version": "8.1.12",
4
4
  "description": "Cellaware Utilities for Node.js",
5
5
  "author": "Cellaware Technologies",
6
6
  "type": "module",