@openfin/fdc3-api 40.82.12 → 40.82.14
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/fdc3-api-alpha.d.ts +3 -1
- package/out/fdc3-api-beta.d.ts +3 -1
- package/out/fdc3-api-public.d.ts +3 -1
- package/out/fdc3-api.d.ts +3 -1
- package/out/fdc3-api.js +11 -5
- package/package.json +1 -1
package/out/fdc3-api-alpha.d.ts
CHANGED
|
@@ -3607,7 +3607,9 @@ declare type ConstWindowOptions = {
|
|
|
3607
3607
|
*/
|
|
3608
3608
|
preloadScripts: PreloadScript[];
|
|
3609
3609
|
/**
|
|
3610
|
-
* String tag that attempts to group like-tagged renderers together.
|
|
3610
|
+
* String tag that attempts to group like-tagged renderers together.
|
|
3611
|
+
* However, there is no guarantee that a different affinity value will create a different process, under the hood Chromium can enforce its own process management under certain circumstances.
|
|
3612
|
+
* @remarks Will only be used if pages are on the same origin.
|
|
3611
3613
|
*/
|
|
3612
3614
|
processAffinity: string;
|
|
3613
3615
|
/**
|
package/out/fdc3-api-beta.d.ts
CHANGED
|
@@ -3607,7 +3607,9 @@ declare type ConstWindowOptions = {
|
|
|
3607
3607
|
*/
|
|
3608
3608
|
preloadScripts: PreloadScript[];
|
|
3609
3609
|
/**
|
|
3610
|
-
* String tag that attempts to group like-tagged renderers together.
|
|
3610
|
+
* String tag that attempts to group like-tagged renderers together.
|
|
3611
|
+
* However, there is no guarantee that a different affinity value will create a different process, under the hood Chromium can enforce its own process management under certain circumstances.
|
|
3612
|
+
* @remarks Will only be used if pages are on the same origin.
|
|
3611
3613
|
*/
|
|
3612
3614
|
processAffinity: string;
|
|
3613
3615
|
/**
|
package/out/fdc3-api-public.d.ts
CHANGED
|
@@ -3607,7 +3607,9 @@ declare type ConstWindowOptions = {
|
|
|
3607
3607
|
*/
|
|
3608
3608
|
preloadScripts: PreloadScript[];
|
|
3609
3609
|
/**
|
|
3610
|
-
* String tag that attempts to group like-tagged renderers together.
|
|
3610
|
+
* String tag that attempts to group like-tagged renderers together.
|
|
3611
|
+
* However, there is no guarantee that a different affinity value will create a different process, under the hood Chromium can enforce its own process management under certain circumstances.
|
|
3612
|
+
* @remarks Will only be used if pages are on the same origin.
|
|
3611
3613
|
*/
|
|
3612
3614
|
processAffinity: string;
|
|
3613
3615
|
/**
|
package/out/fdc3-api.d.ts
CHANGED
|
@@ -3666,7 +3666,9 @@ declare type ConstWindowOptions = {
|
|
|
3666
3666
|
*/
|
|
3667
3667
|
preloadScripts: PreloadScript[];
|
|
3668
3668
|
/**
|
|
3669
|
-
* String tag that attempts to group like-tagged renderers together.
|
|
3669
|
+
* String tag that attempts to group like-tagged renderers together.
|
|
3670
|
+
* However, there is no guarantee that a different affinity value will create a different process, under the hood Chromium can enforce its own process management under certain circumstances.
|
|
3671
|
+
* @remarks Will only be used if pages are on the same origin.
|
|
3670
3672
|
*/
|
|
3671
3673
|
processAffinity: string;
|
|
3672
3674
|
/**
|
package/out/fdc3-api.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var require$$2 = require('lodash');
|
|
3
|
+
var require$$2 = require('lodash/isEqual');
|
|
4
4
|
|
|
5
5
|
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|
|
6
6
|
|
|
@@ -191,11 +191,14 @@ class PrivateChannelClient {
|
|
|
191
191
|
PrivateChannelClient$1.PrivateChannelClient = PrivateChannelClient;
|
|
192
192
|
|
|
193
193
|
(function (exports) {
|
|
194
|
+
var __importDefault = (commonjsGlobal && commonjsGlobal.__importDefault) || function (mod) {
|
|
195
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
196
|
+
};
|
|
194
197
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
195
198
|
exports.getIntentResolution = exports.isChannel = exports.isContext = exports.connectPrivateChannel = exports.buildAppChannelObject = exports.buildPrivateChannelObject = exports.ChannelError = exports.ResultError = exports.UnsupportedChannelApiError = exports.getUnsupportedChannelApis = void 0;
|
|
196
199
|
const utils_1 = utils$2;
|
|
197
200
|
const PrivateChannelClient_1 = PrivateChannelClient$1;
|
|
198
|
-
const
|
|
201
|
+
const isEqual_1 = __importDefault(require$$2);
|
|
199
202
|
const getUnsupportedChannelApis = (channelType) => {
|
|
200
203
|
return {
|
|
201
204
|
addContextListener: () => {
|
|
@@ -323,7 +326,7 @@ PrivateChannelClient$1.PrivateChannelClient = PrivateChannelClient;
|
|
|
323
326
|
const wrappedHandler = (context, contextMetadata) => {
|
|
324
327
|
if (first) {
|
|
325
328
|
first = false;
|
|
326
|
-
if ((0,
|
|
329
|
+
if ((0, isEqual_1.default)(currentContext, context)) {
|
|
327
330
|
return;
|
|
328
331
|
}
|
|
329
332
|
}
|
|
@@ -1790,13 +1793,16 @@ function requireFdc3Common () {
|
|
|
1790
1793
|
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
|
1791
1794
|
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
|
1792
1795
|
};
|
|
1796
|
+
var __importDefault = (commonjsGlobal && commonjsGlobal.__importDefault) || function (mod) {
|
|
1797
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
1798
|
+
};
|
|
1793
1799
|
var _FDC3ModuleBase_producer;
|
|
1794
1800
|
Object.defineProperty(fdc3Common, "__esModule", { value: true });
|
|
1795
1801
|
fdc3Common.FDC3ModuleBase = void 0;
|
|
1796
1802
|
const utils_1 = utils$1;
|
|
1797
1803
|
const utils_2 = utils$2;
|
|
1798
1804
|
const InteropClient_1 = requireInteropClient();
|
|
1799
|
-
const
|
|
1805
|
+
const isEqual_1 = __importDefault(require$$2);
|
|
1800
1806
|
class FDC3ModuleBase {
|
|
1801
1807
|
get client() {
|
|
1802
1808
|
return __classPrivateFieldGet(this, _FDC3ModuleBase_producer, "f").call(this);
|
|
@@ -1985,7 +1991,7 @@ function requireFdc3Common () {
|
|
|
1985
1991
|
const wrappedHandler = (context, contextMetadata) => {
|
|
1986
1992
|
if (first) {
|
|
1987
1993
|
first = false;
|
|
1988
|
-
if ((0,
|
|
1994
|
+
if ((0, isEqual_1.default)(currentContext, context)) {
|
|
1989
1995
|
return;
|
|
1990
1996
|
}
|
|
1991
1997
|
}
|