@openfin/fdc3-api 40.104.8 → 40.105.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/fdc3-api-alpha.d.ts +22 -1
- package/out/fdc3-api-beta.d.ts +22 -1
- package/out/fdc3-api-public.d.ts +22 -1
- package/out/fdc3-api.d.ts +22 -1
- 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.
|
|
@@ -10097,6 +10112,7 @@ declare namespace OpenFin {
|
|
|
10097
10112
|
Me,
|
|
10098
10113
|
CapturePageOptions,
|
|
10099
10114
|
ProcessLoggingOptions,
|
|
10115
|
+
BoundsType,
|
|
10100
10116
|
PositioningOptions,
|
|
10101
10117
|
ChannelClientConnectionListener,
|
|
10102
10118
|
ChannelClientDisconnectionListener,
|
|
@@ -11992,6 +12008,7 @@ declare type PositioningOptions = {
|
|
|
11992
12008
|
* This will have the effect of the maximized window staying maximized and not immediately taking this new position.
|
|
11993
12009
|
*/
|
|
11994
12010
|
skipRestore?: boolean;
|
|
12011
|
+
boundsType?: BoundsType;
|
|
11995
12012
|
};
|
|
11996
12013
|
|
|
11997
12014
|
/**
|
|
@@ -19133,6 +19150,10 @@ declare type WindowAlertRequestedEvent = BaseEvent_3 & {
|
|
|
19133
19150
|
declare type WindowBounds = Bounds & {
|
|
19134
19151
|
bottom: number;
|
|
19135
19152
|
right: number;
|
|
19153
|
+
/**
|
|
19154
|
+
* The bounds for the window's web content, excluding any OS border
|
|
19155
|
+
*/
|
|
19156
|
+
content: Bounds;
|
|
19136
19157
|
};
|
|
19137
19158
|
|
|
19138
19159
|
/**
|
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.
|
|
@@ -10097,6 +10112,7 @@ declare namespace OpenFin {
|
|
|
10097
10112
|
Me,
|
|
10098
10113
|
CapturePageOptions,
|
|
10099
10114
|
ProcessLoggingOptions,
|
|
10115
|
+
BoundsType,
|
|
10100
10116
|
PositioningOptions,
|
|
10101
10117
|
ChannelClientConnectionListener,
|
|
10102
10118
|
ChannelClientDisconnectionListener,
|
|
@@ -11992,6 +12008,7 @@ declare type PositioningOptions = {
|
|
|
11992
12008
|
* This will have the effect of the maximized window staying maximized and not immediately taking this new position.
|
|
11993
12009
|
*/
|
|
11994
12010
|
skipRestore?: boolean;
|
|
12011
|
+
boundsType?: BoundsType;
|
|
11995
12012
|
};
|
|
11996
12013
|
|
|
11997
12014
|
/**
|
|
@@ -19133,6 +19150,10 @@ declare type WindowAlertRequestedEvent = BaseEvent_3 & {
|
|
|
19133
19150
|
declare type WindowBounds = Bounds & {
|
|
19134
19151
|
bottom: number;
|
|
19135
19152
|
right: number;
|
|
19153
|
+
/**
|
|
19154
|
+
* The bounds for the window's web content, excluding any OS border
|
|
19155
|
+
*/
|
|
19156
|
+
content: Bounds;
|
|
19136
19157
|
};
|
|
19137
19158
|
|
|
19138
19159
|
/**
|
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.
|
|
@@ -10097,6 +10112,7 @@ declare namespace OpenFin {
|
|
|
10097
10112
|
Me,
|
|
10098
10113
|
CapturePageOptions,
|
|
10099
10114
|
ProcessLoggingOptions,
|
|
10115
|
+
BoundsType,
|
|
10100
10116
|
PositioningOptions,
|
|
10101
10117
|
ChannelClientConnectionListener,
|
|
10102
10118
|
ChannelClientDisconnectionListener,
|
|
@@ -11992,6 +12008,7 @@ declare type PositioningOptions = {
|
|
|
11992
12008
|
* This will have the effect of the maximized window staying maximized and not immediately taking this new position.
|
|
11993
12009
|
*/
|
|
11994
12010
|
skipRestore?: boolean;
|
|
12011
|
+
boundsType?: BoundsType;
|
|
11995
12012
|
};
|
|
11996
12013
|
|
|
11997
12014
|
/**
|
|
@@ -19133,6 +19150,10 @@ declare type WindowAlertRequestedEvent = BaseEvent_3 & {
|
|
|
19133
19150
|
declare type WindowBounds = Bounds & {
|
|
19134
19151
|
bottom: number;
|
|
19135
19152
|
right: number;
|
|
19153
|
+
/**
|
|
19154
|
+
* The bounds for the window's web content, excluding any OS border
|
|
19155
|
+
*/
|
|
19156
|
+
content: Bounds;
|
|
19136
19157
|
};
|
|
19137
19158
|
|
|
19138
19159
|
/**
|
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.
|
|
@@ -10415,6 +10430,7 @@ declare namespace OpenFin {
|
|
|
10415
10430
|
Me,
|
|
10416
10431
|
CapturePageOptions,
|
|
10417
10432
|
ProcessLoggingOptions,
|
|
10433
|
+
BoundsType,
|
|
10418
10434
|
PositioningOptions,
|
|
10419
10435
|
ChannelClientConnectionListener,
|
|
10420
10436
|
ChannelClientDisconnectionListener,
|
|
@@ -12393,6 +12409,7 @@ declare type PositioningOptions = {
|
|
|
12393
12409
|
* This will have the effect of the maximized window staying maximized and not immediately taking this new position.
|
|
12394
12410
|
*/
|
|
12395
12411
|
skipRestore?: boolean;
|
|
12412
|
+
boundsType?: BoundsType;
|
|
12396
12413
|
};
|
|
12397
12414
|
|
|
12398
12415
|
/**
|
|
@@ -19587,6 +19604,10 @@ declare type WindowAlertRequestedEvent = BaseEvent_3 & {
|
|
|
19587
19604
|
declare type WindowBounds = Bounds & {
|
|
19588
19605
|
bottom: number;
|
|
19589
19606
|
right: number;
|
|
19607
|
+
/**
|
|
19608
|
+
* The bounds for the window's web content, excluding any OS border
|
|
19609
|
+
*/
|
|
19610
|
+
content: Bounds;
|
|
19590
19611
|
};
|
|
19591
19612
|
|
|
19592
19613
|
/**
|