@openfin/fdc3-api 40.104.8 → 40.105.3
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/fdc3-api-alpha.d.ts +23 -5
- package/out/fdc3-api-beta.d.ts +23 -5
- package/out/fdc3-api-public.d.ts +23 -5
- package/out/fdc3-api.d.ts +23 -5
- package/package.json +1 -1
package/out/fdc3-api-alpha.d.ts
CHANGED
|
@@ -1925,7 +1925,22 @@ declare type BoundsDidChangeEvent = BoundsChangeEvent & {
|
|
|
1925
1925
|
reason: 'self' | 'animation';
|
|
1926
1926
|
};
|
|
1927
1927
|
|
|
1928
|
-
declare type BoundsEvent = BaseEvent_5 & OpenFin.
|
|
1928
|
+
declare type BoundsEvent = BaseEvent_5 & OpenFin.WindowBounds;
|
|
1929
|
+
|
|
1930
|
+
declare type BoundsType =
|
|
1931
|
+
/**
|
|
1932
|
+
* Bounds specify the size and location of the entire window, including OS border styling.
|
|
1933
|
+
*/
|
|
1934
|
+
'window'
|
|
1935
|
+
/**
|
|
1936
|
+
* Bounds specify the size and location of the window's DOM content, excluding OS border styling.
|
|
1937
|
+
*/
|
|
1938
|
+
| 'content'
|
|
1939
|
+
/**
|
|
1940
|
+
* Origin parameters (top, left) specify the location of the window origin, including OS border styling.
|
|
1941
|
+
* Size parameters bounds (width, height) specify the size of the window's DOM content, excluding OS border styling.
|
|
1942
|
+
*/
|
|
1943
|
+
| 'window-origin-content-size';
|
|
1929
1944
|
|
|
1930
1945
|
/**
|
|
1931
1946
|
* Opens matched URLs in the browser.
|
|
@@ -4482,10 +4497,7 @@ declare type DomainApiSettings = {
|
|
|
4482
4497
|
* @interface
|
|
4483
4498
|
* Defines application settings that vary by the domain of the current context.
|
|
4484
4499
|
*
|
|
4485
|
-
* @remarks
|
|
4486
|
-
* domain should be represented with a single rule.
|
|
4487
|
-
*
|
|
4488
|
-
* Renderers opened on `about:blank` are considered to belong to the domain of their opener (or, in the case of iframes,
|
|
4500
|
+
* @remarks Renderers opened on `about:blank` are considered to belong to the domain of their opener (or, in the case of iframes,
|
|
4489
4501
|
* their parent), effective recursively. Domain rules matched to `about:blank` will only apply in cases where no opener
|
|
4490
4502
|
* exists.
|
|
4491
4503
|
*/
|
|
@@ -10097,6 +10109,7 @@ declare namespace OpenFin {
|
|
|
10097
10109
|
Me,
|
|
10098
10110
|
CapturePageOptions,
|
|
10099
10111
|
ProcessLoggingOptions,
|
|
10112
|
+
BoundsType,
|
|
10100
10113
|
PositioningOptions,
|
|
10101
10114
|
ChannelClientConnectionListener,
|
|
10102
10115
|
ChannelClientDisconnectionListener,
|
|
@@ -11992,6 +12005,7 @@ declare type PositioningOptions = {
|
|
|
11992
12005
|
* This will have the effect of the maximized window staying maximized and not immediately taking this new position.
|
|
11993
12006
|
*/
|
|
11994
12007
|
skipRestore?: boolean;
|
|
12008
|
+
boundsType?: BoundsType;
|
|
11995
12009
|
};
|
|
11996
12010
|
|
|
11997
12011
|
/**
|
|
@@ -19133,6 +19147,10 @@ declare type WindowAlertRequestedEvent = BaseEvent_3 & {
|
|
|
19133
19147
|
declare type WindowBounds = Bounds & {
|
|
19134
19148
|
bottom: number;
|
|
19135
19149
|
right: number;
|
|
19150
|
+
/**
|
|
19151
|
+
* The bounds for the window's web content, excluding any OS border
|
|
19152
|
+
*/
|
|
19153
|
+
content: Bounds;
|
|
19136
19154
|
};
|
|
19137
19155
|
|
|
19138
19156
|
/**
|
package/out/fdc3-api-beta.d.ts
CHANGED
|
@@ -1925,7 +1925,22 @@ declare type BoundsDidChangeEvent = BoundsChangeEvent & {
|
|
|
1925
1925
|
reason: 'self' | 'animation';
|
|
1926
1926
|
};
|
|
1927
1927
|
|
|
1928
|
-
declare type BoundsEvent = BaseEvent_5 & OpenFin.
|
|
1928
|
+
declare type BoundsEvent = BaseEvent_5 & OpenFin.WindowBounds;
|
|
1929
|
+
|
|
1930
|
+
declare type BoundsType =
|
|
1931
|
+
/**
|
|
1932
|
+
* Bounds specify the size and location of the entire window, including OS border styling.
|
|
1933
|
+
*/
|
|
1934
|
+
'window'
|
|
1935
|
+
/**
|
|
1936
|
+
* Bounds specify the size and location of the window's DOM content, excluding OS border styling.
|
|
1937
|
+
*/
|
|
1938
|
+
| 'content'
|
|
1939
|
+
/**
|
|
1940
|
+
* Origin parameters (top, left) specify the location of the window origin, including OS border styling.
|
|
1941
|
+
* Size parameters bounds (width, height) specify the size of the window's DOM content, excluding OS border styling.
|
|
1942
|
+
*/
|
|
1943
|
+
| 'window-origin-content-size';
|
|
1929
1944
|
|
|
1930
1945
|
/**
|
|
1931
1946
|
* Opens matched URLs in the browser.
|
|
@@ -4482,10 +4497,7 @@ declare type DomainApiSettings = {
|
|
|
4482
4497
|
* @interface
|
|
4483
4498
|
* Defines application settings that vary by the domain of the current context.
|
|
4484
4499
|
*
|
|
4485
|
-
* @remarks
|
|
4486
|
-
* domain should be represented with a single rule.
|
|
4487
|
-
*
|
|
4488
|
-
* Renderers opened on `about:blank` are considered to belong to the domain of their opener (or, in the case of iframes,
|
|
4500
|
+
* @remarks Renderers opened on `about:blank` are considered to belong to the domain of their opener (or, in the case of iframes,
|
|
4489
4501
|
* their parent), effective recursively. Domain rules matched to `about:blank` will only apply in cases where no opener
|
|
4490
4502
|
* exists.
|
|
4491
4503
|
*/
|
|
@@ -10097,6 +10109,7 @@ declare namespace OpenFin {
|
|
|
10097
10109
|
Me,
|
|
10098
10110
|
CapturePageOptions,
|
|
10099
10111
|
ProcessLoggingOptions,
|
|
10112
|
+
BoundsType,
|
|
10100
10113
|
PositioningOptions,
|
|
10101
10114
|
ChannelClientConnectionListener,
|
|
10102
10115
|
ChannelClientDisconnectionListener,
|
|
@@ -11992,6 +12005,7 @@ declare type PositioningOptions = {
|
|
|
11992
12005
|
* This will have the effect of the maximized window staying maximized and not immediately taking this new position.
|
|
11993
12006
|
*/
|
|
11994
12007
|
skipRestore?: boolean;
|
|
12008
|
+
boundsType?: BoundsType;
|
|
11995
12009
|
};
|
|
11996
12010
|
|
|
11997
12011
|
/**
|
|
@@ -19133,6 +19147,10 @@ declare type WindowAlertRequestedEvent = BaseEvent_3 & {
|
|
|
19133
19147
|
declare type WindowBounds = Bounds & {
|
|
19134
19148
|
bottom: number;
|
|
19135
19149
|
right: number;
|
|
19150
|
+
/**
|
|
19151
|
+
* The bounds for the window's web content, excluding any OS border
|
|
19152
|
+
*/
|
|
19153
|
+
content: Bounds;
|
|
19136
19154
|
};
|
|
19137
19155
|
|
|
19138
19156
|
/**
|
package/out/fdc3-api-public.d.ts
CHANGED
|
@@ -1925,7 +1925,22 @@ declare type BoundsDidChangeEvent = BoundsChangeEvent & {
|
|
|
1925
1925
|
reason: 'self' | 'animation';
|
|
1926
1926
|
};
|
|
1927
1927
|
|
|
1928
|
-
declare type BoundsEvent = BaseEvent_5 & OpenFin.
|
|
1928
|
+
declare type BoundsEvent = BaseEvent_5 & OpenFin.WindowBounds;
|
|
1929
|
+
|
|
1930
|
+
declare type BoundsType =
|
|
1931
|
+
/**
|
|
1932
|
+
* Bounds specify the size and location of the entire window, including OS border styling.
|
|
1933
|
+
*/
|
|
1934
|
+
'window'
|
|
1935
|
+
/**
|
|
1936
|
+
* Bounds specify the size and location of the window's DOM content, excluding OS border styling.
|
|
1937
|
+
*/
|
|
1938
|
+
| 'content'
|
|
1939
|
+
/**
|
|
1940
|
+
* Origin parameters (top, left) specify the location of the window origin, including OS border styling.
|
|
1941
|
+
* Size parameters bounds (width, height) specify the size of the window's DOM content, excluding OS border styling.
|
|
1942
|
+
*/
|
|
1943
|
+
| 'window-origin-content-size';
|
|
1929
1944
|
|
|
1930
1945
|
/**
|
|
1931
1946
|
* Opens matched URLs in the browser.
|
|
@@ -4482,10 +4497,7 @@ declare type DomainApiSettings = {
|
|
|
4482
4497
|
* @interface
|
|
4483
4498
|
* Defines application settings that vary by the domain of the current context.
|
|
4484
4499
|
*
|
|
4485
|
-
* @remarks
|
|
4486
|
-
* domain should be represented with a single rule.
|
|
4487
|
-
*
|
|
4488
|
-
* Renderers opened on `about:blank` are considered to belong to the domain of their opener (or, in the case of iframes,
|
|
4500
|
+
* @remarks Renderers opened on `about:blank` are considered to belong to the domain of their opener (or, in the case of iframes,
|
|
4489
4501
|
* their parent), effective recursively. Domain rules matched to `about:blank` will only apply in cases where no opener
|
|
4490
4502
|
* exists.
|
|
4491
4503
|
*/
|
|
@@ -10097,6 +10109,7 @@ declare namespace OpenFin {
|
|
|
10097
10109
|
Me,
|
|
10098
10110
|
CapturePageOptions,
|
|
10099
10111
|
ProcessLoggingOptions,
|
|
10112
|
+
BoundsType,
|
|
10100
10113
|
PositioningOptions,
|
|
10101
10114
|
ChannelClientConnectionListener,
|
|
10102
10115
|
ChannelClientDisconnectionListener,
|
|
@@ -11992,6 +12005,7 @@ declare type PositioningOptions = {
|
|
|
11992
12005
|
* This will have the effect of the maximized window staying maximized and not immediately taking this new position.
|
|
11993
12006
|
*/
|
|
11994
12007
|
skipRestore?: boolean;
|
|
12008
|
+
boundsType?: BoundsType;
|
|
11995
12009
|
};
|
|
11996
12010
|
|
|
11997
12011
|
/**
|
|
@@ -19133,6 +19147,10 @@ declare type WindowAlertRequestedEvent = BaseEvent_3 & {
|
|
|
19133
19147
|
declare type WindowBounds = Bounds & {
|
|
19134
19148
|
bottom: number;
|
|
19135
19149
|
right: number;
|
|
19150
|
+
/**
|
|
19151
|
+
* The bounds for the window's web content, excluding any OS border
|
|
19152
|
+
*/
|
|
19153
|
+
content: Bounds;
|
|
19136
19154
|
};
|
|
19137
19155
|
|
|
19138
19156
|
/**
|
package/out/fdc3-api.d.ts
CHANGED
|
@@ -1957,7 +1957,22 @@ declare type BoundsDidChangeEvent = BoundsChangeEvent & {
|
|
|
1957
1957
|
reason: 'self' | 'animation';
|
|
1958
1958
|
};
|
|
1959
1959
|
|
|
1960
|
-
declare type BoundsEvent = BaseEvent_5 & OpenFin.
|
|
1960
|
+
declare type BoundsEvent = BaseEvent_5 & OpenFin.WindowBounds;
|
|
1961
|
+
|
|
1962
|
+
declare type BoundsType =
|
|
1963
|
+
/**
|
|
1964
|
+
* Bounds specify the size and location of the entire window, including OS border styling.
|
|
1965
|
+
*/
|
|
1966
|
+
'window'
|
|
1967
|
+
/**
|
|
1968
|
+
* Bounds specify the size and location of the window's DOM content, excluding OS border styling.
|
|
1969
|
+
*/
|
|
1970
|
+
| 'content'
|
|
1971
|
+
/**
|
|
1972
|
+
* Origin parameters (top, left) specify the location of the window origin, including OS border styling.
|
|
1973
|
+
* Size parameters bounds (width, height) specify the size of the window's DOM content, excluding OS border styling.
|
|
1974
|
+
*/
|
|
1975
|
+
| 'window-origin-content-size';
|
|
1961
1976
|
|
|
1962
1977
|
/**
|
|
1963
1978
|
* Opens matched URLs in the browser.
|
|
@@ -4541,10 +4556,7 @@ declare type DomainApiSettings = {
|
|
|
4541
4556
|
* @interface
|
|
4542
4557
|
* Defines application settings that vary by the domain of the current context.
|
|
4543
4558
|
*
|
|
4544
|
-
* @remarks
|
|
4545
|
-
* domain should be represented with a single rule.
|
|
4546
|
-
*
|
|
4547
|
-
* Renderers opened on `about:blank` are considered to belong to the domain of their opener (or, in the case of iframes,
|
|
4559
|
+
* @remarks Renderers opened on `about:blank` are considered to belong to the domain of their opener (or, in the case of iframes,
|
|
4548
4560
|
* their parent), effective recursively. Domain rules matched to `about:blank` will only apply in cases where no opener
|
|
4549
4561
|
* exists.
|
|
4550
4562
|
*/
|
|
@@ -10415,6 +10427,7 @@ declare namespace OpenFin {
|
|
|
10415
10427
|
Me,
|
|
10416
10428
|
CapturePageOptions,
|
|
10417
10429
|
ProcessLoggingOptions,
|
|
10430
|
+
BoundsType,
|
|
10418
10431
|
PositioningOptions,
|
|
10419
10432
|
ChannelClientConnectionListener,
|
|
10420
10433
|
ChannelClientDisconnectionListener,
|
|
@@ -12393,6 +12406,7 @@ declare type PositioningOptions = {
|
|
|
12393
12406
|
* This will have the effect of the maximized window staying maximized and not immediately taking this new position.
|
|
12394
12407
|
*/
|
|
12395
12408
|
skipRestore?: boolean;
|
|
12409
|
+
boundsType?: BoundsType;
|
|
12396
12410
|
};
|
|
12397
12411
|
|
|
12398
12412
|
/**
|
|
@@ -19587,6 +19601,10 @@ declare type WindowAlertRequestedEvent = BaseEvent_3 & {
|
|
|
19587
19601
|
declare type WindowBounds = Bounds & {
|
|
19588
19602
|
bottom: number;
|
|
19589
19603
|
right: number;
|
|
19604
|
+
/**
|
|
19605
|
+
* The bounds for the window's web content, excluding any OS border
|
|
19606
|
+
*/
|
|
19607
|
+
content: Bounds;
|
|
19590
19608
|
};
|
|
19591
19609
|
|
|
19592
19610
|
/**
|