@adaptabletools/adaptable 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adaptabletools/adaptable",
3
- "version": "18.0.7",
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",
@@ -992,10 +992,9 @@ export class AdaptableAgGrid {
992
992
  * Either initializes the AG Grid instance or delegates it to the framework wrappers (React/Anglar)
993
993
  */
994
994
  async initializeAgGrid(gridOptions, modules, renderAgGridFrameworkComponent) {
995
+ var _a, _b, _c;
995
996
  if (renderAgGridFrameworkComponent) {
996
- console.log('renderAgGridFrameworkComponent');
997
997
  const result = await renderAgGridFrameworkComponent(gridOptions);
998
- console.log('AFTER renderAgGridFrameworkComponent');
999
998
  if (result === false) {
1000
999
  return false;
1001
1000
  }
@@ -1016,7 +1015,7 @@ export class AdaptableAgGrid {
1016
1015
  if (!this.getAgGridContainerElement()) {
1017
1016
  // initialize the agGridContainerElement from the AgGrid instance
1018
1017
  // @ts-ignore
1019
- const gridRoot = agGridApi.ctrlsService.gridBodyCtrl.eGridBody;
1018
+ 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;
1020
1019
  const gridContainer = gridRoot === null || gridRoot === void 0 ? void 0 : gridRoot.closest('[class*="ag-theme"]');
1021
1020
  if (!gridContainer) {
1022
1021
  this.logger.consoleError(`No AG Grid container could be derived from the Adaptable framework wrapper.
package/src/env.js CHANGED
@@ -1,5 +1,5 @@
1
1
  export default {
2
2
  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: 1714580838652 || Date.now(),
4
- VERSION: "18.0.7" || '--current-version--',
3
+ PUBLISH_TIMESTAMP: 1714757350988 || Date.now(),
4
+ VERSION: "18.0.8" || '--current-version--',
5
5
  };