@openfin/fdc3-api 45.100.68 → 45.100.71
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 +30 -0
- package/out/fdc3-api-beta.d.ts +30 -0
- package/out/fdc3-api-public.d.ts +30 -0
- package/out/fdc3-api.d.ts +30 -0
- package/package.json +1 -1
package/out/fdc3-api-alpha.d.ts
CHANGED
|
@@ -3826,6 +3826,14 @@ declare type ConstWindowOptions = {
|
|
|
3826
3826
|
* @default false
|
|
3827
3827
|
*/
|
|
3828
3828
|
backgroundThrottling: boolean;
|
|
3829
|
+
/**
|
|
3830
|
+
* If `true`, the window is registered with Chromium as a `ChromeBrowser`,
|
|
3831
|
+
* making it visible to Chrome extensions via the `chrome.windows` API.
|
|
3832
|
+
* The window must be created with this option set; it cannot be flipped at runtime.
|
|
3833
|
+
*
|
|
3834
|
+
* @defaultValue false
|
|
3835
|
+
*/
|
|
3836
|
+
chromeBrowser: boolean;
|
|
3829
3837
|
/**
|
|
3830
3838
|
* Configures how new content (e,g, from `window.open` or a link) is opened.
|
|
3831
3839
|
*/
|
|
@@ -8782,6 +8790,19 @@ declare class Layout extends Base {
|
|
|
8782
8790
|
*/
|
|
8783
8791
|
declare type LayoutAccessibilityOptions = {
|
|
8784
8792
|
viewTabOptions?: ViewTabAccessibilityOptions;
|
|
8793
|
+
/**
|
|
8794
|
+
* Keyboard shortcut used to move focus from a tab header element into the active tab's web content.
|
|
8795
|
+
*
|
|
8796
|
+
* - Accepts an accelerator-like string, e.g. `'Ctrl+Enter'`, `'Meta+Enter'`, `'Alt+Enter'`, `'Mod+Enter'`.
|
|
8797
|
+
* - `'Mod'`/`'CmdOrCtrl'`/`'CtrlOrMeta'` means Ctrl on Windows/Linux or Meta on macOS.
|
|
8798
|
+
* - Set to `false` to disable this shortcut.
|
|
8799
|
+
* - In core-web, reverse focus transfer (from iframe web content back to tab header) is not reliably supportable
|
|
8800
|
+
* due to browser iframe security and cross-origin focus restrictions. This hotkey is intentionally one-way:
|
|
8801
|
+
* tab header -> web content.
|
|
8802
|
+
*
|
|
8803
|
+
* @defaultValue 'Mod+Enter'
|
|
8804
|
+
*/
|
|
8805
|
+
focusContentHotkey?: string | false;
|
|
8785
8806
|
};
|
|
8786
8807
|
|
|
8787
8808
|
/**
|
|
@@ -9531,6 +9552,15 @@ declare type LogUploadOptions = {
|
|
|
9531
9552
|
* Max file size limit in Megabytes for the logs archive.
|
|
9532
9553
|
*/
|
|
9533
9554
|
sizeLimit?: number;
|
|
9555
|
+
/**
|
|
9556
|
+
* HTTP method used to upload the log archive.
|
|
9557
|
+
* Accepted values are `'POST'` and `'PUT'` (case-insensitive; values are normalised to uppercase before validation).
|
|
9558
|
+
* - `POST` sends a multipart `FormData` request (current behaviour).
|
|
9559
|
+
* - `PUT` sends the raw zip binary with an explicit `Content-Length` and no `Content-Type` header,
|
|
9560
|
+
* suitable for endpoints that expect a raw body (e.g. pre-signed upload URLs).
|
|
9561
|
+
* @defaultValue 'POST'
|
|
9562
|
+
*/
|
|
9563
|
+
method?: 'POST' | 'PUT';
|
|
9534
9564
|
};
|
|
9535
9565
|
|
|
9536
9566
|
/**
|
package/out/fdc3-api-beta.d.ts
CHANGED
|
@@ -3826,6 +3826,14 @@ declare type ConstWindowOptions = {
|
|
|
3826
3826
|
* @default false
|
|
3827
3827
|
*/
|
|
3828
3828
|
backgroundThrottling: boolean;
|
|
3829
|
+
/**
|
|
3830
|
+
* If `true`, the window is registered with Chromium as a `ChromeBrowser`,
|
|
3831
|
+
* making it visible to Chrome extensions via the `chrome.windows` API.
|
|
3832
|
+
* The window must be created with this option set; it cannot be flipped at runtime.
|
|
3833
|
+
*
|
|
3834
|
+
* @defaultValue false
|
|
3835
|
+
*/
|
|
3836
|
+
chromeBrowser: boolean;
|
|
3829
3837
|
/**
|
|
3830
3838
|
* Configures how new content (e,g, from `window.open` or a link) is opened.
|
|
3831
3839
|
*/
|
|
@@ -8782,6 +8790,19 @@ declare class Layout extends Base {
|
|
|
8782
8790
|
*/
|
|
8783
8791
|
declare type LayoutAccessibilityOptions = {
|
|
8784
8792
|
viewTabOptions?: ViewTabAccessibilityOptions;
|
|
8793
|
+
/**
|
|
8794
|
+
* Keyboard shortcut used to move focus from a tab header element into the active tab's web content.
|
|
8795
|
+
*
|
|
8796
|
+
* - Accepts an accelerator-like string, e.g. `'Ctrl+Enter'`, `'Meta+Enter'`, `'Alt+Enter'`, `'Mod+Enter'`.
|
|
8797
|
+
* - `'Mod'`/`'CmdOrCtrl'`/`'CtrlOrMeta'` means Ctrl on Windows/Linux or Meta on macOS.
|
|
8798
|
+
* - Set to `false` to disable this shortcut.
|
|
8799
|
+
* - In core-web, reverse focus transfer (from iframe web content back to tab header) is not reliably supportable
|
|
8800
|
+
* due to browser iframe security and cross-origin focus restrictions. This hotkey is intentionally one-way:
|
|
8801
|
+
* tab header -> web content.
|
|
8802
|
+
*
|
|
8803
|
+
* @defaultValue 'Mod+Enter'
|
|
8804
|
+
*/
|
|
8805
|
+
focusContentHotkey?: string | false;
|
|
8785
8806
|
};
|
|
8786
8807
|
|
|
8787
8808
|
/**
|
|
@@ -9531,6 +9552,15 @@ declare type LogUploadOptions = {
|
|
|
9531
9552
|
* Max file size limit in Megabytes for the logs archive.
|
|
9532
9553
|
*/
|
|
9533
9554
|
sizeLimit?: number;
|
|
9555
|
+
/**
|
|
9556
|
+
* HTTP method used to upload the log archive.
|
|
9557
|
+
* Accepted values are `'POST'` and `'PUT'` (case-insensitive; values are normalised to uppercase before validation).
|
|
9558
|
+
* - `POST` sends a multipart `FormData` request (current behaviour).
|
|
9559
|
+
* - `PUT` sends the raw zip binary with an explicit `Content-Length` and no `Content-Type` header,
|
|
9560
|
+
* suitable for endpoints that expect a raw body (e.g. pre-signed upload URLs).
|
|
9561
|
+
* @defaultValue 'POST'
|
|
9562
|
+
*/
|
|
9563
|
+
method?: 'POST' | 'PUT';
|
|
9534
9564
|
};
|
|
9535
9565
|
|
|
9536
9566
|
/**
|
package/out/fdc3-api-public.d.ts
CHANGED
|
@@ -3826,6 +3826,14 @@ declare type ConstWindowOptions = {
|
|
|
3826
3826
|
* @default false
|
|
3827
3827
|
*/
|
|
3828
3828
|
backgroundThrottling: boolean;
|
|
3829
|
+
/**
|
|
3830
|
+
* If `true`, the window is registered with Chromium as a `ChromeBrowser`,
|
|
3831
|
+
* making it visible to Chrome extensions via the `chrome.windows` API.
|
|
3832
|
+
* The window must be created with this option set; it cannot be flipped at runtime.
|
|
3833
|
+
*
|
|
3834
|
+
* @defaultValue false
|
|
3835
|
+
*/
|
|
3836
|
+
chromeBrowser: boolean;
|
|
3829
3837
|
/**
|
|
3830
3838
|
* Configures how new content (e,g, from `window.open` or a link) is opened.
|
|
3831
3839
|
*/
|
|
@@ -8782,6 +8790,19 @@ declare class Layout extends Base {
|
|
|
8782
8790
|
*/
|
|
8783
8791
|
declare type LayoutAccessibilityOptions = {
|
|
8784
8792
|
viewTabOptions?: ViewTabAccessibilityOptions;
|
|
8793
|
+
/**
|
|
8794
|
+
* Keyboard shortcut used to move focus from a tab header element into the active tab's web content.
|
|
8795
|
+
*
|
|
8796
|
+
* - Accepts an accelerator-like string, e.g. `'Ctrl+Enter'`, `'Meta+Enter'`, `'Alt+Enter'`, `'Mod+Enter'`.
|
|
8797
|
+
* - `'Mod'`/`'CmdOrCtrl'`/`'CtrlOrMeta'` means Ctrl on Windows/Linux or Meta on macOS.
|
|
8798
|
+
* - Set to `false` to disable this shortcut.
|
|
8799
|
+
* - In core-web, reverse focus transfer (from iframe web content back to tab header) is not reliably supportable
|
|
8800
|
+
* due to browser iframe security and cross-origin focus restrictions. This hotkey is intentionally one-way:
|
|
8801
|
+
* tab header -> web content.
|
|
8802
|
+
*
|
|
8803
|
+
* @defaultValue 'Mod+Enter'
|
|
8804
|
+
*/
|
|
8805
|
+
focusContentHotkey?: string | false;
|
|
8785
8806
|
};
|
|
8786
8807
|
|
|
8787
8808
|
/**
|
|
@@ -9531,6 +9552,15 @@ declare type LogUploadOptions = {
|
|
|
9531
9552
|
* Max file size limit in Megabytes for the logs archive.
|
|
9532
9553
|
*/
|
|
9533
9554
|
sizeLimit?: number;
|
|
9555
|
+
/**
|
|
9556
|
+
* HTTP method used to upload the log archive.
|
|
9557
|
+
* Accepted values are `'POST'` and `'PUT'` (case-insensitive; values are normalised to uppercase before validation).
|
|
9558
|
+
* - `POST` sends a multipart `FormData` request (current behaviour).
|
|
9559
|
+
* - `PUT` sends the raw zip binary with an explicit `Content-Length` and no `Content-Type` header,
|
|
9560
|
+
* suitable for endpoints that expect a raw body (e.g. pre-signed upload URLs).
|
|
9561
|
+
* @defaultValue 'POST'
|
|
9562
|
+
*/
|
|
9563
|
+
method?: 'POST' | 'PUT';
|
|
9534
9564
|
};
|
|
9535
9565
|
|
|
9536
9566
|
/**
|
package/out/fdc3-api.d.ts
CHANGED
|
@@ -3885,6 +3885,14 @@ declare type ConstWindowOptions = {
|
|
|
3885
3885
|
* @default false
|
|
3886
3886
|
*/
|
|
3887
3887
|
backgroundThrottling: boolean;
|
|
3888
|
+
/**
|
|
3889
|
+
* If `true`, the window is registered with Chromium as a `ChromeBrowser`,
|
|
3890
|
+
* making it visible to Chrome extensions via the `chrome.windows` API.
|
|
3891
|
+
* The window must be created with this option set; it cannot be flipped at runtime.
|
|
3892
|
+
*
|
|
3893
|
+
* @defaultValue false
|
|
3894
|
+
*/
|
|
3895
|
+
chromeBrowser: boolean;
|
|
3888
3896
|
/**
|
|
3889
3897
|
* Configures how new content (e,g, from `window.open` or a link) is opened.
|
|
3890
3898
|
*/
|
|
@@ -8908,6 +8916,19 @@ declare class Layout extends Base {
|
|
|
8908
8916
|
*/
|
|
8909
8917
|
declare type LayoutAccessibilityOptions = {
|
|
8910
8918
|
viewTabOptions?: ViewTabAccessibilityOptions;
|
|
8919
|
+
/**
|
|
8920
|
+
* Keyboard shortcut used to move focus from a tab header element into the active tab's web content.
|
|
8921
|
+
*
|
|
8922
|
+
* - Accepts an accelerator-like string, e.g. `'Ctrl+Enter'`, `'Meta+Enter'`, `'Alt+Enter'`, `'Mod+Enter'`.
|
|
8923
|
+
* - `'Mod'`/`'CmdOrCtrl'`/`'CtrlOrMeta'` means Ctrl on Windows/Linux or Meta on macOS.
|
|
8924
|
+
* - Set to `false` to disable this shortcut.
|
|
8925
|
+
* - In core-web, reverse focus transfer (from iframe web content back to tab header) is not reliably supportable
|
|
8926
|
+
* due to browser iframe security and cross-origin focus restrictions. This hotkey is intentionally one-way:
|
|
8927
|
+
* tab header -> web content.
|
|
8928
|
+
*
|
|
8929
|
+
* @defaultValue 'Mod+Enter'
|
|
8930
|
+
*/
|
|
8931
|
+
focusContentHotkey?: string | false;
|
|
8911
8932
|
};
|
|
8912
8933
|
|
|
8913
8934
|
/**
|
|
@@ -9840,6 +9861,15 @@ declare type LogUploadOptions = {
|
|
|
9840
9861
|
* Max file size limit in Megabytes for the logs archive.
|
|
9841
9862
|
*/
|
|
9842
9863
|
sizeLimit?: number;
|
|
9864
|
+
/**
|
|
9865
|
+
* HTTP method used to upload the log archive.
|
|
9866
|
+
* Accepted values are `'POST'` and `'PUT'` (case-insensitive; values are normalised to uppercase before validation).
|
|
9867
|
+
* - `POST` sends a multipart `FormData` request (current behaviour).
|
|
9868
|
+
* - `PUT` sends the raw zip binary with an explicit `Content-Length` and no `Content-Type` header,
|
|
9869
|
+
* suitable for endpoints that expect a raw body (e.g. pre-signed upload URLs).
|
|
9870
|
+
* @defaultValue 'POST'
|
|
9871
|
+
*/
|
|
9872
|
+
method?: 'POST' | 'PUT';
|
|
9843
9873
|
};
|
|
9844
9874
|
|
|
9845
9875
|
/**
|