@adaptabletools/adaptable-plugin-nocode-aggrid 10.0.4-canary.5 → 11.0.0-canary.2

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.
Files changed (2) hide show
  1. package/package.json +3 -2
  2. package/src/index.js +2 -2
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "@adaptabletools/adaptable-plugin-nocode-aggrid",
3
- "version": "10.0.4-canary.5",
3
+ "version": "11.0.0-canary.2",
4
4
  "description": "",
5
5
  "main": "src/index.js",
6
6
  "dependencies": {
7
7
  "xlsx": "^0.15.5",
8
- "@adaptabletools/adaptable": "10.0.4-canary.5"
8
+ "tslib": "^2.0.0",
9
+ "@adaptabletools/adaptable": "11.0.0-canary.2"
9
10
  },
10
11
  "peerDependencies": {
11
12
  "@ag-grid-community/all-modules": ">=26.2.0"
package/src/index.js CHANGED
@@ -97,9 +97,9 @@ class NoCodePlugin extends types_1.AdaptablePlugin {
97
97
  Object.keys(newAdaptableOptions).forEach((key) => {
98
98
  adaptableOptions[key] = newAdaptableOptions[key];
99
99
  });
100
- adaptableOptions.agGridOptions = gridOptions;
100
+ adaptableOptions.gridOptions = gridOptions;
101
101
  if (this.options.modules) {
102
- adaptableOptions.agGridOptions.modules = this.options.modules;
102
+ adaptableOptions.modules = this.options.modules;
103
103
  }
104
104
  let onInitResult = Promise.resolve(true);
105
105
  if (this.options.onInit) {