@adaptabletools/adaptable-plugin-interopio 22.0.1 → 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 +1 -1
- package/src/index.d.ts +4 -3
- package/src/index.js +3 -2
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AdaptablePlugin } from '@adaptabletools/adaptable';
|
|
1
|
+
import { AdaptablePlugin } from '@adaptabletools/adaptable/types';
|
|
2
2
|
import { IAdaptable } from '@adaptabletools/adaptable/src/AdaptableInterfaces/IAdaptable';
|
|
3
3
|
import { InteropioPluginApiImpl } from './InteropioPluginApiImpl';
|
|
4
4
|
import { InteropioPluginOptions } from '../../../adaptable/src/AdaptableOptions/InteropioPluginOptions';
|
|
@@ -26,5 +26,6 @@ declare class InteropioPlugin extends AdaptablePlugin {
|
|
|
26
26
|
*/
|
|
27
27
|
private integrateAdaptableAlerts;
|
|
28
28
|
}
|
|
29
|
-
|
|
30
|
-
export
|
|
29
|
+
export type { InteropioPluginOptions };
|
|
30
|
+
export declare const interopioPlugin: (options: InteropioPluginOptions, interopioApi: InteropAPI) => InteropioPlugin;
|
|
31
|
+
export default interopioPlugin;
|
package/src/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AdaptablePlugin, } from '@adaptabletools/adaptable';
|
|
1
|
+
import { AdaptablePlugin, } from '@adaptabletools/adaptable/types';
|
|
2
2
|
import packageJson from '../package.json';
|
|
3
3
|
import adaptableCorePackageJson from '@adaptabletools/adaptable/package.json';
|
|
4
4
|
import { InteropioPluginApiImpl } from './InteropioPluginApiImpl';
|
|
@@ -106,4 +106,5 @@ class InteropioPlugin extends AdaptablePlugin {
|
|
|
106
106
|
});
|
|
107
107
|
}
|
|
108
108
|
}
|
|
109
|
-
export
|
|
109
|
+
export const interopioPlugin = (options, interopioApi) => new InteropioPlugin(options, interopioApi);
|
|
110
|
+
export default interopioPlugin;
|