@openfin/fdc3-api 41.100.122 → 41.101.2
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
|
@@ -1929,7 +1929,22 @@ declare type BoundsDidChangeEvent = BoundsChangeEvent & {
|
|
|
1929
1929
|
reason: 'self' | 'animation';
|
|
1930
1930
|
};
|
|
1931
1931
|
|
|
1932
|
-
declare type BoundsEvent = BaseEvent_5 & OpenFin.
|
|
1932
|
+
declare type BoundsEvent = BaseEvent_5 & OpenFin.WindowBounds;
|
|
1933
|
+
|
|
1934
|
+
declare type BoundsType =
|
|
1935
|
+
/**
|
|
1936
|
+
* Bounds specify the size and location of the entire window, including OS border styling.
|
|
1937
|
+
*/
|
|
1938
|
+
'window'
|
|
1939
|
+
/**
|
|
1940
|
+
* Bounds specify the size and location of the window's DOM content, excluding OS border styling.
|
|
1941
|
+
*/
|
|
1942
|
+
| 'content'
|
|
1943
|
+
/**
|
|
1944
|
+
* Origin parameters (top, left) specify the location of the window origin, including OS border styling.
|
|
1945
|
+
* Size parameters bounds (width, height) specify the size of the window's DOM content, excluding OS border styling.
|
|
1946
|
+
*/
|
|
1947
|
+
| 'window-origin-content-size';
|
|
1933
1948
|
|
|
1934
1949
|
/**
|
|
1935
1950
|
* Opens matched URLs in the browser.
|
|
@@ -10163,6 +10178,7 @@ declare namespace OpenFin {
|
|
|
10163
10178
|
Me,
|
|
10164
10179
|
CapturePageOptions,
|
|
10165
10180
|
ProcessLoggingOptions,
|
|
10181
|
+
BoundsType,
|
|
10166
10182
|
PositioningOptions,
|
|
10167
10183
|
ChannelClientConnectionListener,
|
|
10168
10184
|
ChannelClientDisconnectionListener,
|
|
@@ -12063,6 +12079,7 @@ declare type PositioningOptions = {
|
|
|
12063
12079
|
* This will have the effect of the maximized window staying maximized and not immediately taking this new position.
|
|
12064
12080
|
*/
|
|
12065
12081
|
skipRestore?: boolean;
|
|
12082
|
+
boundsType?: BoundsType;
|
|
12066
12083
|
};
|
|
12067
12084
|
|
|
12068
12085
|
/**
|
|
@@ -19258,6 +19275,10 @@ declare type WindowAlertRequestedEvent = BaseEvent_3 & {
|
|
|
19258
19275
|
declare type WindowBounds = Bounds & {
|
|
19259
19276
|
bottom: number;
|
|
19260
19277
|
right: number;
|
|
19278
|
+
/**
|
|
19279
|
+
* The bounds for the window's web content, excluding any OS border
|
|
19280
|
+
*/
|
|
19281
|
+
content: Bounds;
|
|
19261
19282
|
};
|
|
19262
19283
|
|
|
19263
19284
|
/**
|
package/out/fdc3-api-beta.d.ts
CHANGED
|
@@ -1929,7 +1929,22 @@ declare type BoundsDidChangeEvent = BoundsChangeEvent & {
|
|
|
1929
1929
|
reason: 'self' | 'animation';
|
|
1930
1930
|
};
|
|
1931
1931
|
|
|
1932
|
-
declare type BoundsEvent = BaseEvent_5 & OpenFin.
|
|
1932
|
+
declare type BoundsEvent = BaseEvent_5 & OpenFin.WindowBounds;
|
|
1933
|
+
|
|
1934
|
+
declare type BoundsType =
|
|
1935
|
+
/**
|
|
1936
|
+
* Bounds specify the size and location of the entire window, including OS border styling.
|
|
1937
|
+
*/
|
|
1938
|
+
'window'
|
|
1939
|
+
/**
|
|
1940
|
+
* Bounds specify the size and location of the window's DOM content, excluding OS border styling.
|
|
1941
|
+
*/
|
|
1942
|
+
| 'content'
|
|
1943
|
+
/**
|
|
1944
|
+
* Origin parameters (top, left) specify the location of the window origin, including OS border styling.
|
|
1945
|
+
* Size parameters bounds (width, height) specify the size of the window's DOM content, excluding OS border styling.
|
|
1946
|
+
*/
|
|
1947
|
+
| 'window-origin-content-size';
|
|
1933
1948
|
|
|
1934
1949
|
/**
|
|
1935
1950
|
* Opens matched URLs in the browser.
|
|
@@ -10163,6 +10178,7 @@ declare namespace OpenFin {
|
|
|
10163
10178
|
Me,
|
|
10164
10179
|
CapturePageOptions,
|
|
10165
10180
|
ProcessLoggingOptions,
|
|
10181
|
+
BoundsType,
|
|
10166
10182
|
PositioningOptions,
|
|
10167
10183
|
ChannelClientConnectionListener,
|
|
10168
10184
|
ChannelClientDisconnectionListener,
|
|
@@ -12063,6 +12079,7 @@ declare type PositioningOptions = {
|
|
|
12063
12079
|
* This will have the effect of the maximized window staying maximized and not immediately taking this new position.
|
|
12064
12080
|
*/
|
|
12065
12081
|
skipRestore?: boolean;
|
|
12082
|
+
boundsType?: BoundsType;
|
|
12066
12083
|
};
|
|
12067
12084
|
|
|
12068
12085
|
/**
|
|
@@ -19258,6 +19275,10 @@ declare type WindowAlertRequestedEvent = BaseEvent_3 & {
|
|
|
19258
19275
|
declare type WindowBounds = Bounds & {
|
|
19259
19276
|
bottom: number;
|
|
19260
19277
|
right: number;
|
|
19278
|
+
/**
|
|
19279
|
+
* The bounds for the window's web content, excluding any OS border
|
|
19280
|
+
*/
|
|
19281
|
+
content: Bounds;
|
|
19261
19282
|
};
|
|
19262
19283
|
|
|
19263
19284
|
/**
|
package/out/fdc3-api-public.d.ts
CHANGED
|
@@ -1929,7 +1929,22 @@ declare type BoundsDidChangeEvent = BoundsChangeEvent & {
|
|
|
1929
1929
|
reason: 'self' | 'animation';
|
|
1930
1930
|
};
|
|
1931
1931
|
|
|
1932
|
-
declare type BoundsEvent = BaseEvent_5 & OpenFin.
|
|
1932
|
+
declare type BoundsEvent = BaseEvent_5 & OpenFin.WindowBounds;
|
|
1933
|
+
|
|
1934
|
+
declare type BoundsType =
|
|
1935
|
+
/**
|
|
1936
|
+
* Bounds specify the size and location of the entire window, including OS border styling.
|
|
1937
|
+
*/
|
|
1938
|
+
'window'
|
|
1939
|
+
/**
|
|
1940
|
+
* Bounds specify the size and location of the window's DOM content, excluding OS border styling.
|
|
1941
|
+
*/
|
|
1942
|
+
| 'content'
|
|
1943
|
+
/**
|
|
1944
|
+
* Origin parameters (top, left) specify the location of the window origin, including OS border styling.
|
|
1945
|
+
* Size parameters bounds (width, height) specify the size of the window's DOM content, excluding OS border styling.
|
|
1946
|
+
*/
|
|
1947
|
+
| 'window-origin-content-size';
|
|
1933
1948
|
|
|
1934
1949
|
/**
|
|
1935
1950
|
* Opens matched URLs in the browser.
|
|
@@ -10163,6 +10178,7 @@ declare namespace OpenFin {
|
|
|
10163
10178
|
Me,
|
|
10164
10179
|
CapturePageOptions,
|
|
10165
10180
|
ProcessLoggingOptions,
|
|
10181
|
+
BoundsType,
|
|
10166
10182
|
PositioningOptions,
|
|
10167
10183
|
ChannelClientConnectionListener,
|
|
10168
10184
|
ChannelClientDisconnectionListener,
|
|
@@ -12063,6 +12079,7 @@ declare type PositioningOptions = {
|
|
|
12063
12079
|
* This will have the effect of the maximized window staying maximized and not immediately taking this new position.
|
|
12064
12080
|
*/
|
|
12065
12081
|
skipRestore?: boolean;
|
|
12082
|
+
boundsType?: BoundsType;
|
|
12066
12083
|
};
|
|
12067
12084
|
|
|
12068
12085
|
/**
|
|
@@ -19258,6 +19275,10 @@ declare type WindowAlertRequestedEvent = BaseEvent_3 & {
|
|
|
19258
19275
|
declare type WindowBounds = Bounds & {
|
|
19259
19276
|
bottom: number;
|
|
19260
19277
|
right: number;
|
|
19278
|
+
/**
|
|
19279
|
+
* The bounds for the window's web content, excluding any OS border
|
|
19280
|
+
*/
|
|
19281
|
+
content: Bounds;
|
|
19261
19282
|
};
|
|
19262
19283
|
|
|
19263
19284
|
/**
|
package/out/fdc3-api.d.ts
CHANGED
|
@@ -1961,7 +1961,22 @@ declare type BoundsDidChangeEvent = BoundsChangeEvent & {
|
|
|
1961
1961
|
reason: 'self' | 'animation';
|
|
1962
1962
|
};
|
|
1963
1963
|
|
|
1964
|
-
declare type BoundsEvent = BaseEvent_5 & OpenFin.
|
|
1964
|
+
declare type BoundsEvent = BaseEvent_5 & OpenFin.WindowBounds;
|
|
1965
|
+
|
|
1966
|
+
declare type BoundsType =
|
|
1967
|
+
/**
|
|
1968
|
+
* Bounds specify the size and location of the entire window, including OS border styling.
|
|
1969
|
+
*/
|
|
1970
|
+
'window'
|
|
1971
|
+
/**
|
|
1972
|
+
* Bounds specify the size and location of the window's DOM content, excluding OS border styling.
|
|
1973
|
+
*/
|
|
1974
|
+
| 'content'
|
|
1975
|
+
/**
|
|
1976
|
+
* Origin parameters (top, left) specify the location of the window origin, including OS border styling.
|
|
1977
|
+
* Size parameters bounds (width, height) specify the size of the window's DOM content, excluding OS border styling.
|
|
1978
|
+
*/
|
|
1979
|
+
| 'window-origin-content-size';
|
|
1965
1980
|
|
|
1966
1981
|
/**
|
|
1967
1982
|
* Opens matched URLs in the browser.
|
|
@@ -10481,6 +10496,7 @@ declare namespace OpenFin {
|
|
|
10481
10496
|
Me,
|
|
10482
10497
|
CapturePageOptions,
|
|
10483
10498
|
ProcessLoggingOptions,
|
|
10499
|
+
BoundsType,
|
|
10484
10500
|
PositioningOptions,
|
|
10485
10501
|
ChannelClientConnectionListener,
|
|
10486
10502
|
ChannelClientDisconnectionListener,
|
|
@@ -12464,6 +12480,7 @@ declare type PositioningOptions = {
|
|
|
12464
12480
|
* This will have the effect of the maximized window staying maximized and not immediately taking this new position.
|
|
12465
12481
|
*/
|
|
12466
12482
|
skipRestore?: boolean;
|
|
12483
|
+
boundsType?: BoundsType;
|
|
12467
12484
|
};
|
|
12468
12485
|
|
|
12469
12486
|
/**
|
|
@@ -19712,6 +19729,10 @@ declare type WindowAlertRequestedEvent = BaseEvent_3 & {
|
|
|
19712
19729
|
declare type WindowBounds = Bounds & {
|
|
19713
19730
|
bottom: number;
|
|
19714
19731
|
right: number;
|
|
19732
|
+
/**
|
|
19733
|
+
* The bounds for the window's web content, excluding any OS border
|
|
19734
|
+
*/
|
|
19735
|
+
content: Bounds;
|
|
19715
19736
|
};
|
|
19716
19737
|
|
|
19717
19738
|
/**
|