@openfin/core 41.102.6 → 41.102.7
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 +14 -0
- package/out/mock-beta.d.ts +14 -0
- package/out/mock-public.d.ts +14 -0
- package/out/stub.d.ts +14 -0
- package/package.json +1 -1
package/out/mock-alpha.d.ts
CHANGED
|
@@ -3003,6 +3003,10 @@ declare type ChromiumPolicies = {
|
|
|
3003
3003
|
* Disable AutofillAddressEnabled policy for a Window or View.
|
|
3004
3004
|
*/
|
|
3005
3005
|
AutofillAddressEnabled?: PolicyOptions;
|
|
3006
|
+
/**
|
|
3007
|
+
* Disable AutofillCreditCardEnabled policy for a Window or View.
|
|
3008
|
+
*/
|
|
3009
|
+
AutofillCreditCardEnabled?: PolicyOptions;
|
|
3006
3010
|
};
|
|
3007
3011
|
|
|
3008
3012
|
declare interface ClassicProtocolOffer extends ProtocolPacketBase {
|
|
@@ -3853,6 +3857,10 @@ declare type ConstWindowOptions = {
|
|
|
3853
3857
|
* Control which options to ignore when creating a Platform Window.
|
|
3854
3858
|
*/
|
|
3855
3859
|
excludeOptions: ExcludeOptions;
|
|
3860
|
+
/**
|
|
3861
|
+
* 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.
|
|
3862
|
+
*/
|
|
3863
|
+
roundedCorners: boolean;
|
|
3856
3864
|
};
|
|
3857
3865
|
|
|
3858
3866
|
/**
|
|
@@ -9327,6 +9335,12 @@ declare type MutableWindowOptions = {
|
|
|
9327
9335
|
/**
|
|
9328
9336
|
* Shows the window's icon in the taskbar.
|
|
9329
9337
|
*
|
|
9338
|
+
* @remarks
|
|
9339
|
+
* In Windows, setting `showTaskbarIcon` to false will cause the window to display on all virtual desktops.
|
|
9340
|
+
* In order to prevent this while keeping `showTaskbarIcon` false, pass the identity of the parent via the
|
|
9341
|
+
* `modalParentIdentity` (see {@link WindowCreationOptions}). This is useful for popups managed by
|
|
9342
|
+
* {@link Window._Window.showPopupWindow}.
|
|
9343
|
+
*
|
|
9330
9344
|
* @default true
|
|
9331
9345
|
*/
|
|
9332
9346
|
showTaskbarIcon: boolean;
|
package/out/mock-beta.d.ts
CHANGED
|
@@ -3003,6 +3003,10 @@ declare type ChromiumPolicies = {
|
|
|
3003
3003
|
* Disable AutofillAddressEnabled policy for a Window or View.
|
|
3004
3004
|
*/
|
|
3005
3005
|
AutofillAddressEnabled?: PolicyOptions;
|
|
3006
|
+
/**
|
|
3007
|
+
* Disable AutofillCreditCardEnabled policy for a Window or View.
|
|
3008
|
+
*/
|
|
3009
|
+
AutofillCreditCardEnabled?: PolicyOptions;
|
|
3006
3010
|
};
|
|
3007
3011
|
|
|
3008
3012
|
declare interface ClassicProtocolOffer extends ProtocolPacketBase {
|
|
@@ -3853,6 +3857,10 @@ declare type ConstWindowOptions = {
|
|
|
3853
3857
|
* Control which options to ignore when creating a Platform Window.
|
|
3854
3858
|
*/
|
|
3855
3859
|
excludeOptions: ExcludeOptions;
|
|
3860
|
+
/**
|
|
3861
|
+
* 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.
|
|
3862
|
+
*/
|
|
3863
|
+
roundedCorners: boolean;
|
|
3856
3864
|
};
|
|
3857
3865
|
|
|
3858
3866
|
/**
|
|
@@ -9327,6 +9335,12 @@ declare type MutableWindowOptions = {
|
|
|
9327
9335
|
/**
|
|
9328
9336
|
* Shows the window's icon in the taskbar.
|
|
9329
9337
|
*
|
|
9338
|
+
* @remarks
|
|
9339
|
+
* In Windows, setting `showTaskbarIcon` to false will cause the window to display on all virtual desktops.
|
|
9340
|
+
* In order to prevent this while keeping `showTaskbarIcon` false, pass the identity of the parent via the
|
|
9341
|
+
* `modalParentIdentity` (see {@link WindowCreationOptions}). This is useful for popups managed by
|
|
9342
|
+
* {@link Window._Window.showPopupWindow}.
|
|
9343
|
+
*
|
|
9330
9344
|
* @default true
|
|
9331
9345
|
*/
|
|
9332
9346
|
showTaskbarIcon: boolean;
|
package/out/mock-public.d.ts
CHANGED
|
@@ -3003,6 +3003,10 @@ declare type ChromiumPolicies = {
|
|
|
3003
3003
|
* Disable AutofillAddressEnabled policy for a Window or View.
|
|
3004
3004
|
*/
|
|
3005
3005
|
AutofillAddressEnabled?: PolicyOptions;
|
|
3006
|
+
/**
|
|
3007
|
+
* Disable AutofillCreditCardEnabled policy for a Window or View.
|
|
3008
|
+
*/
|
|
3009
|
+
AutofillCreditCardEnabled?: PolicyOptions;
|
|
3006
3010
|
};
|
|
3007
3011
|
|
|
3008
3012
|
declare interface ClassicProtocolOffer extends ProtocolPacketBase {
|
|
@@ -3853,6 +3857,10 @@ declare type ConstWindowOptions = {
|
|
|
3853
3857
|
* Control which options to ignore when creating a Platform Window.
|
|
3854
3858
|
*/
|
|
3855
3859
|
excludeOptions: ExcludeOptions;
|
|
3860
|
+
/**
|
|
3861
|
+
* 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.
|
|
3862
|
+
*/
|
|
3863
|
+
roundedCorners: boolean;
|
|
3856
3864
|
};
|
|
3857
3865
|
|
|
3858
3866
|
/**
|
|
@@ -9327,6 +9335,12 @@ declare type MutableWindowOptions = {
|
|
|
9327
9335
|
/**
|
|
9328
9336
|
* Shows the window's icon in the taskbar.
|
|
9329
9337
|
*
|
|
9338
|
+
* @remarks
|
|
9339
|
+
* In Windows, setting `showTaskbarIcon` to false will cause the window to display on all virtual desktops.
|
|
9340
|
+
* In order to prevent this while keeping `showTaskbarIcon` false, pass the identity of the parent via the
|
|
9341
|
+
* `modalParentIdentity` (see {@link WindowCreationOptions}). This is useful for popups managed by
|
|
9342
|
+
* {@link Window._Window.showPopupWindow}.
|
|
9343
|
+
*
|
|
9330
9344
|
* @default true
|
|
9331
9345
|
*/
|
|
9332
9346
|
showTaskbarIcon: boolean;
|
package/out/stub.d.ts
CHANGED
|
@@ -3059,6 +3059,10 @@ declare type ChromiumPolicies = {
|
|
|
3059
3059
|
* Disable AutofillAddressEnabled policy for a Window or View.
|
|
3060
3060
|
*/
|
|
3061
3061
|
AutofillAddressEnabled?: PolicyOptions;
|
|
3062
|
+
/**
|
|
3063
|
+
* Disable AutofillCreditCardEnabled policy for a Window or View.
|
|
3064
|
+
*/
|
|
3065
|
+
AutofillCreditCardEnabled?: PolicyOptions;
|
|
3062
3066
|
};
|
|
3063
3067
|
|
|
3064
3068
|
declare interface ClassicProtocolOffer extends ProtocolPacketBase {
|
|
@@ -3912,6 +3916,10 @@ declare type ConstWindowOptions = {
|
|
|
3912
3916
|
* Control which options to ignore when creating a Platform Window.
|
|
3913
3917
|
*/
|
|
3914
3918
|
excludeOptions: ExcludeOptions;
|
|
3919
|
+
/**
|
|
3920
|
+
* 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.
|
|
3921
|
+
*/
|
|
3922
|
+
roundedCorners: boolean;
|
|
3915
3923
|
};
|
|
3916
3924
|
|
|
3917
3925
|
/**
|
|
@@ -9627,6 +9635,12 @@ declare type MutableWindowOptions = {
|
|
|
9627
9635
|
/**
|
|
9628
9636
|
* Shows the window's icon in the taskbar.
|
|
9629
9637
|
*
|
|
9638
|
+
* @remarks
|
|
9639
|
+
* In Windows, setting `showTaskbarIcon` to false will cause the window to display on all virtual desktops.
|
|
9640
|
+
* In order to prevent this while keeping `showTaskbarIcon` false, pass the identity of the parent via the
|
|
9641
|
+
* `modalParentIdentity` (see {@link WindowCreationOptions}). This is useful for popups managed by
|
|
9642
|
+
* {@link Window._Window.showPopupWindow}.
|
|
9643
|
+
*
|
|
9630
9644
|
* @default true
|
|
9631
9645
|
*/
|
|
9632
9646
|
showTaskbarIcon: boolean;
|