@adaptabletools/adaptable 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 +1 -1
- package/src/agGrid/AdaptableAgGrid.js +2 -2
- package/src/env.js +2 -2
- package/tsconfig.esm.tsbuildinfo +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adaptabletools/adaptable",
|
|
3
|
-
"version": "20.0.7-canary.
|
|
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",
|
|
@@ -619,7 +619,7 @@ You need to define at least one Layout!`);
|
|
|
619
619
|
this.logger.warn(`defaultColDef.headerValueGetter and overrides the Adaptable custom header mechanism! We recommend using a ColumnOptions.tableColumnHeader instead!`);
|
|
620
620
|
return original_defaultColDef;
|
|
621
621
|
}
|
|
622
|
-
const defaultColDef = original_defaultColDef
|
|
622
|
+
const defaultColDef = { ...original_defaultColDef };
|
|
623
623
|
defaultColDef.headerValueGetter = tagProvidedByAdaptable((params) => {
|
|
624
624
|
return this.api.columnApi.internalApi.getColumnHeaderName(params);
|
|
625
625
|
});
|
|
@@ -633,7 +633,7 @@ You need to define at least one Layout!`);
|
|
|
633
633
|
this.logger.warn(`defaultColGroupDef.headerValueGetter and overrides the Adaptable custom header mechanism! We recommend using a ColumnOptions.tableColumnHeader instead!`);
|
|
634
634
|
return original_defaultColGroupDef;
|
|
635
635
|
}
|
|
636
|
-
const defaultColGroupDef = original_defaultColGroupDef
|
|
636
|
+
const defaultColGroupDef = { ...original_defaultColGroupDef };
|
|
637
637
|
defaultColGroupDef.headerValueGetter = tagProvidedByAdaptable((params) => {
|
|
638
638
|
return this.api.columnApi.internalApi.getColumnHeaderName(params);
|
|
639
639
|
});
|
package/src/env.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
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" || '',
|
|
3
|
-
PUBLISH_TIMESTAMP:
|
|
4
|
-
VERSION: "20.0.7-canary.
|
|
3
|
+
PUBLISH_TIMESTAMP: 1745430358199 || Date.now(),
|
|
4
|
+
VERSION: "20.0.7-canary.1" || '--current-version--',
|
|
5
5
|
};
|