@openfin/core 34.78.77 → 34.78.78

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.
@@ -3844,6 +3844,10 @@ declare type ConstWindowOptions = {
3844
3844
  * _Platform Windows Only_. Controls behavior for showing views when they are being resized by the user.
3845
3845
  */
3846
3846
  viewVisibility?: ViewVisibilityOptions;
3847
+ /**
3848
+ * 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."
3849
+ */
3850
+ inheritance?: Partial<InheritableOptions>;
3847
3851
  };
3848
3852
 
3849
3853
  declare interface Container extends EventEmitter_2 {
@@ -6834,6 +6838,13 @@ declare type InfoForIntentOptions<MetadataType = IntentMetadata_3> = {
6834
6838
  metadata?: MetadataType;
6835
6839
  };
6836
6840
 
6841
+ declare type InheritableOptions = {
6842
+ customContext: boolean;
6843
+ customData: boolean;
6844
+ icon: boolean;
6845
+ preloadScripts: boolean;
6846
+ };
6847
+
6837
6848
  /**
6838
6849
  * Generated when an application has initialized.
6839
6850
  * @interface
@@ -10193,6 +10204,7 @@ declare namespace OpenFin_2 {
10193
10204
  WindowState,
10194
10205
  AutoplayPolicyOptions,
10195
10206
  ConstWindowOptions,
10207
+ InheritableOptions,
10196
10208
  MutableWindowOptions,
10197
10209
  WorkspacePlatformOptions,
10198
10210
  WebRequestHeader,
@@ -3844,6 +3844,10 @@ declare type ConstWindowOptions = {
3844
3844
  * _Platform Windows Only_. Controls behavior for showing views when they are being resized by the user.
3845
3845
  */
3846
3846
  viewVisibility?: ViewVisibilityOptions;
3847
+ /**
3848
+ * 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."
3849
+ */
3850
+ inheritance?: Partial<InheritableOptions>;
3847
3851
  };
3848
3852
 
3849
3853
  declare interface Container extends EventEmitter_2 {
@@ -6834,6 +6838,13 @@ declare type InfoForIntentOptions<MetadataType = IntentMetadata_3> = {
6834
6838
  metadata?: MetadataType;
6835
6839
  };
6836
6840
 
6841
+ declare type InheritableOptions = {
6842
+ customContext: boolean;
6843
+ customData: boolean;
6844
+ icon: boolean;
6845
+ preloadScripts: boolean;
6846
+ };
6847
+
6837
6848
  /**
6838
6849
  * Generated when an application has initialized.
6839
6850
  * @interface
@@ -10193,6 +10204,7 @@ declare namespace OpenFin_2 {
10193
10204
  WindowState,
10194
10205
  AutoplayPolicyOptions,
10195
10206
  ConstWindowOptions,
10207
+ InheritableOptions,
10196
10208
  MutableWindowOptions,
10197
10209
  WorkspacePlatformOptions,
10198
10210
  WebRequestHeader,
@@ -3844,6 +3844,10 @@ declare type ConstWindowOptions = {
3844
3844
  * _Platform Windows Only_. Controls behavior for showing views when they are being resized by the user.
3845
3845
  */
3846
3846
  viewVisibility?: ViewVisibilityOptions;
3847
+ /**
3848
+ * 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."
3849
+ */
3850
+ inheritance?: Partial<InheritableOptions>;
3847
3851
  };
3848
3852
 
3849
3853
  declare interface Container extends EventEmitter_2 {
@@ -6834,6 +6838,13 @@ declare type InfoForIntentOptions<MetadataType = IntentMetadata_3> = {
6834
6838
  metadata?: MetadataType;
6835
6839
  };
6836
6840
 
6841
+ declare type InheritableOptions = {
6842
+ customContext: boolean;
6843
+ customData: boolean;
6844
+ icon: boolean;
6845
+ preloadScripts: boolean;
6846
+ };
6847
+
6837
6848
  /**
6838
6849
  * Generated when an application has initialized.
6839
6850
  * @interface
@@ -10193,6 +10204,7 @@ declare namespace OpenFin_2 {
10193
10204
  WindowState,
10194
10205
  AutoplayPolicyOptions,
10195
10206
  ConstWindowOptions,
10207
+ InheritableOptions,
10196
10208
  MutableWindowOptions,
10197
10209
  WorkspacePlatformOptions,
10198
10210
  WebRequestHeader,
package/out/mock.d.ts CHANGED
@@ -3887,6 +3887,10 @@ declare type ConstWindowOptions = {
3887
3887
  * _Platform Windows Only_. Controls behavior for showing views when they are being resized by the user.
3888
3888
  */
3889
3889
  viewVisibility?: ViewVisibilityOptions;
3890
+ /**
3891
+ * 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."
3892
+ */
3893
+ inheritance?: Partial<InheritableOptions>;
3890
3894
  };
3891
3895
 
3892
3896
  declare interface Container extends EventEmitter_2 {
@@ -6912,6 +6916,13 @@ declare type InfoForIntentOptions<MetadataType = IntentMetadata_3> = {
6912
6916
  metadata?: MetadataType;
6913
6917
  };
6914
6918
 
6919
+ declare type InheritableOptions = {
6920
+ customContext: boolean;
6921
+ customData: boolean;
6922
+ icon: boolean;
6923
+ preloadScripts: boolean;
6924
+ };
6925
+
6915
6926
  /**
6916
6927
  * Generated when an application has initialized.
6917
6928
  * @interface
@@ -10492,6 +10503,7 @@ declare namespace OpenFin_2 {
10492
10503
  WindowState,
10493
10504
  AutoplayPolicyOptions,
10494
10505
  ConstWindowOptions,
10506
+ InheritableOptions,
10495
10507
  MutableWindowOptions,
10496
10508
  WorkspacePlatformOptions,
10497
10509
  WebRequestHeader,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/core",
3
- "version": "34.78.77",
3
+ "version": "34.78.78",
4
4
  "description": "The core renderer entry point of OpenFin",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "main": "out/mock.js",