@openfin/core 36.79.19 → 36.80.1
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/mock-alpha.d.ts +26 -3
- package/out/mock-beta.d.ts +26 -3
- package/out/mock-public.d.ts +26 -3
- package/out/mock.d.ts +26 -3
- package/out/mock.js +5 -3
- package/package.json +1 -1
package/out/mock-alpha.d.ts
CHANGED
@@ -966,7 +966,7 @@ declare type ApplicationIdentity_2 = {
|
|
966
966
|
* @interface
|
967
967
|
*/
|
968
968
|
declare type ApplicationInfo = {
|
969
|
-
initialOptions: ApplicationCreationOptions;
|
969
|
+
initialOptions: ApplicationCreationOptions | PlatformOptions;
|
970
970
|
launchMode: string;
|
971
971
|
manifest: Manifest & {
|
972
972
|
[key: string]: any;
|
@@ -3839,6 +3839,10 @@ declare type ConstWindowOptions = {
|
|
3839
3839
|
* _Platform Windows Only_. Controls behavior for showing views when they are being resized by the user.
|
3840
3840
|
*/
|
3841
3841
|
viewVisibility?: ViewVisibilityOptions;
|
3842
|
+
/**
|
3843
|
+
* Controls whether an option is inherited from the parent application. The option is set as part of the window options for the parent application in either the {@link Manifest.startup_app} or {@link Manifest.platform} properties in the manifest or in {@link ApplicationOptions.mainWindowOptions} when calling {@link Application.ApplicationModule.start Application.start}. Use { [option]: false } to disable a specific [option]. All inheritable properties will be inherited by default if omitted.
|
3844
|
+
*/
|
3845
|
+
inheritance?: Partial<InheritableOptions>;
|
3842
3846
|
};
|
3843
3847
|
|
3844
3848
|
declare interface Container extends EventEmitter_2 {
|
@@ -5893,6 +5897,8 @@ declare class _Frame extends EmitterBase<OpenFin_2.FrameEvent> {
|
|
5893
5897
|
* Returns a frame info object representing the window that the referenced iframe is
|
5894
5898
|
* currently embedded in.
|
5895
5899
|
*
|
5900
|
+
* @remarks If the frame is embedded in a view, this will return an invalid stub with empty fields.
|
5901
|
+
*
|
5896
5902
|
* @example
|
5897
5903
|
* ```js
|
5898
5904
|
* async function getParentWindow() {
|
@@ -6738,6 +6744,13 @@ declare type InfoForIntentOptions<MetadataType = IntentMetadata_3> = {
|
|
6738
6744
|
metadata?: MetadataType;
|
6739
6745
|
};
|
6740
6746
|
|
6747
|
+
declare type InheritableOptions = {
|
6748
|
+
customContext: boolean;
|
6749
|
+
customData: boolean;
|
6750
|
+
icon: boolean;
|
6751
|
+
preloadScripts: boolean;
|
6752
|
+
};
|
6753
|
+
|
6741
6754
|
/**
|
6742
6755
|
* Generated when an application has initialized.
|
6743
6756
|
* @interface
|
@@ -8339,6 +8352,7 @@ declare type LaunchExternalProcessRule = {
|
|
8339
8352
|
*/
|
8340
8353
|
declare type LaunchIntoPlatformPayload = {
|
8341
8354
|
manifest: any;
|
8355
|
+
manifestUrl?: string;
|
8342
8356
|
};
|
8343
8357
|
|
8344
8358
|
/**
|
@@ -9969,6 +9983,7 @@ declare namespace OpenFin_2 {
|
|
9969
9983
|
WindowState,
|
9970
9984
|
AutoplayPolicyOptions,
|
9971
9985
|
ConstWindowOptions,
|
9986
|
+
InheritableOptions,
|
9972
9987
|
MutableWindowOptions,
|
9973
9988
|
WorkspacePlatformOptions,
|
9974
9989
|
WebRequestHeader,
|
@@ -11205,6 +11220,14 @@ declare type PlatformOptions = ApplicationCreationOptions & {
|
|
11205
11220
|
* The provider url.
|
11206
11221
|
*/
|
11207
11222
|
providerUrl?: string;
|
11223
|
+
/**
|
11224
|
+
* @defaultValue true
|
11225
|
+
*
|
11226
|
+
* Controls whether it is allowed to launch content manifests into the Platform. If omitted, defaults to `true`.
|
11227
|
+
*
|
11228
|
+
* NOTE: Starting in v38, the default value will change to `false` and content launching must be explicitly opted into.
|
11229
|
+
*/
|
11230
|
+
allowLaunchIntoPlatform?: boolean;
|
11208
11231
|
};
|
11209
11232
|
|
11210
11233
|
/**
|
@@ -11964,7 +11987,7 @@ declare type PreloadScriptInfoRunning = {
|
|
11964
11987
|
* @interface
|
11965
11988
|
*/
|
11966
11989
|
declare type PreloadScriptsStateChangedEvent = PreloadScriptsStateChangeEvent & {
|
11967
|
-
type: 'preload-
|
11990
|
+
type: 'preload-scripts-state-changed';
|
11968
11991
|
};
|
11969
11992
|
|
11970
11993
|
/**
|
@@ -11981,7 +12004,7 @@ declare type PreloadScriptsStateChangeEvent = BaseEvent_5 & {
|
|
11981
12004
|
* @interface
|
11982
12005
|
*/
|
11983
12006
|
declare type PreloadScriptsStateChangingEvent = PreloadScriptsStateChangeEvent & {
|
11984
|
-
type: 'preload-
|
12007
|
+
type: 'preload-scripts-state-changing';
|
11985
12008
|
};
|
11986
12009
|
|
11987
12010
|
declare type PresetLayoutOptions = OpenFin_2.PresetLayoutOptions;
|
package/out/mock-beta.d.ts
CHANGED
@@ -966,7 +966,7 @@ declare type ApplicationIdentity_2 = {
|
|
966
966
|
* @interface
|
967
967
|
*/
|
968
968
|
declare type ApplicationInfo = {
|
969
|
-
initialOptions: ApplicationCreationOptions;
|
969
|
+
initialOptions: ApplicationCreationOptions | PlatformOptions;
|
970
970
|
launchMode: string;
|
971
971
|
manifest: Manifest & {
|
972
972
|
[key: string]: any;
|
@@ -3839,6 +3839,10 @@ declare type ConstWindowOptions = {
|
|
3839
3839
|
* _Platform Windows Only_. Controls behavior for showing views when they are being resized by the user.
|
3840
3840
|
*/
|
3841
3841
|
viewVisibility?: ViewVisibilityOptions;
|
3842
|
+
/**
|
3843
|
+
* Controls whether an option is inherited from the parent application. The option is set as part of the window options for the parent application in either the {@link Manifest.startup_app} or {@link Manifest.platform} properties in the manifest or in {@link ApplicationOptions.mainWindowOptions} when calling {@link Application.ApplicationModule.start Application.start}. Use { [option]: false } to disable a specific [option]. All inheritable properties will be inherited by default if omitted.
|
3844
|
+
*/
|
3845
|
+
inheritance?: Partial<InheritableOptions>;
|
3842
3846
|
};
|
3843
3847
|
|
3844
3848
|
declare interface Container extends EventEmitter_2 {
|
@@ -5893,6 +5897,8 @@ declare class _Frame extends EmitterBase<OpenFin_2.FrameEvent> {
|
|
5893
5897
|
* Returns a frame info object representing the window that the referenced iframe is
|
5894
5898
|
* currently embedded in.
|
5895
5899
|
*
|
5900
|
+
* @remarks If the frame is embedded in a view, this will return an invalid stub with empty fields.
|
5901
|
+
*
|
5896
5902
|
* @example
|
5897
5903
|
* ```js
|
5898
5904
|
* async function getParentWindow() {
|
@@ -6738,6 +6744,13 @@ declare type InfoForIntentOptions<MetadataType = IntentMetadata_3> = {
|
|
6738
6744
|
metadata?: MetadataType;
|
6739
6745
|
};
|
6740
6746
|
|
6747
|
+
declare type InheritableOptions = {
|
6748
|
+
customContext: boolean;
|
6749
|
+
customData: boolean;
|
6750
|
+
icon: boolean;
|
6751
|
+
preloadScripts: boolean;
|
6752
|
+
};
|
6753
|
+
|
6741
6754
|
/**
|
6742
6755
|
* Generated when an application has initialized.
|
6743
6756
|
* @interface
|
@@ -8339,6 +8352,7 @@ declare type LaunchExternalProcessRule = {
|
|
8339
8352
|
*/
|
8340
8353
|
declare type LaunchIntoPlatformPayload = {
|
8341
8354
|
manifest: any;
|
8355
|
+
manifestUrl?: string;
|
8342
8356
|
};
|
8343
8357
|
|
8344
8358
|
/**
|
@@ -9969,6 +9983,7 @@ declare namespace OpenFin_2 {
|
|
9969
9983
|
WindowState,
|
9970
9984
|
AutoplayPolicyOptions,
|
9971
9985
|
ConstWindowOptions,
|
9986
|
+
InheritableOptions,
|
9972
9987
|
MutableWindowOptions,
|
9973
9988
|
WorkspacePlatformOptions,
|
9974
9989
|
WebRequestHeader,
|
@@ -11205,6 +11220,14 @@ declare type PlatformOptions = ApplicationCreationOptions & {
|
|
11205
11220
|
* The provider url.
|
11206
11221
|
*/
|
11207
11222
|
providerUrl?: string;
|
11223
|
+
/**
|
11224
|
+
* @defaultValue true
|
11225
|
+
*
|
11226
|
+
* Controls whether it is allowed to launch content manifests into the Platform. If omitted, defaults to `true`.
|
11227
|
+
*
|
11228
|
+
* NOTE: Starting in v38, the default value will change to `false` and content launching must be explicitly opted into.
|
11229
|
+
*/
|
11230
|
+
allowLaunchIntoPlatform?: boolean;
|
11208
11231
|
};
|
11209
11232
|
|
11210
11233
|
/**
|
@@ -11964,7 +11987,7 @@ declare type PreloadScriptInfoRunning = {
|
|
11964
11987
|
* @interface
|
11965
11988
|
*/
|
11966
11989
|
declare type PreloadScriptsStateChangedEvent = PreloadScriptsStateChangeEvent & {
|
11967
|
-
type: 'preload-
|
11990
|
+
type: 'preload-scripts-state-changed';
|
11968
11991
|
};
|
11969
11992
|
|
11970
11993
|
/**
|
@@ -11981,7 +12004,7 @@ declare type PreloadScriptsStateChangeEvent = BaseEvent_5 & {
|
|
11981
12004
|
* @interface
|
11982
12005
|
*/
|
11983
12006
|
declare type PreloadScriptsStateChangingEvent = PreloadScriptsStateChangeEvent & {
|
11984
|
-
type: 'preload-
|
12007
|
+
type: 'preload-scripts-state-changing';
|
11985
12008
|
};
|
11986
12009
|
|
11987
12010
|
declare type PresetLayoutOptions = OpenFin_2.PresetLayoutOptions;
|
package/out/mock-public.d.ts
CHANGED
@@ -966,7 +966,7 @@ declare type ApplicationIdentity_2 = {
|
|
966
966
|
* @interface
|
967
967
|
*/
|
968
968
|
declare type ApplicationInfo = {
|
969
|
-
initialOptions: ApplicationCreationOptions;
|
969
|
+
initialOptions: ApplicationCreationOptions | PlatformOptions;
|
970
970
|
launchMode: string;
|
971
971
|
manifest: Manifest & {
|
972
972
|
[key: string]: any;
|
@@ -3839,6 +3839,10 @@ declare type ConstWindowOptions = {
|
|
3839
3839
|
* _Platform Windows Only_. Controls behavior for showing views when they are being resized by the user.
|
3840
3840
|
*/
|
3841
3841
|
viewVisibility?: ViewVisibilityOptions;
|
3842
|
+
/**
|
3843
|
+
* Controls whether an option is inherited from the parent application. The option is set as part of the window options for the parent application in either the {@link Manifest.startup_app} or {@link Manifest.platform} properties in the manifest or in {@link ApplicationOptions.mainWindowOptions} when calling {@link Application.ApplicationModule.start Application.start}. Use { [option]: false } to disable a specific [option]. All inheritable properties will be inherited by default if omitted.
|
3844
|
+
*/
|
3845
|
+
inheritance?: Partial<InheritableOptions>;
|
3842
3846
|
};
|
3843
3847
|
|
3844
3848
|
declare interface Container extends EventEmitter_2 {
|
@@ -5893,6 +5897,8 @@ declare class _Frame extends EmitterBase<OpenFin_2.FrameEvent> {
|
|
5893
5897
|
* Returns a frame info object representing the window that the referenced iframe is
|
5894
5898
|
* currently embedded in.
|
5895
5899
|
*
|
5900
|
+
* @remarks If the frame is embedded in a view, this will return an invalid stub with empty fields.
|
5901
|
+
*
|
5896
5902
|
* @example
|
5897
5903
|
* ```js
|
5898
5904
|
* async function getParentWindow() {
|
@@ -6738,6 +6744,13 @@ declare type InfoForIntentOptions<MetadataType = IntentMetadata_3> = {
|
|
6738
6744
|
metadata?: MetadataType;
|
6739
6745
|
};
|
6740
6746
|
|
6747
|
+
declare type InheritableOptions = {
|
6748
|
+
customContext: boolean;
|
6749
|
+
customData: boolean;
|
6750
|
+
icon: boolean;
|
6751
|
+
preloadScripts: boolean;
|
6752
|
+
};
|
6753
|
+
|
6741
6754
|
/**
|
6742
6755
|
* Generated when an application has initialized.
|
6743
6756
|
* @interface
|
@@ -8339,6 +8352,7 @@ declare type LaunchExternalProcessRule = {
|
|
8339
8352
|
*/
|
8340
8353
|
declare type LaunchIntoPlatformPayload = {
|
8341
8354
|
manifest: any;
|
8355
|
+
manifestUrl?: string;
|
8342
8356
|
};
|
8343
8357
|
|
8344
8358
|
/**
|
@@ -9969,6 +9983,7 @@ declare namespace OpenFin_2 {
|
|
9969
9983
|
WindowState,
|
9970
9984
|
AutoplayPolicyOptions,
|
9971
9985
|
ConstWindowOptions,
|
9986
|
+
InheritableOptions,
|
9972
9987
|
MutableWindowOptions,
|
9973
9988
|
WorkspacePlatformOptions,
|
9974
9989
|
WebRequestHeader,
|
@@ -11205,6 +11220,14 @@ declare type PlatformOptions = ApplicationCreationOptions & {
|
|
11205
11220
|
* The provider url.
|
11206
11221
|
*/
|
11207
11222
|
providerUrl?: string;
|
11223
|
+
/**
|
11224
|
+
* @defaultValue true
|
11225
|
+
*
|
11226
|
+
* Controls whether it is allowed to launch content manifests into the Platform. If omitted, defaults to `true`.
|
11227
|
+
*
|
11228
|
+
* NOTE: Starting in v38, the default value will change to `false` and content launching must be explicitly opted into.
|
11229
|
+
*/
|
11230
|
+
allowLaunchIntoPlatform?: boolean;
|
11208
11231
|
};
|
11209
11232
|
|
11210
11233
|
/**
|
@@ -11964,7 +11987,7 @@ declare type PreloadScriptInfoRunning = {
|
|
11964
11987
|
* @interface
|
11965
11988
|
*/
|
11966
11989
|
declare type PreloadScriptsStateChangedEvent = PreloadScriptsStateChangeEvent & {
|
11967
|
-
type: 'preload-
|
11990
|
+
type: 'preload-scripts-state-changed';
|
11968
11991
|
};
|
11969
11992
|
|
11970
11993
|
/**
|
@@ -11981,7 +12004,7 @@ declare type PreloadScriptsStateChangeEvent = BaseEvent_5 & {
|
|
11981
12004
|
* @interface
|
11982
12005
|
*/
|
11983
12006
|
declare type PreloadScriptsStateChangingEvent = PreloadScriptsStateChangeEvent & {
|
11984
|
-
type: 'preload-
|
12007
|
+
type: 'preload-scripts-state-changing';
|
11985
12008
|
};
|
11986
12009
|
|
11987
12010
|
declare type PresetLayoutOptions = OpenFin_2.PresetLayoutOptions;
|
package/out/mock.d.ts
CHANGED
@@ -972,7 +972,7 @@ declare type ApplicationIdentity_2 = {
|
|
972
972
|
* @interface
|
973
973
|
*/
|
974
974
|
declare type ApplicationInfo = {
|
975
|
-
initialOptions: ApplicationCreationOptions;
|
975
|
+
initialOptions: ApplicationCreationOptions | PlatformOptions;
|
976
976
|
launchMode: string;
|
977
977
|
manifest: Manifest & {
|
978
978
|
[key: string]: any;
|
@@ -3894,6 +3894,10 @@ declare type ConstWindowOptions = {
|
|
3894
3894
|
* _Platform Windows Only_. Controls behavior for showing views when they are being resized by the user.
|
3895
3895
|
*/
|
3896
3896
|
viewVisibility?: ViewVisibilityOptions;
|
3897
|
+
/**
|
3898
|
+
* Controls whether an option is inherited from the parent application. The option is set as part of the window options for the parent application in either the {@link Manifest.startup_app} or {@link Manifest.platform} properties in the manifest or in {@link ApplicationOptions.mainWindowOptions} when calling {@link Application.ApplicationModule.start Application.start}. Use { [option]: false } to disable a specific [option]. All inheritable properties will be inherited by default if omitted.
|
3899
|
+
*/
|
3900
|
+
inheritance?: Partial<InheritableOptions>;
|
3897
3901
|
};
|
3898
3902
|
|
3899
3903
|
declare interface Container extends EventEmitter_2 {
|
@@ -5977,6 +5981,8 @@ declare class _Frame extends EmitterBase<OpenFin_2.FrameEvent> {
|
|
5977
5981
|
* Returns a frame info object representing the window that the referenced iframe is
|
5978
5982
|
* currently embedded in.
|
5979
5983
|
*
|
5984
|
+
* @remarks If the frame is embedded in a view, this will return an invalid stub with empty fields.
|
5985
|
+
*
|
5980
5986
|
* @example
|
5981
5987
|
* ```js
|
5982
5988
|
* async function getParentWindow() {
|
@@ -6828,6 +6834,13 @@ declare type InfoForIntentOptions<MetadataType = IntentMetadata_3> = {
|
|
6828
6834
|
metadata?: MetadataType;
|
6829
6835
|
};
|
6830
6836
|
|
6837
|
+
declare type InheritableOptions = {
|
6838
|
+
customContext: boolean;
|
6839
|
+
customData: boolean;
|
6840
|
+
icon: boolean;
|
6841
|
+
preloadScripts: boolean;
|
6842
|
+
};
|
6843
|
+
|
6831
6844
|
/**
|
6832
6845
|
* Generated when an application has initialized.
|
6833
6846
|
* @interface
|
@@ -8452,6 +8465,7 @@ declare type LaunchExternalProcessRule = {
|
|
8452
8465
|
*/
|
8453
8466
|
declare type LaunchIntoPlatformPayload = {
|
8454
8467
|
manifest: any;
|
8468
|
+
manifestUrl?: string;
|
8455
8469
|
};
|
8456
8470
|
|
8457
8471
|
/**
|
@@ -10280,6 +10294,7 @@ declare namespace OpenFin_2 {
|
|
10280
10294
|
WindowState,
|
10281
10295
|
AutoplayPolicyOptions,
|
10282
10296
|
ConstWindowOptions,
|
10297
|
+
InheritableOptions,
|
10283
10298
|
MutableWindowOptions,
|
10284
10299
|
WorkspacePlatformOptions,
|
10285
10300
|
WebRequestHeader,
|
@@ -11549,6 +11564,14 @@ declare type PlatformOptions = ApplicationCreationOptions & {
|
|
11549
11564
|
* The provider url.
|
11550
11565
|
*/
|
11551
11566
|
providerUrl?: string;
|
11567
|
+
/**
|
11568
|
+
* @defaultValue true
|
11569
|
+
*
|
11570
|
+
* Controls whether it is allowed to launch content manifests into the Platform. If omitted, defaults to `true`.
|
11571
|
+
*
|
11572
|
+
* NOTE: Starting in v38, the default value will change to `false` and content launching must be explicitly opted into.
|
11573
|
+
*/
|
11574
|
+
allowLaunchIntoPlatform?: boolean;
|
11552
11575
|
};
|
11553
11576
|
|
11554
11577
|
/**
|
@@ -12353,7 +12376,7 @@ declare type PreloadScriptInfoRunning = {
|
|
12353
12376
|
* @interface
|
12354
12377
|
*/
|
12355
12378
|
declare type PreloadScriptsStateChangedEvent = PreloadScriptsStateChangeEvent & {
|
12356
|
-
type: 'preload-
|
12379
|
+
type: 'preload-scripts-state-changed';
|
12357
12380
|
};
|
12358
12381
|
|
12359
12382
|
/**
|
@@ -12370,7 +12393,7 @@ declare type PreloadScriptsStateChangeEvent = BaseEvent_5 & {
|
|
12370
12393
|
* @interface
|
12371
12394
|
*/
|
12372
12395
|
declare type PreloadScriptsStateChangingEvent = PreloadScriptsStateChangeEvent & {
|
12373
|
-
type: 'preload-
|
12396
|
+
type: 'preload-scripts-state-changing';
|
12374
12397
|
};
|
12375
12398
|
|
12376
12399
|
declare type PresetLayoutOptions = OpenFin_2.PresetLayoutOptions;
|
package/out/mock.js
CHANGED
@@ -10451,6 +10451,8 @@ class _Frame extends base_1$a.EmitterBase {
|
|
10451
10451
|
* Returns a frame info object representing the window that the referenced iframe is
|
10452
10452
|
* currently embedded in.
|
10453
10453
|
*
|
10454
|
+
* @remarks If the frame is embedded in a view, this will return an invalid stub with empty fields.
|
10455
|
+
*
|
10454
10456
|
* @example
|
10455
10457
|
* ```js
|
10456
10458
|
* async function getParentWindow() {
|
@@ -11379,12 +11381,12 @@ class Platform extends base_1$7.EmitterBase {
|
|
11379
11381
|
* @experimental
|
11380
11382
|
*/
|
11381
11383
|
async launchContentManifest(manifestUrl) {
|
11382
|
-
this.wire.sendAction('platform-launch-content-manifest', this.identity).catch((
|
11384
|
+
this.wire.sendAction('platform-launch-content-manifest', this.identity).catch(() => {
|
11383
11385
|
// don't expose
|
11384
11386
|
});
|
11385
11387
|
const client = await this.getClient();
|
11386
11388
|
const manifest = await this.fetchManifest(manifestUrl);
|
11387
|
-
client.dispatch('launch-into-platform', { manifest });
|
11389
|
+
client.dispatch('launch-into-platform', { manifest, manifestUrl });
|
11388
11390
|
return this;
|
11389
11391
|
}
|
11390
11392
|
/**
|
@@ -12049,7 +12051,7 @@ class LayoutModule extends base_1$5.Base {
|
|
12049
12051
|
return this.wrapSync(this.fin.me.identity);
|
12050
12052
|
};
|
12051
12053
|
_LayoutModule_getLayoutManagerSpy.set(this, (layoutIdentity, layoutManager) => {
|
12052
|
-
const msg = '[Layout] You are using a deprecated property `layoutManager` - it will
|
12054
|
+
const msg = '[Layout] You are using a deprecated property `layoutManager` - it will throw if you access it starting in v37.';
|
12053
12055
|
const managerProxy = new Proxy(layoutManager, {
|
12054
12056
|
get(target, key) {
|
12055
12057
|
console.warn(`[Layout-mgr-proxy] accessing ${key.toString()}`);
|