@adaptabletools/adaptable-plugin-nocode-aggrid-cjs 22.0.2 → 22.0.3

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-plugin-nocode-aggrid-cjs",
3
- "version": "22.0.2",
3
+ "version": "22.0.3",
4
4
  "description": "",
5
5
  "homepage": "http://www.adaptabletools.com/",
6
6
  "author": {
package/src/index.d.ts CHANGED
@@ -19,5 +19,6 @@ declare class NoCodePlugin extends AdaptablePlugin {
19
19
  constructor(options?: NoCodePluginOptions);
20
20
  beforeInit(adaptableOptions: AdaptableOptions, agGridOptions: AgGridConfig): Promise<unknown>;
21
21
  }
22
- declare const _default: (options?: NoCodePluginOptions) => NoCodePlugin;
23
- export default _default;
22
+ export type { NoCodePluginOptions };
23
+ export declare const nocodePlugin: (options?: NoCodePluginOptions) => NoCodePlugin;
24
+ export default nocodePlugin;
package/src/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.readExcelFile = exports.readJSONFile = void 0;
3
+ exports.nocodePlugin = exports.readExcelFile = exports.readJSONFile = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const xlsx_1 = require("xlsx");
6
6
  const types_1 = require("@adaptabletools/adaptable-cjs/types");
@@ -127,4 +127,6 @@ class NoCodePlugin extends types_1.AdaptablePlugin {
127
127
  });
128
128
  }
129
129
  }
130
- exports.default = (options) => new NoCodePlugin(options);
130
+ const nocodePlugin = (options) => new NoCodePlugin(options);
131
+ exports.nocodePlugin = nocodePlugin;
132
+ exports.default = exports.nocodePlugin;