@adaptabletools/adaptable-plugin-master-detail-aggrid 22.0.3 → 22.0.4

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-master-detail-aggrid",
3
- "version": "22.0.3",
3
+ "version": "22.0.4",
4
4
  "description": "",
5
5
  "homepage": "http://www.adaptabletools.com/",
6
6
  "author": {
package/src/index.d.ts CHANGED
@@ -1,12 +1,12 @@
1
1
  import { AdaptablePlugin, AgGridConfig } from '@adaptabletools/adaptable/types';
2
2
  import { AdaptableOptions } from '@adaptabletools/adaptable/src/AdaptableOptions/AdaptableOptions';
3
- import { MasterDetailPluginOptions } from '@adaptabletools/adaptable/src/AdaptableOptions/MasterDetailPluginOptions';
3
+ import { MasterDetailPluginOptions } from './types';
4
4
  declare class MasterDetailPlugin extends AdaptablePlugin {
5
5
  pluginOptions: MasterDetailPluginOptions;
6
6
  pluginId: string;
7
7
  constructor(pluginOptions?: MasterDetailPluginOptions);
8
8
  beforeInit(adaptableOptions: AdaptableOptions, agGridOptions: AgGridConfig): void;
9
9
  }
10
- export type { MasterDetailPluginOptions };
10
+ export type { MasterDetailPluginOptions } from './types';
11
11
  export declare const masterDetailPlugin: (pluginOptions?: MasterDetailPluginOptions) => MasterDetailPlugin;
12
12
  export default masterDetailPlugin;
package/src/types.d.ts ADDED
@@ -0,0 +1 @@
1
+ export type { MasterDetailPluginOptions } from '@adaptabletools/adaptable/src/AdaptableOptions/MasterDetailPluginOptions';
package/src/types.js ADDED
@@ -0,0 +1 @@
1
+ export {};