@adaptabletools/adaptable-plugin-ipushpull 22.0.0-canary.9 → 22.0.1-canary.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",
|
|
3
|
-
"version": "22.0.
|
|
3
|
+
"version": "22.0.1-canary.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"homepage": "http://www.adaptabletools.com/",
|
|
6
6
|
"author": {
|
|
@@ -10,8 +10,6 @@
|
|
|
10
10
|
"typings": "src/index.d.ts",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"ipushpull-js": "^2.25.0",
|
|
13
|
-
"lodash": "^4.17.15",
|
|
14
|
-
"prop-types": "^15.6.2",
|
|
15
13
|
"react": "^18.0.0 || ^19.0.0",
|
|
16
14
|
"react-redux": "^9.2.0",
|
|
17
15
|
"redux": "^5.0.1",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AdaptableModuleBase } from '@adaptabletools/adaptable/src/Strategy/AdaptableModuleBase';
|
|
2
2
|
import * as ModuleConstants from '@adaptabletools/adaptable/src/Utilities/Constants/ModuleConstants';
|
|
3
|
-
import throttle from '
|
|
3
|
+
import throttle from '@adaptabletools/adaptable/src/Utilities/utils/throttle';
|
|
4
4
|
import { DEFAULT_LIVE_REPORT_THROTTLE_TIME, SELECTED_DATA_REPORT, } from '@adaptabletools/adaptable/src/Utilities/Constants/GeneralConstants';
|
|
5
5
|
const EQUAL_DATA_ERR = 'equal data, so not sending';
|
|
6
6
|
export class PushPullModule extends AdaptableModuleBase {
|