@openfin/core 43.100.110 → 43.101.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 +12 -0
- package/out/mock-beta.d.ts +12 -0
- package/out/mock-public.d.ts +12 -0
- package/out/stub.d.ts +12 -0
- package/package.json +1 -1
package/out/mock-alpha.d.ts
CHANGED
|
@@ -3675,6 +3675,12 @@ declare type ConstViewOptions = {
|
|
|
3675
3675
|
* Control which options to ignore when creating a Platform View.
|
|
3676
3676
|
*/
|
|
3677
3677
|
excludeOptions: ExcludeOptions;
|
|
3678
|
+
/**
|
|
3679
|
+
* Determines whether window.open calls from web contents should use the specified target name as provided, or automatically generate a unique name.
|
|
3680
|
+
* When true, each call generates a new unique target name, ensuring a new window is always created.
|
|
3681
|
+
* When false, the target name passed to window.open is respected.
|
|
3682
|
+
*/
|
|
3683
|
+
ignoreChildFrameName?: boolean;
|
|
3678
3684
|
};
|
|
3679
3685
|
|
|
3680
3686
|
/**
|
|
@@ -3942,6 +3948,12 @@ declare type ConstWindowOptions = {
|
|
|
3942
3948
|
* Controls whether frameless window should have rounded corners. Default is false for Windows and true for MacOS. Setting this property to false will prevent the window from being fullscreenable on macOS. On Windows versions older than Windows 11 Build 22000 this property has no effect, and frameless windows will not have rounded corners.
|
|
3943
3949
|
*/
|
|
3944
3950
|
roundedCorners: boolean;
|
|
3951
|
+
/**
|
|
3952
|
+
* Determines whether window.open calls from web contents should use the specified target name as provided, or automatically generate a unique name.
|
|
3953
|
+
* When true, each call generates a new unique target name, ensuring a new window is always created.
|
|
3954
|
+
* When false, the target name passed to window.open is respected.
|
|
3955
|
+
*/
|
|
3956
|
+
ignoreChildFrameName?: boolean;
|
|
3945
3957
|
/**
|
|
3946
3958
|
* Configuration for download bubble UI.
|
|
3947
3959
|
*/
|
package/out/mock-beta.d.ts
CHANGED
|
@@ -3675,6 +3675,12 @@ declare type ConstViewOptions = {
|
|
|
3675
3675
|
* Control which options to ignore when creating a Platform View.
|
|
3676
3676
|
*/
|
|
3677
3677
|
excludeOptions: ExcludeOptions;
|
|
3678
|
+
/**
|
|
3679
|
+
* Determines whether window.open calls from web contents should use the specified target name as provided, or automatically generate a unique name.
|
|
3680
|
+
* When true, each call generates a new unique target name, ensuring a new window is always created.
|
|
3681
|
+
* When false, the target name passed to window.open is respected.
|
|
3682
|
+
*/
|
|
3683
|
+
ignoreChildFrameName?: boolean;
|
|
3678
3684
|
};
|
|
3679
3685
|
|
|
3680
3686
|
/**
|
|
@@ -3942,6 +3948,12 @@ declare type ConstWindowOptions = {
|
|
|
3942
3948
|
* Controls whether frameless window should have rounded corners. Default is false for Windows and true for MacOS. Setting this property to false will prevent the window from being fullscreenable on macOS. On Windows versions older than Windows 11 Build 22000 this property has no effect, and frameless windows will not have rounded corners.
|
|
3943
3949
|
*/
|
|
3944
3950
|
roundedCorners: boolean;
|
|
3951
|
+
/**
|
|
3952
|
+
* Determines whether window.open calls from web contents should use the specified target name as provided, or automatically generate a unique name.
|
|
3953
|
+
* When true, each call generates a new unique target name, ensuring a new window is always created.
|
|
3954
|
+
* When false, the target name passed to window.open is respected.
|
|
3955
|
+
*/
|
|
3956
|
+
ignoreChildFrameName?: boolean;
|
|
3945
3957
|
/**
|
|
3946
3958
|
* Configuration for download bubble UI.
|
|
3947
3959
|
*/
|
package/out/mock-public.d.ts
CHANGED
|
@@ -3675,6 +3675,12 @@ declare type ConstViewOptions = {
|
|
|
3675
3675
|
* Control which options to ignore when creating a Platform View.
|
|
3676
3676
|
*/
|
|
3677
3677
|
excludeOptions: ExcludeOptions;
|
|
3678
|
+
/**
|
|
3679
|
+
* Determines whether window.open calls from web contents should use the specified target name as provided, or automatically generate a unique name.
|
|
3680
|
+
* When true, each call generates a new unique target name, ensuring a new window is always created.
|
|
3681
|
+
* When false, the target name passed to window.open is respected.
|
|
3682
|
+
*/
|
|
3683
|
+
ignoreChildFrameName?: boolean;
|
|
3678
3684
|
};
|
|
3679
3685
|
|
|
3680
3686
|
/**
|
|
@@ -3942,6 +3948,12 @@ declare type ConstWindowOptions = {
|
|
|
3942
3948
|
* Controls whether frameless window should have rounded corners. Default is false for Windows and true for MacOS. Setting this property to false will prevent the window from being fullscreenable on macOS. On Windows versions older than Windows 11 Build 22000 this property has no effect, and frameless windows will not have rounded corners.
|
|
3943
3949
|
*/
|
|
3944
3950
|
roundedCorners: boolean;
|
|
3951
|
+
/**
|
|
3952
|
+
* Determines whether window.open calls from web contents should use the specified target name as provided, or automatically generate a unique name.
|
|
3953
|
+
* When true, each call generates a new unique target name, ensuring a new window is always created.
|
|
3954
|
+
* When false, the target name passed to window.open is respected.
|
|
3955
|
+
*/
|
|
3956
|
+
ignoreChildFrameName?: boolean;
|
|
3945
3957
|
/**
|
|
3946
3958
|
* Configuration for download bubble UI.
|
|
3947
3959
|
*/
|
package/out/stub.d.ts
CHANGED
|
@@ -3734,6 +3734,12 @@ declare type ConstViewOptions = {
|
|
|
3734
3734
|
* Control which options to ignore when creating a Platform View.
|
|
3735
3735
|
*/
|
|
3736
3736
|
excludeOptions: ExcludeOptions;
|
|
3737
|
+
/**
|
|
3738
|
+
* Determines whether window.open calls from web contents should use the specified target name as provided, or automatically generate a unique name.
|
|
3739
|
+
* When true, each call generates a new unique target name, ensuring a new window is always created.
|
|
3740
|
+
* When false, the target name passed to window.open is respected.
|
|
3741
|
+
*/
|
|
3742
|
+
ignoreChildFrameName?: boolean;
|
|
3737
3743
|
};
|
|
3738
3744
|
|
|
3739
3745
|
/**
|
|
@@ -4001,6 +4007,12 @@ declare type ConstWindowOptions = {
|
|
|
4001
4007
|
* Controls whether frameless window should have rounded corners. Default is false for Windows and true for MacOS. Setting this property to false will prevent the window from being fullscreenable on macOS. On Windows versions older than Windows 11 Build 22000 this property has no effect, and frameless windows will not have rounded corners.
|
|
4002
4008
|
*/
|
|
4003
4009
|
roundedCorners: boolean;
|
|
4010
|
+
/**
|
|
4011
|
+
* Determines whether window.open calls from web contents should use the specified target name as provided, or automatically generate a unique name.
|
|
4012
|
+
* When true, each call generates a new unique target name, ensuring a new window is always created.
|
|
4013
|
+
* When false, the target name passed to window.open is respected.
|
|
4014
|
+
*/
|
|
4015
|
+
ignoreChildFrameName?: boolean;
|
|
4004
4016
|
/**
|
|
4005
4017
|
* Configuration for download bubble UI.
|
|
4006
4018
|
*/
|