@adaptabletools/adaptable-plugin-ipushpull-cjs 22.0.0-canary.8 → 22.0.0

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-ipushpull-cjs",
3
- "version": "22.0.0-canary.8",
3
+ "version": "22.0.0",
4
4
  "description": "",
5
5
  "homepage": "http://www.adaptabletools.com/",
6
6
  "author": {
@@ -11,8 +11,6 @@
11
11
  "typings": "src/index.d.ts",
12
12
  "dependencies": {
13
13
  "ipushpull-js": "^2.25.0",
14
- "lodash": "^4.17.15",
15
- "prop-types": "^15.6.2",
16
14
  "react": "^18.0.0 || ^19.0.0",
17
15
  "react-redux": "^9.2.0",
18
16
  "redux": "^5.0.1",
@@ -2,7 +2,7 @@ import { AdaptableModuleBase } from "@adaptabletools/adaptable-cjs/src/Strategy/
2
2
  import { IPushPullModule } from './Interface/IPushPullModule';
3
3
  import { IPushPullReport } from "@adaptabletools/adaptable-cjs/src/AdaptableState/IPushPullState";
4
4
  import { IPushPullApi } from "@adaptabletools/adaptable-cjs/src/Api/IPushPullApi";
5
- import { AccessLevel, AdaptableApi } from "@adaptabletools/adaptable-cjs/types";
5
+ import { AccessLevel, AdaptableApi } from "@adaptabletools/adaptable-cjs";
6
6
  export declare class PushPullModule extends AdaptableModuleBase implements IPushPullModule {
7
7
  private isSendingData;
8
8
  private ippService;
@@ -4,7 +4,7 @@ exports.PushPullModule = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const AdaptableModuleBase_1 = require("@adaptabletools/adaptable-cjs/src/Strategy/AdaptableModuleBase");
6
6
  const ModuleConstants = tslib_1.__importStar(require("@adaptabletools/adaptable-cjs/src/Utilities/Constants/ModuleConstants"));
7
- const throttle_1 = tslib_1.__importDefault(require("lodash/throttle"));
7
+ const throttle_1 = tslib_1.__importDefault(require("@adaptabletools/adaptable-cjs/src/Utilities/utils/throttle"));
8
8
  const GeneralConstants_1 = require("@adaptabletools/adaptable-cjs/src/Utilities/Constants/GeneralConstants");
9
9
  const EQUAL_DATA_ERR = 'equal data, so not sending';
10
10
  class PushPullModule extends AdaptableModuleBase_1.AdaptableModuleBase {
package/src/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { AdaptablePlugin } from "@adaptabletools/adaptable-cjs/types";
1
+ import { AdaptablePlugin } from "@adaptabletools/adaptable-cjs";
2
2
  import type { Middleware } from 'redux';
3
3
  import * as Redux from 'redux';
4
4
  import { IPushPullState } from "@adaptabletools/adaptable-cjs/src/AdaptableState/IPushPullState";
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 types_1 = require("@adaptabletools/adaptable-cjs/types");
4
+ const adaptable_1 = require("@adaptabletools/adaptable-cjs");
5
5
  const env_1 = tslib_1.__importDefault(require("./env"));
6
6
  const package_json_1 = tslib_1.__importDefault(require("../package.json"));
7
7
  const package_json_2 = tslib_1.__importDefault(require("@adaptabletools/adaptable-cjs/package.json"));
@@ -49,7 +49,7 @@ const defaultOptions = {
49
49
  throttleTime: 2000,
50
50
  includeSystemReports: true,
51
51
  };
52
- class IPushPullPlugin extends types_1.AdaptablePlugin {
52
+ class IPushPullPlugin extends adaptable_1.AdaptablePlugin {
53
53
  pluginId = 'ipushpull';
54
54
  iPushPullApi;
55
55
  PushPullService;