@adaptabletools/adaptable-plugin-openfin 10.0.4-canary.1 → 10.0.4-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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adaptabletools/adaptable-plugin-openfin",
|
|
3
|
-
"version": "10.0.4-canary.
|
|
3
|
+
"version": "10.0.4-canary.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"dependencies": {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"rebass": "^3.2.2",
|
|
14
14
|
"redux": "4.0.5",
|
|
15
15
|
"styled-components": "^4.4.1",
|
|
16
|
-
"@adaptabletools/adaptable": "10.0.4-canary.
|
|
16
|
+
"@adaptabletools/adaptable": "10.0.4-canary.2"
|
|
17
17
|
},
|
|
18
18
|
"author": {
|
|
19
19
|
"name": "Jonny Wolfson",
|
|
@@ -33,7 +33,7 @@ class OpenFinModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
35
|
getOpenFinApi() {
|
|
36
|
-
return this.api.pluginsApi.
|
|
36
|
+
return this.api.pluginsApi.getOpenFinPluginApi();
|
|
37
37
|
}
|
|
38
38
|
getOpenFinService() {
|
|
39
39
|
if (!this.openFinService) {
|
|
@@ -113,7 +113,7 @@ class OpenFinService {
|
|
|
113
113
|
this.emitter = new Emitter_1.default();
|
|
114
114
|
}
|
|
115
115
|
getOpenFinApi() {
|
|
116
|
-
return this.adaptable.api.pluginsApi.
|
|
116
|
+
return this.adaptable.api.pluginsApi.getOpenFinPluginApi();
|
|
117
117
|
}
|
|
118
118
|
getCurrentWorkbook(skipRetry) {
|
|
119
119
|
if (!this.workbookName) {
|
|
@@ -36,7 +36,7 @@ class OpenFinViewPanelComponent extends React.Component {
|
|
|
36
36
|
this.props.api.eventApi.off('LiveDataChanged', this.onLiveDataChanged);
|
|
37
37
|
}
|
|
38
38
|
getOpenFinApi() {
|
|
39
|
-
return this.props.api.pluginsApi.
|
|
39
|
+
return this.props.api.pluginsApi.getOpenFinPluginApi();
|
|
40
40
|
}
|
|
41
41
|
render() {
|
|
42
42
|
let allReports = this.props.api.exportApi
|