@adaptabletools/adaptable 18.1.10 → 18.1.12-canary.0

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.1.10",
3
+ "version": "18.1.12-canary.0",
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",
@@ -39,13 +39,13 @@ export class AgGridAdapter {
39
39
  * to handle this edge case, we try to extract the AG GridApi from the invocation arguments
40
40
  */
41
41
  grabAgGridApiOnTheFly(args) {
42
- var _a, _b;
43
42
  if (this.DANGER_USE_GETTER_gridApi) {
44
43
  return;
45
44
  }
46
45
  if (Array.isArray(args) &&
47
- typeof ((_a = args[0]) === null || _a === void 0 ? void 0 : _a.api) === 'object' &&
48
- ((_b = args[0]) === null || _b === void 0 ? void 0 : _b.api) instanceof GridApi) {
46
+ args[0] &&
47
+ typeof args[0].api === 'object' &&
48
+ args[0].api instanceof GridApi) {
49
49
  this.DANGER_gridApi_from_args = args[0].api;
50
50
  }
51
51
  }
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: 1721302170891 || Date.now(),
4
- VERSION: "18.1.10" || '--current-version--',
3
+ PUBLISH_TIMESTAMP: 1721711329974 || Date.now(),
4
+ VERSION: "18.1.12-canary.0" || '--current-version--',
5
5
  };