@adaptabletools/adaptable-plugin-openfin 18.0.8 → 18.0.9
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/README.md +14 -21
- package/package.json +2 -2
- package/src/Utilities/Services/OpenFinService.js +3 -1
package/README.md
CHANGED
|
@@ -1,32 +1,21 @@
|
|
|
1
|
-
# AdapTable
|
|
1
|
+
# AdapTable OpenFin Plugin
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
The OpenFin Plugin is intended for use when AdapTable is instantiated inside the [OpenFin](https://www.openfin.co/) container.
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
const adaptableOptions: AdaptableOptions = {
|
|
7
|
-
adaptableId: 'openfindemo1',
|
|
8
|
-
plugins: [
|
|
9
|
-
openfin()
|
|
10
|
-
]
|
|
11
|
-
// ... other options
|
|
12
|
-
}
|
|
13
|
-
```
|
|
5
|
+
This plugin allows users to take advantage of some additional functionality courtesy of OpenFin:
|
|
14
6
|
|
|
15
|
-
|
|
7
|
+
- AdapTable’s Alerts can appear as OpenFin Notifications (together with actionable buttons)
|
|
8
|
+
- ‘Live Excel’ - data exported to Excel updates in the spreadsheet in real time as source data in AdapTable ticks
|
|
16
9
|
|
|
17
|
-
|
|
10
|
+
|
|
11
|
+
## Documentation & Demos
|
|
12
|
+
|
|
13
|
+
Full details of how to install, configure and use the OpenFin plugin can be found at [AdapTable OpenFin Documentation](https://docs.adaptabletools.com/guide/integrations-openfin)
|
|
18
14
|
|
|
19
|
-
```json
|
|
20
|
-
"services": [
|
|
21
|
-
{ "name": "excel",
|
|
22
|
-
"manifestUrl": "http://openfin.github.io/excel-api-example/provider/app.json"
|
|
23
|
-
}
|
|
24
|
-
]
|
|
25
|
-
```
|
|
26
15
|
|
|
27
16
|
## Help
|
|
28
17
|
|
|
29
|
-
Developers can learn how to access AdapTable programmatically at [AdapTable Documentation](https://docs.adaptabletools.com)
|
|
18
|
+
Developers can learn how to access AdapTable programmatically at [AdapTable Documentation](https://docs.adaptabletools.com).
|
|
30
19
|
|
|
31
20
|
## Other AdapTable Resources
|
|
32
21
|
|
|
@@ -35,3 +24,7 @@ General information about Adaptable Tools is available at our [Website](http://w
|
|
|
35
24
|
## Support
|
|
36
25
|
|
|
37
26
|
For all support enquiries please email [`support@adaptabletools.com`](mailto:support@adaptabletools.com) or [raise a Support Ticket](https://adaptabletools.zendesk.com/hc/en-us/requests/new).
|
|
27
|
+
|
|
28
|
+
## Licences
|
|
29
|
+
|
|
30
|
+
Information on AdapTable Licences can be found at [Licensing AdapTable for AG Grid](https://docs.adaptabletools.com/guide/licensing).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adaptabletools/adaptable-plugin-openfin",
|
|
3
|
-
"version": "18.0.
|
|
3
|
+
"version": "18.0.9",
|
|
4
4
|
"description": "",
|
|
5
5
|
"homepage": "http://www.adaptabletools.com/",
|
|
6
6
|
"author": {
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"redux": "4.0.5",
|
|
19
19
|
"styled-components": "^4.4.1",
|
|
20
20
|
"tslib": "^2.3.0",
|
|
21
|
-
"@adaptabletools/adaptable": "18.0.
|
|
21
|
+
"@adaptabletools/adaptable": "18.0.9"
|
|
22
22
|
},
|
|
23
23
|
"type": "module",
|
|
24
24
|
"module": "src/index.js"
|
|
@@ -2,7 +2,9 @@ import Emitter from '@adaptabletools/adaptable/src/Utilities/Emitter';
|
|
|
2
2
|
import { setup } from './setup';
|
|
3
3
|
import { isRunningInOpenfin } from '../isRunningInOpenfin';
|
|
4
4
|
if (isRunningInOpenfin()) {
|
|
5
|
-
|
|
5
|
+
// Commenting this out as its causing build issues
|
|
6
|
+
// Need to decide what to do about Excel - old implementation is deprecated and replaced with this: https://developers.openfin.co/of-docs/docs/excel-integration
|
|
7
|
+
// require('../../excel-service/index.js');
|
|
6
8
|
}
|
|
7
9
|
export function isExcelOpenfinLoaded() {
|
|
8
10
|
return isRunningInOpenfin() && 'Excel' in fin.desktop;
|