@adaptabletools/adaptable-cjs 18.0.7 → 18.0.8
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 -3
- package/src/env.js +2 -2
- package/tsconfig.cjs.tsbuildinfo +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adaptabletools/adaptable-cjs",
|
|
3
|
-
"version": "18.0.
|
|
3
|
+
"version": "18.0.8",
|
|
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",
|
|
@@ -996,10 +996,9 @@ class AdaptableAgGrid {
|
|
|
996
996
|
* Either initializes the AG Grid instance or delegates it to the framework wrappers (React/Anglar)
|
|
997
997
|
*/
|
|
998
998
|
async initializeAgGrid(gridOptions, modules, renderAgGridFrameworkComponent) {
|
|
999
|
+
var _a, _b, _c;
|
|
999
1000
|
if (renderAgGridFrameworkComponent) {
|
|
1000
|
-
console.log('renderAgGridFrameworkComponent');
|
|
1001
1001
|
const result = await renderAgGridFrameworkComponent(gridOptions);
|
|
1002
|
-
console.log('AFTER renderAgGridFrameworkComponent');
|
|
1003
1002
|
if (result === false) {
|
|
1004
1003
|
return false;
|
|
1005
1004
|
}
|
|
@@ -1020,7 +1019,7 @@ class AdaptableAgGrid {
|
|
|
1020
1019
|
if (!this.getAgGridContainerElement()) {
|
|
1021
1020
|
// initialize the agGridContainerElement from the AgGrid instance
|
|
1022
1021
|
// @ts-ignore
|
|
1023
|
-
const gridRoot = agGridApi.ctrlsService.
|
|
1022
|
+
const gridRoot = (_c = (_b = (_a = agGridApi.ctrlsService) === null || _a === void 0 ? void 0 : _a.getGridBodyCtrl) === null || _b === void 0 ? void 0 : _b.call(_a)) === null || _c === void 0 ? void 0 : _c.eGridBody;
|
|
1024
1023
|
const gridContainer = gridRoot === null || gridRoot === void 0 ? void 0 : gridRoot.closest('[class*="ag-theme"]');
|
|
1025
1024
|
if (!gridContainer) {
|
|
1026
1025
|
this.logger.consoleError(`No AG Grid container could be derived from the Adaptable framework wrapper.
|
package/src/env.js
CHANGED
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.default = {
|
|
4
4
|
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:
|
|
6
|
-
VERSION: "18.0.
|
|
5
|
+
PUBLISH_TIMESTAMP: 1714757380834 || Date.now(),
|
|
6
|
+
VERSION: "18.0.8" || '--current-version--',
|
|
7
7
|
};
|