@adaptabletools/adaptable-plugin-ipushpull 13.1.1 → 14.0.0-canary.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 +2 -2
- package/src/Module/PushPullModule.js +1 -1
- package/src/env.d.ts +4 -0
- package/src/env.js +6 -0
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adaptabletools/adaptable-plugin-ipushpull",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "14.0.0-canary.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"homepage": "http://www.adaptabletools.com/",
|
|
6
6
|
"author": {
|
|
@@ -19,6 +19,6 @@
|
|
|
19
19
|
"redux": "4.0.5",
|
|
20
20
|
"styled-components": "^4.4.1",
|
|
21
21
|
"tslib": "^2.3.0",
|
|
22
|
-
"@adaptabletools/adaptable": "
|
|
22
|
+
"@adaptabletools/adaptable": "14.0.0-canary.2"
|
|
23
23
|
}
|
|
24
24
|
}
|
|
@@ -31,7 +31,7 @@ class PushPullModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
|
31
31
|
if (currentLiveIPushPullReport &&
|
|
32
32
|
currentLiveIPushPullReport.ReportName !== GeneralConstants_1.SELECTED_CELLS_REPORT &&
|
|
33
33
|
currentLiveIPushPullReport.ReportName !== GeneralConstants_1.SELECTED_ROWS_REPORT &&
|
|
34
|
-
exportApi.isDataChangeInReport(cellDataChangedInfo, this.getCurrentReport())) {
|
|
34
|
+
exportApi.internalApi.isDataChangeInReport(cellDataChangedInfo, this.getCurrentReport())) {
|
|
35
35
|
this.throttledRecomputeAndSendLiveDataEvent();
|
|
36
36
|
}
|
|
37
37
|
}
|
package/src/env.d.ts
ADDED
package/src/env.js
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.default = {
|
|
4
|
+
IPUSHPULL_API_KEY: "CbBaMaoqHVifScrYwKssGnGyNkv5xHOhQVGm3cYP",
|
|
5
|
+
IPUSHPULL_API_SECRET: "xYzE51kuHyyt9kQCvMe0tz0H2sDSjyEQcF5SOBlPQmcL9em0NqcCzyqLYj5fhpuZxQ8BiVcYl6zoOHeI6GYZj1TkUiiLVFoW3HUxiCdEUjlPS8Vl2YHUMEPD5qkLYnGj",
|
|
6
|
+
};
|
package/src/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
4
|
const types_1 = require("@adaptabletools/adaptable/types");
|
|
5
|
-
const env_1 = tslib_1.__importDefault(require("
|
|
5
|
+
const env_1 = tslib_1.__importDefault(require("./env"));
|
|
6
6
|
const package_json_1 = require("../package.json");
|
|
7
7
|
const version_1 = tslib_1.__importDefault(require("@adaptabletools/adaptable/version"));
|
|
8
8
|
const ModuleConstants = tslib_1.__importStar(require("@adaptabletools/adaptable/src/Utilities/Constants/ModuleConstants"));
|