@openfin/core 43.100.49 → 43.100.50
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 +20 -1
- package/out/mock-beta.d.ts +20 -1
- package/out/mock-public.d.ts +20 -1
- package/out/stub.d.ts +20 -1
- package/package.json +1 -1
package/out/mock-alpha.d.ts
CHANGED
@@ -3508,6 +3508,15 @@ declare type ConstViewOptions = {
|
|
3508
3508
|
* Custom headers for requests sent by the view.
|
3509
3509
|
*/
|
3510
3510
|
customRequestHeaders: CustomRequestHeaders[];
|
3511
|
+
/**
|
3512
|
+
* @experimental
|
3513
|
+
*
|
3514
|
+
* When set to true, will prevent setting the `-webkit-app-region` and `app-region` css properties on the view.
|
3515
|
+
* These css properties are used to enable dragging of a frameless window.
|
3516
|
+
*
|
3517
|
+
* @default false
|
3518
|
+
*/
|
3519
|
+
disableAppRegion: boolean;
|
3511
3520
|
/**
|
3512
3521
|
* Initial bounds given relative to the window.
|
3513
3522
|
*/
|
@@ -3665,6 +3674,15 @@ declare type ConstWindowOptions = {
|
|
3665
3674
|
* @default true
|
3666
3675
|
*/
|
3667
3676
|
closeOnLastViewRemoved: boolean;
|
3677
|
+
/**
|
3678
|
+
* @experimental
|
3679
|
+
*
|
3680
|
+
* When set to true, will prevent setting the `-webkit-app-region` and `app-region` css properties on the window.
|
3681
|
+
* These css properties are used to enable dragging of a frameless window.
|
3682
|
+
*
|
3683
|
+
* @default false
|
3684
|
+
*/
|
3685
|
+
disableAppRegion: boolean;
|
3668
3686
|
/**
|
3669
3687
|
* When `closeOnLastViewRemoved` is set to true, determines which views prevent closing the window.
|
3670
3688
|
* Defaults to `all`. You may want to switch this to `layout` if using View closeBehavior: 'hide'.
|
@@ -9156,7 +9174,7 @@ declare type MutableWindowOptions = {
|
|
9156
9174
|
* Turns anything of matching RGB value transparent.
|
9157
9175
|
*
|
9158
9176
|
* Caveats:
|
9159
|
-
* *
|
9177
|
+
* * Runtime flags --disable-gpu and --allow-unsafe-compositing are required. Note: Unclear behavior on remote Desktop support
|
9160
9178
|
* * User cannot click-through transparent regions
|
9161
9179
|
* * Not supported on Mac
|
9162
9180
|
* * Windows Aero must be enabled
|
@@ -9359,6 +9377,7 @@ declare type MutableWindowOptions = {
|
|
9359
9377
|
* A flag that specifies how transparent the window will be.
|
9360
9378
|
* Changing opacity doesn't work on Windows 7 without Aero so setting this value will have no effect there.
|
9361
9379
|
* This value is clamped between `0.0` and `1.0`.
|
9380
|
+
* In software composition mode, the runtime flag --allow-unsafe-compositing is required.
|
9362
9381
|
*
|
9363
9382
|
* @default 1
|
9364
9383
|
*/
|
package/out/mock-beta.d.ts
CHANGED
@@ -3508,6 +3508,15 @@ declare type ConstViewOptions = {
|
|
3508
3508
|
* Custom headers for requests sent by the view.
|
3509
3509
|
*/
|
3510
3510
|
customRequestHeaders: CustomRequestHeaders[];
|
3511
|
+
/**
|
3512
|
+
* @experimental
|
3513
|
+
*
|
3514
|
+
* When set to true, will prevent setting the `-webkit-app-region` and `app-region` css properties on the view.
|
3515
|
+
* These css properties are used to enable dragging of a frameless window.
|
3516
|
+
*
|
3517
|
+
* @default false
|
3518
|
+
*/
|
3519
|
+
disableAppRegion: boolean;
|
3511
3520
|
/**
|
3512
3521
|
* Initial bounds given relative to the window.
|
3513
3522
|
*/
|
@@ -3665,6 +3674,15 @@ declare type ConstWindowOptions = {
|
|
3665
3674
|
* @default true
|
3666
3675
|
*/
|
3667
3676
|
closeOnLastViewRemoved: boolean;
|
3677
|
+
/**
|
3678
|
+
* @experimental
|
3679
|
+
*
|
3680
|
+
* When set to true, will prevent setting the `-webkit-app-region` and `app-region` css properties on the window.
|
3681
|
+
* These css properties are used to enable dragging of a frameless window.
|
3682
|
+
*
|
3683
|
+
* @default false
|
3684
|
+
*/
|
3685
|
+
disableAppRegion: boolean;
|
3668
3686
|
/**
|
3669
3687
|
* When `closeOnLastViewRemoved` is set to true, determines which views prevent closing the window.
|
3670
3688
|
* Defaults to `all`. You may want to switch this to `layout` if using View closeBehavior: 'hide'.
|
@@ -9156,7 +9174,7 @@ declare type MutableWindowOptions = {
|
|
9156
9174
|
* Turns anything of matching RGB value transparent.
|
9157
9175
|
*
|
9158
9176
|
* Caveats:
|
9159
|
-
* *
|
9177
|
+
* * Runtime flags --disable-gpu and --allow-unsafe-compositing are required. Note: Unclear behavior on remote Desktop support
|
9160
9178
|
* * User cannot click-through transparent regions
|
9161
9179
|
* * Not supported on Mac
|
9162
9180
|
* * Windows Aero must be enabled
|
@@ -9359,6 +9377,7 @@ declare type MutableWindowOptions = {
|
|
9359
9377
|
* A flag that specifies how transparent the window will be.
|
9360
9378
|
* Changing opacity doesn't work on Windows 7 without Aero so setting this value will have no effect there.
|
9361
9379
|
* This value is clamped between `0.0` and `1.0`.
|
9380
|
+
* In software composition mode, the runtime flag --allow-unsafe-compositing is required.
|
9362
9381
|
*
|
9363
9382
|
* @default 1
|
9364
9383
|
*/
|
package/out/mock-public.d.ts
CHANGED
@@ -3508,6 +3508,15 @@ declare type ConstViewOptions = {
|
|
3508
3508
|
* Custom headers for requests sent by the view.
|
3509
3509
|
*/
|
3510
3510
|
customRequestHeaders: CustomRequestHeaders[];
|
3511
|
+
/**
|
3512
|
+
* @experimental
|
3513
|
+
*
|
3514
|
+
* When set to true, will prevent setting the `-webkit-app-region` and `app-region` css properties on the view.
|
3515
|
+
* These css properties are used to enable dragging of a frameless window.
|
3516
|
+
*
|
3517
|
+
* @default false
|
3518
|
+
*/
|
3519
|
+
disableAppRegion: boolean;
|
3511
3520
|
/**
|
3512
3521
|
* Initial bounds given relative to the window.
|
3513
3522
|
*/
|
@@ -3665,6 +3674,15 @@ declare type ConstWindowOptions = {
|
|
3665
3674
|
* @default true
|
3666
3675
|
*/
|
3667
3676
|
closeOnLastViewRemoved: boolean;
|
3677
|
+
/**
|
3678
|
+
* @experimental
|
3679
|
+
*
|
3680
|
+
* When set to true, will prevent setting the `-webkit-app-region` and `app-region` css properties on the window.
|
3681
|
+
* These css properties are used to enable dragging of a frameless window.
|
3682
|
+
*
|
3683
|
+
* @default false
|
3684
|
+
*/
|
3685
|
+
disableAppRegion: boolean;
|
3668
3686
|
/**
|
3669
3687
|
* When `closeOnLastViewRemoved` is set to true, determines which views prevent closing the window.
|
3670
3688
|
* Defaults to `all`. You may want to switch this to `layout` if using View closeBehavior: 'hide'.
|
@@ -9156,7 +9174,7 @@ declare type MutableWindowOptions = {
|
|
9156
9174
|
* Turns anything of matching RGB value transparent.
|
9157
9175
|
*
|
9158
9176
|
* Caveats:
|
9159
|
-
* *
|
9177
|
+
* * Runtime flags --disable-gpu and --allow-unsafe-compositing are required. Note: Unclear behavior on remote Desktop support
|
9160
9178
|
* * User cannot click-through transparent regions
|
9161
9179
|
* * Not supported on Mac
|
9162
9180
|
* * Windows Aero must be enabled
|
@@ -9359,6 +9377,7 @@ declare type MutableWindowOptions = {
|
|
9359
9377
|
* A flag that specifies how transparent the window will be.
|
9360
9378
|
* Changing opacity doesn't work on Windows 7 without Aero so setting this value will have no effect there.
|
9361
9379
|
* This value is clamped between `0.0` and `1.0`.
|
9380
|
+
* In software composition mode, the runtime flag --allow-unsafe-compositing is required.
|
9362
9381
|
*
|
9363
9382
|
* @default 1
|
9364
9383
|
*/
|
package/out/stub.d.ts
CHANGED
@@ -3567,6 +3567,15 @@ declare type ConstViewOptions = {
|
|
3567
3567
|
* Custom headers for requests sent by the view.
|
3568
3568
|
*/
|
3569
3569
|
customRequestHeaders: CustomRequestHeaders[];
|
3570
|
+
/**
|
3571
|
+
* @experimental
|
3572
|
+
*
|
3573
|
+
* When set to true, will prevent setting the `-webkit-app-region` and `app-region` css properties on the view.
|
3574
|
+
* These css properties are used to enable dragging of a frameless window.
|
3575
|
+
*
|
3576
|
+
* @default false
|
3577
|
+
*/
|
3578
|
+
disableAppRegion: boolean;
|
3570
3579
|
/**
|
3571
3580
|
* Initial bounds given relative to the window.
|
3572
3581
|
*/
|
@@ -3724,6 +3733,15 @@ declare type ConstWindowOptions = {
|
|
3724
3733
|
* @default true
|
3725
3734
|
*/
|
3726
3735
|
closeOnLastViewRemoved: boolean;
|
3736
|
+
/**
|
3737
|
+
* @experimental
|
3738
|
+
*
|
3739
|
+
* When set to true, will prevent setting the `-webkit-app-region` and `app-region` css properties on the window.
|
3740
|
+
* These css properties are used to enable dragging of a frameless window.
|
3741
|
+
*
|
3742
|
+
* @default false
|
3743
|
+
*/
|
3744
|
+
disableAppRegion: boolean;
|
3727
3745
|
/**
|
3728
3746
|
* When `closeOnLastViewRemoved` is set to true, determines which views prevent closing the window.
|
3729
3747
|
* Defaults to `all`. You may want to switch this to `layout` if using View closeBehavior: 'hide'.
|
@@ -9469,7 +9487,7 @@ declare type MutableWindowOptions = {
|
|
9469
9487
|
* Turns anything of matching RGB value transparent.
|
9470
9488
|
*
|
9471
9489
|
* Caveats:
|
9472
|
-
* *
|
9490
|
+
* * Runtime flags --disable-gpu and --allow-unsafe-compositing are required. Note: Unclear behavior on remote Desktop support
|
9473
9491
|
* * User cannot click-through transparent regions
|
9474
9492
|
* * Not supported on Mac
|
9475
9493
|
* * Windows Aero must be enabled
|
@@ -9672,6 +9690,7 @@ declare type MutableWindowOptions = {
|
|
9672
9690
|
* A flag that specifies how transparent the window will be.
|
9673
9691
|
* Changing opacity doesn't work on Windows 7 without Aero so setting this value will have no effect there.
|
9674
9692
|
* This value is clamped between `0.0` and `1.0`.
|
9693
|
+
* In software composition mode, the runtime flag --allow-unsafe-compositing is required.
|
9675
9694
|
*
|
9676
9695
|
* @default 1
|
9677
9696
|
*/
|