@adaptabletools/adaptable-cjs 20.0.7-canary.0 → 20.0.7-canary.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": "20.0.7-canary.0",
3
+ "version": "20.0.7-canary.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",
@@ -623,7 +623,7 @@ You need to define at least one Layout!`);
623
623
  this.logger.warn(`defaultColDef.headerValueGetter and overrides the Adaptable custom header mechanism! We recommend using a ColumnOptions.tableColumnHeader instead!`);
624
624
  return original_defaultColDef;
625
625
  }
626
- const defaultColDef = original_defaultColDef ?? {};
626
+ const defaultColDef = { ...original_defaultColDef };
627
627
  defaultColDef.headerValueGetter = (0, adaptableOverrideCheck_1.tagProvidedByAdaptable)((params) => {
628
628
  return this.api.columnApi.internalApi.getColumnHeaderName(params);
629
629
  });
@@ -637,7 +637,7 @@ You need to define at least one Layout!`);
637
637
  this.logger.warn(`defaultColGroupDef.headerValueGetter and overrides the Adaptable custom header mechanism! We recommend using a ColumnOptions.tableColumnHeader instead!`);
638
638
  return original_defaultColGroupDef;
639
639
  }
640
- const defaultColGroupDef = original_defaultColGroupDef ?? {};
640
+ const defaultColGroupDef = { ...original_defaultColGroupDef };
641
641
  defaultColGroupDef.headerValueGetter = (0, adaptableOverrideCheck_1.tagProvidedByAdaptable)((params) => {
642
642
  return this.api.columnApi.internalApi.getColumnHeaderName(params);
643
643
  });
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: 1745347683994 || Date.now(),
6
- VERSION: "20.0.7-canary.0" || '--current-version--',
5
+ PUBLISH_TIMESTAMP: 1745430388589 || Date.now(),
6
+ VERSION: "20.0.7-canary.1" || '--current-version--',
7
7
  };