@genesislcap/foundation-fdc3 14.200.0-FUI-2127.2 → 14.200.0-FUI-2127.3
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
|
|
1
1
|
import { Fdc3SystemChannelListener, SystemChannelListenerConfig } from './fdc3-system-channel-listener';
|
2
2
|
/**
|
3
|
-
* fdc3-listener listen channel config
|
3
|
+
* fdc3-context-listener listen channel config
|
4
4
|
* @alpha
|
5
5
|
* @param channelType - string for the context channel type
|
6
6
|
* @param callback - async function that is called if a message with a matching context is emitted
|
@@ -11,7 +11,7 @@ let Fdc3ContextListener = class Fdc3ContextListener extends Fdc3SystemChannelLis
|
|
11
11
|
this.config = [];
|
12
12
|
}
|
13
13
|
addChannelListeners() {
|
14
|
-
this.config.forEach((c) => this.fdc3.addChannelListener(
|
14
|
+
this.config.forEach((c) => this.fdc3.addChannelListener(c.channelName, c.channelType, (message) => {
|
15
15
|
if (message.type === c.channelType) {
|
16
16
|
c.callback(message);
|
17
17
|
}
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@genesislcap/foundation-fdc3",
|
3
3
|
"description": "Genesis Foundation FDC3",
|
4
|
-
"version": "14.200.0-FUI-2127.
|
4
|
+
"version": "14.200.0-FUI-2127.3",
|
5
5
|
"sideEffects": false,
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
7
7
|
"main": "dist/esm/index.js",
|
@@ -59,23 +59,23 @@
|
|
59
59
|
}
|
60
60
|
},
|
61
61
|
"devDependencies": {
|
62
|
-
"@genesislcap/foundation-testing": "14.200.0-FUI-2127.
|
63
|
-
"@genesislcap/genx": "14.200.0-FUI-2127.
|
64
|
-
"@genesislcap/rollup-builder": "14.200.0-FUI-2127.
|
65
|
-
"@genesislcap/ts-builder": "14.200.0-FUI-2127.
|
66
|
-
"@genesislcap/uvu-playwright-builder": "14.200.0-FUI-2127.
|
67
|
-
"@genesislcap/vite-builder": "14.200.0-FUI-2127.
|
68
|
-
"@genesislcap/webpack-builder": "14.200.0-FUI-2127.
|
62
|
+
"@genesislcap/foundation-testing": "14.200.0-FUI-2127.3",
|
63
|
+
"@genesislcap/genx": "14.200.0-FUI-2127.3",
|
64
|
+
"@genesislcap/rollup-builder": "14.200.0-FUI-2127.3",
|
65
|
+
"@genesislcap/ts-builder": "14.200.0-FUI-2127.3",
|
66
|
+
"@genesislcap/uvu-playwright-builder": "14.200.0-FUI-2127.3",
|
67
|
+
"@genesislcap/vite-builder": "14.200.0-FUI-2127.3",
|
68
|
+
"@genesislcap/webpack-builder": "14.200.0-FUI-2127.3",
|
69
69
|
"rimraf": "^5.0.0",
|
70
70
|
"sinon": "^17.0.1"
|
71
71
|
},
|
72
72
|
"dependencies": {
|
73
73
|
"@finos/fdc3": "^1.2.0",
|
74
|
-
"@genesislcap/foundation-logger": "14.200.0-FUI-2127.
|
75
|
-
"@genesislcap/foundation-notifications": "14.200.0-FUI-2127.
|
76
|
-
"@genesislcap/foundation-ui": "14.200.0-FUI-2127.
|
77
|
-
"@genesislcap/foundation-utils": "14.200.0-FUI-2127.
|
78
|
-
"@genesislcap/web-core": "14.200.0-FUI-2127.
|
74
|
+
"@genesislcap/foundation-logger": "14.200.0-FUI-2127.3",
|
75
|
+
"@genesislcap/foundation-notifications": "14.200.0-FUI-2127.3",
|
76
|
+
"@genesislcap/foundation-ui": "14.200.0-FUI-2127.3",
|
77
|
+
"@genesislcap/foundation-utils": "14.200.0-FUI-2127.3",
|
78
|
+
"@genesislcap/web-core": "14.200.0-FUI-2127.3",
|
79
79
|
"@interopio/desktop": "^6.3.1",
|
80
80
|
"@microsoft/fast-element": "^1.12.0",
|
81
81
|
"@microsoft/fast-foundation": "^2.49.4",
|
@@ -90,5 +90,5 @@
|
|
90
90
|
"publishConfig": {
|
91
91
|
"access": "public"
|
92
92
|
},
|
93
|
-
"gitHead": "
|
93
|
+
"gitHead": "b29e581ae1cc6e2acdaec752de35ddeb6262894d"
|
94
94
|
}
|