@openfin/remote-adapter 37.81.19 → 37.81.21
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/out/remote-adapter-alpha.d.ts +123 -1074
- package/out/remote-adapter-beta.d.ts +123 -1074
- package/out/remote-adapter-public.d.ts +123 -1074
- package/out/remote-adapter.d.ts +123 -1074
- package/out/remote-adapter.js +1 -4
- package/package.json +1 -1
package/out/remote-adapter.js
CHANGED
|
@@ -1817,9 +1817,7 @@ function requireInteropClient () {
|
|
|
1817
1817
|
* ```
|
|
1818
1818
|
*
|
|
1819
1819
|
*
|
|
1820
|
-
*
|
|
1821
|
-
* this, please make sure you add your context handlers at the top level of your application, on a page that
|
|
1822
|
-
* does not navigate/reload/re-render, to avoid memory leaks. This feature is experimental:
|
|
1820
|
+
* Passing in a context type as the second parameter will cause the handler to only be invoked with that context type.
|
|
1823
1821
|
*
|
|
1824
1822
|
* ```js
|
|
1825
1823
|
* function handleInstrumentContext(contextInfo) {
|
|
@@ -1848,7 +1846,6 @@ function requireInteropClient () {
|
|
|
1848
1846
|
let handlerId;
|
|
1849
1847
|
if (contextType) {
|
|
1850
1848
|
handlerId = `invokeContextHandler-${contextType}-${(0, utils_1.generateId)()}`;
|
|
1851
|
-
console.warn(`Warning: By providing a contextType (${contextType}), you are using the experimental addContextHandler. To avoid issues, make sure you are adding your context handlers at the top level in your application.`);
|
|
1852
1849
|
}
|
|
1853
1850
|
else {
|
|
1854
1851
|
handlerId = 'invokeContextHandler';
|