@adaptabletools/adaptable-cjs 21.1.0 → 21.1.1

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adaptabletools/adaptable-cjs",
3
- "version": "21.1.0",
3
+ "version": "21.1.1",
4
4
  "description": "Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements",
5
5
  "keywords": [
6
6
  "web-components",
@@ -112,7 +112,7 @@ class AgGridExportAdapter {
112
112
  };
113
113
  }
114
114
  catch (error) {
115
- this.logger.consoleError(`Error exporting ${report.Name} in ${format} format to ${config.destination}`, error.message);
115
+ this.logger.consoleError(`Error exporting ${report.Name} in ${format} format to ${config.destination}`, error.stack);
116
116
  }
117
117
  finally {
118
118
  /**
@@ -417,9 +417,9 @@ class AgGridExportAdapter {
417
417
  }
418
418
  const getColIdAndRawValue = () => {
419
419
  if (this.adaptableApi.columnApi.isAutoRowGroupColumn(agColumn?.getColId())) {
420
- const columnId = rowNode.field ??
421
- rowNode.rowGroupColumn?.getColId() ??
422
- rowNode.rowGroupColumn?.getColDef()?.field;
420
+ const columnId = rowNode.rowGroupColumn?.getColId() ??
421
+ rowNode.rowGroupColumn?.getColDef()?.field ??
422
+ rowNode.field;
423
423
  let rawValue = rowNode.key;
424
424
  return { columnId, rawValue };
425
425
  }
package/src/env.js CHANGED
@@ -2,6 +2,6 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.default = {
4
4
  NEXT_PUBLIC_INFINITE_TABLE_LICENSE_KEY: "StartDate=2021-06-29|EndDate=2030-01-01|Owner=Adaptable|Type=distribution|TS=1624971462479|C=137829811,1004007071,2756196225,1839832928,3994409405,636616862" || '',
5
- PUBLISH_TIMESTAMP: 1763997644941 || Date.now(),
6
- VERSION: "21.1.0" || '--current-version--',
5
+ PUBLISH_TIMESTAMP: 1764248918368 || Date.now(),
6
+ VERSION: "21.1.1" || '--current-version--',
7
7
  };