@openfin/remote-adapter 37.80.18 → 37.80.20
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.
|
@@ -3863,6 +3863,10 @@ declare type ConstWindowOptions = {
|
|
|
3863
3863
|
* _Platform Windows Only_. Controls behavior for showing views when they are being resized by the user.
|
|
3864
3864
|
*/
|
|
3865
3865
|
viewVisibility?: ViewVisibilityOptions;
|
|
3866
|
+
/**
|
|
3867
|
+
* Controls whether an option is inherited from the parent application. Use { <option>: false } to disable a specific <option>. All inheritable properties will be inherited by default if omitted."
|
|
3868
|
+
*/
|
|
3869
|
+
inheritance?: Partial<InheritableOptions>;
|
|
3866
3870
|
};
|
|
3867
3871
|
|
|
3868
3872
|
declare interface Container extends EventEmitter_2 {
|
|
@@ -6760,6 +6764,13 @@ declare type InfoForIntentOptions<MetadataType = IntentMetadata_3> = {
|
|
|
6760
6764
|
metadata?: MetadataType;
|
|
6761
6765
|
};
|
|
6762
6766
|
|
|
6767
|
+
declare type InheritableOptions = {
|
|
6768
|
+
customContext: boolean;
|
|
6769
|
+
customData: boolean;
|
|
6770
|
+
icon: boolean;
|
|
6771
|
+
preloadScripts: boolean;
|
|
6772
|
+
};
|
|
6773
|
+
|
|
6763
6774
|
/**
|
|
6764
6775
|
* Initialize a remote connection as a "host" application.
|
|
6765
6776
|
* @param {InitOptions} options init options
|
|
@@ -10012,6 +10023,7 @@ declare namespace OpenFin {
|
|
|
10012
10023
|
WindowState,
|
|
10013
10024
|
AutoplayPolicyOptions,
|
|
10014
10025
|
ConstWindowOptions,
|
|
10026
|
+
InheritableOptions,
|
|
10015
10027
|
MutableWindowOptions,
|
|
10016
10028
|
WorkspacePlatformOptions,
|
|
10017
10029
|
WebRequestHeader,
|
|
@@ -3863,6 +3863,10 @@ declare type ConstWindowOptions = {
|
|
|
3863
3863
|
* _Platform Windows Only_. Controls behavior for showing views when they are being resized by the user.
|
|
3864
3864
|
*/
|
|
3865
3865
|
viewVisibility?: ViewVisibilityOptions;
|
|
3866
|
+
/**
|
|
3867
|
+
* Controls whether an option is inherited from the parent application. Use { <option>: false } to disable a specific <option>. All inheritable properties will be inherited by default if omitted."
|
|
3868
|
+
*/
|
|
3869
|
+
inheritance?: Partial<InheritableOptions>;
|
|
3866
3870
|
};
|
|
3867
3871
|
|
|
3868
3872
|
declare interface Container extends EventEmitter_2 {
|
|
@@ -6760,6 +6764,13 @@ declare type InfoForIntentOptions<MetadataType = IntentMetadata_3> = {
|
|
|
6760
6764
|
metadata?: MetadataType;
|
|
6761
6765
|
};
|
|
6762
6766
|
|
|
6767
|
+
declare type InheritableOptions = {
|
|
6768
|
+
customContext: boolean;
|
|
6769
|
+
customData: boolean;
|
|
6770
|
+
icon: boolean;
|
|
6771
|
+
preloadScripts: boolean;
|
|
6772
|
+
};
|
|
6773
|
+
|
|
6763
6774
|
/**
|
|
6764
6775
|
* Initialize a remote connection as a "host" application.
|
|
6765
6776
|
* @param {InitOptions} options init options
|
|
@@ -10012,6 +10023,7 @@ declare namespace OpenFin {
|
|
|
10012
10023
|
WindowState,
|
|
10013
10024
|
AutoplayPolicyOptions,
|
|
10014
10025
|
ConstWindowOptions,
|
|
10026
|
+
InheritableOptions,
|
|
10015
10027
|
MutableWindowOptions,
|
|
10016
10028
|
WorkspacePlatformOptions,
|
|
10017
10029
|
WebRequestHeader,
|
|
@@ -3863,6 +3863,10 @@ declare type ConstWindowOptions = {
|
|
|
3863
3863
|
* _Platform Windows Only_. Controls behavior for showing views when they are being resized by the user.
|
|
3864
3864
|
*/
|
|
3865
3865
|
viewVisibility?: ViewVisibilityOptions;
|
|
3866
|
+
/**
|
|
3867
|
+
* Controls whether an option is inherited from the parent application. Use { <option>: false } to disable a specific <option>. All inheritable properties will be inherited by default if omitted."
|
|
3868
|
+
*/
|
|
3869
|
+
inheritance?: Partial<InheritableOptions>;
|
|
3866
3870
|
};
|
|
3867
3871
|
|
|
3868
3872
|
declare interface Container extends EventEmitter_2 {
|
|
@@ -6760,6 +6764,13 @@ declare type InfoForIntentOptions<MetadataType = IntentMetadata_3> = {
|
|
|
6760
6764
|
metadata?: MetadataType;
|
|
6761
6765
|
};
|
|
6762
6766
|
|
|
6767
|
+
declare type InheritableOptions = {
|
|
6768
|
+
customContext: boolean;
|
|
6769
|
+
customData: boolean;
|
|
6770
|
+
icon: boolean;
|
|
6771
|
+
preloadScripts: boolean;
|
|
6772
|
+
};
|
|
6773
|
+
|
|
6763
6774
|
/**
|
|
6764
6775
|
* Initialize a remote connection as a "host" application.
|
|
6765
6776
|
* @param {InitOptions} options init options
|
|
@@ -10012,6 +10023,7 @@ declare namespace OpenFin {
|
|
|
10012
10023
|
WindowState,
|
|
10013
10024
|
AutoplayPolicyOptions,
|
|
10014
10025
|
ConstWindowOptions,
|
|
10026
|
+
InheritableOptions,
|
|
10015
10027
|
MutableWindowOptions,
|
|
10016
10028
|
WorkspacePlatformOptions,
|
|
10017
10029
|
WebRequestHeader,
|
package/out/remote-adapter.d.ts
CHANGED
|
@@ -3918,6 +3918,10 @@ declare type ConstWindowOptions = {
|
|
|
3918
3918
|
* _Platform Windows Only_. Controls behavior for showing views when they are being resized by the user.
|
|
3919
3919
|
*/
|
|
3920
3920
|
viewVisibility?: ViewVisibilityOptions;
|
|
3921
|
+
/**
|
|
3922
|
+
* Controls whether an option is inherited from the parent application. Use { <option>: false } to disable a specific <option>. All inheritable properties will be inherited by default if omitted."
|
|
3923
|
+
*/
|
|
3924
|
+
inheritance?: Partial<InheritableOptions>;
|
|
3921
3925
|
};
|
|
3922
3926
|
|
|
3923
3927
|
declare interface Container extends EventEmitter_2 {
|
|
@@ -6850,6 +6854,13 @@ declare type InfoForIntentOptions<MetadataType = IntentMetadata_3> = {
|
|
|
6850
6854
|
metadata?: MetadataType;
|
|
6851
6855
|
};
|
|
6852
6856
|
|
|
6857
|
+
declare type InheritableOptions = {
|
|
6858
|
+
customContext: boolean;
|
|
6859
|
+
customData: boolean;
|
|
6860
|
+
icon: boolean;
|
|
6861
|
+
preloadScripts: boolean;
|
|
6862
|
+
};
|
|
6863
|
+
|
|
6853
6864
|
/**
|
|
6854
6865
|
* Initialize a remote connection as a "host" application.
|
|
6855
6866
|
* @param {InitOptions} options init options
|
|
@@ -10323,6 +10334,7 @@ declare namespace OpenFin {
|
|
|
10323
10334
|
WindowState,
|
|
10324
10335
|
AutoplayPolicyOptions,
|
|
10325
10336
|
ConstWindowOptions,
|
|
10337
|
+
InheritableOptions,
|
|
10326
10338
|
MutableWindowOptions,
|
|
10327
10339
|
WorkspacePlatformOptions,
|
|
10328
10340
|
WebRequestHeader,
|
package/out/remote-adapter.js
CHANGED
|
@@ -15123,8 +15123,7 @@ class LayoutModule extends base_1$3.Base {
|
|
|
15123
15123
|
const managerProxy = new Proxy(layoutManager, {
|
|
15124
15124
|
get(target, key) {
|
|
15125
15125
|
console.warn(`[Layout-mgr-proxy] accessing ${key.toString()}`);
|
|
15126
|
-
|
|
15127
|
-
return target[key];
|
|
15126
|
+
throw new Error(msg);
|
|
15128
15127
|
}
|
|
15129
15128
|
});
|
|
15130
15129
|
const layout = Object.assign(this.wrapSync(layoutIdentity), { layoutManager: managerProxy });
|
|
@@ -15132,7 +15131,7 @@ class LayoutModule extends base_1$3.Base {
|
|
|
15132
15131
|
get(target, key) {
|
|
15133
15132
|
if (key === 'layoutManager') {
|
|
15134
15133
|
console.warn(`[Layout-proxy] accessing ${key.toString()}`);
|
|
15135
|
-
|
|
15134
|
+
throw new Error(msg);
|
|
15136
15135
|
}
|
|
15137
15136
|
return target[key];
|
|
15138
15137
|
}
|