@adaptabletools/adaptable-plugin-master-detail-aggrid-cjs 22.0.1 → 22.0.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.
- package/package.json +1 -1
- package/src/index.d.ts +1 -1
- package/src/index.js +2 -2
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AdaptablePlugin, AgGridConfig } from "@adaptabletools/adaptable-cjs";
|
|
1
|
+
import { AdaptablePlugin, AgGridConfig } from "@adaptabletools/adaptable-cjs/types";
|
|
2
2
|
import { AdaptableOptions } from "@adaptabletools/adaptable-cjs/src/AdaptableOptions/AdaptableOptions";
|
|
3
3
|
import { MasterDetailPluginOptions } from "@adaptabletools/adaptable-cjs/src/AdaptableOptions/MasterDetailPluginOptions";
|
|
4
4
|
declare class MasterDetailPlugin extends AdaptablePlugin {
|
package/src/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
|
-
const
|
|
4
|
+
const types_1 = require("@adaptabletools/adaptable-cjs/types");
|
|
5
5
|
const package_json_1 = tslib_1.__importDefault(require("../package.json"));
|
|
6
6
|
const package_json_2 = tslib_1.__importDefault(require("@adaptabletools/adaptable-cjs/package.json"));
|
|
7
7
|
const attachDetailCellRenderer_1 = require("./attachDetailCellRenderer");
|
|
@@ -11,7 +11,7 @@ const suffix = name.endsWith('-cjs') ? '-cjs' : '';
|
|
|
11
11
|
if (version !== coreVersion) {
|
|
12
12
|
console.warn(`Version mismatch: "@adaptabletools/adaptable-plugin-master-detail-aggrid${suffix}" (v${version}) and "@adaptabletools/adaptable${suffix}" (v${coreVersion}) have different versions. They should be the exact same version.`);
|
|
13
13
|
}
|
|
14
|
-
class MasterDetailPlugin extends
|
|
14
|
+
class MasterDetailPlugin extends types_1.AdaptablePlugin {
|
|
15
15
|
pluginOptions;
|
|
16
16
|
pluginId = 'master-detail-aggrid';
|
|
17
17
|
constructor(pluginOptions) {
|