@openfin/core 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/mock-alpha.d.ts +30 -0
- package/out/mock-beta.d.ts +30 -0
- package/out/mock-public.d.ts +30 -0
- package/out/stub.d.ts +30 -0
- package/package.json +1 -1
package/out/mock-alpha.d.ts
CHANGED
|
@@ -3829,6 +3829,14 @@ declare type ConstWindowOptions = {
|
|
|
3829
3829
|
* @default false
|
|
3830
3830
|
*/
|
|
3831
3831
|
backgroundThrottling: boolean;
|
|
3832
|
+
/**
|
|
3833
|
+
* If `true`, the window is registered with Chromium as a `ChromeBrowser`,
|
|
3834
|
+
* making it visible to Chrome extensions via the `chrome.windows` API.
|
|
3835
|
+
* The window must be created with this option set; it cannot be flipped at runtime.
|
|
3836
|
+
*
|
|
3837
|
+
* @defaultValue false
|
|
3838
|
+
*/
|
|
3839
|
+
chromeBrowser: boolean;
|
|
3832
3840
|
/**
|
|
3833
3841
|
* Configures how new content (e,g, from `window.open` or a link) is opened.
|
|
3834
3842
|
*/
|
|
@@ -8440,6 +8448,19 @@ declare class Layout extends Base {
|
|
|
8440
8448
|
*/
|
|
8441
8449
|
declare type LayoutAccessibilityOptions = {
|
|
8442
8450
|
viewTabOptions?: ViewTabAccessibilityOptions;
|
|
8451
|
+
/**
|
|
8452
|
+
* Keyboard shortcut used to move focus from a tab header element into the active tab's web content.
|
|
8453
|
+
*
|
|
8454
|
+
* - Accepts an accelerator-like string, e.g. `'Ctrl+Enter'`, `'Meta+Enter'`, `'Alt+Enter'`, `'Mod+Enter'`.
|
|
8455
|
+
* - `'Mod'`/`'CmdOrCtrl'`/`'CtrlOrMeta'` means Ctrl on Windows/Linux or Meta on macOS.
|
|
8456
|
+
* - Set to `false` to disable this shortcut.
|
|
8457
|
+
* - In core-web, reverse focus transfer (from iframe web content back to tab header) is not reliably supportable
|
|
8458
|
+
* due to browser iframe security and cross-origin focus restrictions. This hotkey is intentionally one-way:
|
|
8459
|
+
* tab header -> web content.
|
|
8460
|
+
*
|
|
8461
|
+
* @defaultValue 'Mod+Enter'
|
|
8462
|
+
*/
|
|
8463
|
+
focusContentHotkey?: string | false;
|
|
8443
8464
|
};
|
|
8444
8465
|
|
|
8445
8466
|
/**
|
|
@@ -9189,6 +9210,15 @@ declare type LogUploadOptions = {
|
|
|
9189
9210
|
* Max file size limit in Megabytes for the logs archive.
|
|
9190
9211
|
*/
|
|
9191
9212
|
sizeLimit?: number;
|
|
9213
|
+
/**
|
|
9214
|
+
* HTTP method used to upload the log archive.
|
|
9215
|
+
* Accepted values are `'POST'` and `'PUT'` (case-insensitive; values are normalised to uppercase before validation).
|
|
9216
|
+
* - `POST` sends a multipart `FormData` request (current behaviour).
|
|
9217
|
+
* - `PUT` sends the raw zip binary with an explicit `Content-Length` and no `Content-Type` header,
|
|
9218
|
+
* suitable for endpoints that expect a raw body (e.g. pre-signed upload URLs).
|
|
9219
|
+
* @defaultValue 'POST'
|
|
9220
|
+
*/
|
|
9221
|
+
method?: 'POST' | 'PUT';
|
|
9192
9222
|
};
|
|
9193
9223
|
|
|
9194
9224
|
/**
|
package/out/mock-beta.d.ts
CHANGED
|
@@ -3829,6 +3829,14 @@ declare type ConstWindowOptions = {
|
|
|
3829
3829
|
* @default false
|
|
3830
3830
|
*/
|
|
3831
3831
|
backgroundThrottling: boolean;
|
|
3832
|
+
/**
|
|
3833
|
+
* If `true`, the window is registered with Chromium as a `ChromeBrowser`,
|
|
3834
|
+
* making it visible to Chrome extensions via the `chrome.windows` API.
|
|
3835
|
+
* The window must be created with this option set; it cannot be flipped at runtime.
|
|
3836
|
+
*
|
|
3837
|
+
* @defaultValue false
|
|
3838
|
+
*/
|
|
3839
|
+
chromeBrowser: boolean;
|
|
3832
3840
|
/**
|
|
3833
3841
|
* Configures how new content (e,g, from `window.open` or a link) is opened.
|
|
3834
3842
|
*/
|
|
@@ -8440,6 +8448,19 @@ declare class Layout extends Base {
|
|
|
8440
8448
|
*/
|
|
8441
8449
|
declare type LayoutAccessibilityOptions = {
|
|
8442
8450
|
viewTabOptions?: ViewTabAccessibilityOptions;
|
|
8451
|
+
/**
|
|
8452
|
+
* Keyboard shortcut used to move focus from a tab header element into the active tab's web content.
|
|
8453
|
+
*
|
|
8454
|
+
* - Accepts an accelerator-like string, e.g. `'Ctrl+Enter'`, `'Meta+Enter'`, `'Alt+Enter'`, `'Mod+Enter'`.
|
|
8455
|
+
* - `'Mod'`/`'CmdOrCtrl'`/`'CtrlOrMeta'` means Ctrl on Windows/Linux or Meta on macOS.
|
|
8456
|
+
* - Set to `false` to disable this shortcut.
|
|
8457
|
+
* - In core-web, reverse focus transfer (from iframe web content back to tab header) is not reliably supportable
|
|
8458
|
+
* due to browser iframe security and cross-origin focus restrictions. This hotkey is intentionally one-way:
|
|
8459
|
+
* tab header -> web content.
|
|
8460
|
+
*
|
|
8461
|
+
* @defaultValue 'Mod+Enter'
|
|
8462
|
+
*/
|
|
8463
|
+
focusContentHotkey?: string | false;
|
|
8443
8464
|
};
|
|
8444
8465
|
|
|
8445
8466
|
/**
|
|
@@ -9189,6 +9210,15 @@ declare type LogUploadOptions = {
|
|
|
9189
9210
|
* Max file size limit in Megabytes for the logs archive.
|
|
9190
9211
|
*/
|
|
9191
9212
|
sizeLimit?: number;
|
|
9213
|
+
/**
|
|
9214
|
+
* HTTP method used to upload the log archive.
|
|
9215
|
+
* Accepted values are `'POST'` and `'PUT'` (case-insensitive; values are normalised to uppercase before validation).
|
|
9216
|
+
* - `POST` sends a multipart `FormData` request (current behaviour).
|
|
9217
|
+
* - `PUT` sends the raw zip binary with an explicit `Content-Length` and no `Content-Type` header,
|
|
9218
|
+
* suitable for endpoints that expect a raw body (e.g. pre-signed upload URLs).
|
|
9219
|
+
* @defaultValue 'POST'
|
|
9220
|
+
*/
|
|
9221
|
+
method?: 'POST' | 'PUT';
|
|
9192
9222
|
};
|
|
9193
9223
|
|
|
9194
9224
|
/**
|
package/out/mock-public.d.ts
CHANGED
|
@@ -3829,6 +3829,14 @@ declare type ConstWindowOptions = {
|
|
|
3829
3829
|
* @default false
|
|
3830
3830
|
*/
|
|
3831
3831
|
backgroundThrottling: boolean;
|
|
3832
|
+
/**
|
|
3833
|
+
* If `true`, the window is registered with Chromium as a `ChromeBrowser`,
|
|
3834
|
+
* making it visible to Chrome extensions via the `chrome.windows` API.
|
|
3835
|
+
* The window must be created with this option set; it cannot be flipped at runtime.
|
|
3836
|
+
*
|
|
3837
|
+
* @defaultValue false
|
|
3838
|
+
*/
|
|
3839
|
+
chromeBrowser: boolean;
|
|
3832
3840
|
/**
|
|
3833
3841
|
* Configures how new content (e,g, from `window.open` or a link) is opened.
|
|
3834
3842
|
*/
|
|
@@ -8440,6 +8448,19 @@ declare class Layout extends Base {
|
|
|
8440
8448
|
*/
|
|
8441
8449
|
declare type LayoutAccessibilityOptions = {
|
|
8442
8450
|
viewTabOptions?: ViewTabAccessibilityOptions;
|
|
8451
|
+
/**
|
|
8452
|
+
* Keyboard shortcut used to move focus from a tab header element into the active tab's web content.
|
|
8453
|
+
*
|
|
8454
|
+
* - Accepts an accelerator-like string, e.g. `'Ctrl+Enter'`, `'Meta+Enter'`, `'Alt+Enter'`, `'Mod+Enter'`.
|
|
8455
|
+
* - `'Mod'`/`'CmdOrCtrl'`/`'CtrlOrMeta'` means Ctrl on Windows/Linux or Meta on macOS.
|
|
8456
|
+
* - Set to `false` to disable this shortcut.
|
|
8457
|
+
* - In core-web, reverse focus transfer (from iframe web content back to tab header) is not reliably supportable
|
|
8458
|
+
* due to browser iframe security and cross-origin focus restrictions. This hotkey is intentionally one-way:
|
|
8459
|
+
* tab header -> web content.
|
|
8460
|
+
*
|
|
8461
|
+
* @defaultValue 'Mod+Enter'
|
|
8462
|
+
*/
|
|
8463
|
+
focusContentHotkey?: string | false;
|
|
8443
8464
|
};
|
|
8444
8465
|
|
|
8445
8466
|
/**
|
|
@@ -9189,6 +9210,15 @@ declare type LogUploadOptions = {
|
|
|
9189
9210
|
* Max file size limit in Megabytes for the logs archive.
|
|
9190
9211
|
*/
|
|
9191
9212
|
sizeLimit?: number;
|
|
9213
|
+
/**
|
|
9214
|
+
* HTTP method used to upload the log archive.
|
|
9215
|
+
* Accepted values are `'POST'` and `'PUT'` (case-insensitive; values are normalised to uppercase before validation).
|
|
9216
|
+
* - `POST` sends a multipart `FormData` request (current behaviour).
|
|
9217
|
+
* - `PUT` sends the raw zip binary with an explicit `Content-Length` and no `Content-Type` header,
|
|
9218
|
+
* suitable for endpoints that expect a raw body (e.g. pre-signed upload URLs).
|
|
9219
|
+
* @defaultValue 'POST'
|
|
9220
|
+
*/
|
|
9221
|
+
method?: 'POST' | 'PUT';
|
|
9192
9222
|
};
|
|
9193
9223
|
|
|
9194
9224
|
/**
|
package/out/stub.d.ts
CHANGED
|
@@ -3888,6 +3888,14 @@ declare type ConstWindowOptions = {
|
|
|
3888
3888
|
* @default false
|
|
3889
3889
|
*/
|
|
3890
3890
|
backgroundThrottling: boolean;
|
|
3891
|
+
/**
|
|
3892
|
+
* If `true`, the window is registered with Chromium as a `ChromeBrowser`,
|
|
3893
|
+
* making it visible to Chrome extensions via the `chrome.windows` API.
|
|
3894
|
+
* The window must be created with this option set; it cannot be flipped at runtime.
|
|
3895
|
+
*
|
|
3896
|
+
* @defaultValue false
|
|
3897
|
+
*/
|
|
3898
|
+
chromeBrowser: boolean;
|
|
3891
3899
|
/**
|
|
3892
3900
|
* Configures how new content (e,g, from `window.open` or a link) is opened.
|
|
3893
3901
|
*/
|
|
@@ -8566,6 +8574,19 @@ declare class Layout extends Base {
|
|
|
8566
8574
|
*/
|
|
8567
8575
|
declare type LayoutAccessibilityOptions = {
|
|
8568
8576
|
viewTabOptions?: ViewTabAccessibilityOptions;
|
|
8577
|
+
/**
|
|
8578
|
+
* Keyboard shortcut used to move focus from a tab header element into the active tab's web content.
|
|
8579
|
+
*
|
|
8580
|
+
* - Accepts an accelerator-like string, e.g. `'Ctrl+Enter'`, `'Meta+Enter'`, `'Alt+Enter'`, `'Mod+Enter'`.
|
|
8581
|
+
* - `'Mod'`/`'CmdOrCtrl'`/`'CtrlOrMeta'` means Ctrl on Windows/Linux or Meta on macOS.
|
|
8582
|
+
* - Set to `false` to disable this shortcut.
|
|
8583
|
+
* - In core-web, reverse focus transfer (from iframe web content back to tab header) is not reliably supportable
|
|
8584
|
+
* due to browser iframe security and cross-origin focus restrictions. This hotkey is intentionally one-way:
|
|
8585
|
+
* tab header -> web content.
|
|
8586
|
+
*
|
|
8587
|
+
* @defaultValue 'Mod+Enter'
|
|
8588
|
+
*/
|
|
8589
|
+
focusContentHotkey?: string | false;
|
|
8569
8590
|
};
|
|
8570
8591
|
|
|
8571
8592
|
/**
|
|
@@ -9498,6 +9519,15 @@ declare type LogUploadOptions = {
|
|
|
9498
9519
|
* Max file size limit in Megabytes for the logs archive.
|
|
9499
9520
|
*/
|
|
9500
9521
|
sizeLimit?: number;
|
|
9522
|
+
/**
|
|
9523
|
+
* HTTP method used to upload the log archive.
|
|
9524
|
+
* Accepted values are `'POST'` and `'PUT'` (case-insensitive; values are normalised to uppercase before validation).
|
|
9525
|
+
* - `POST` sends a multipart `FormData` request (current behaviour).
|
|
9526
|
+
* - `PUT` sends the raw zip binary with an explicit `Content-Length` and no `Content-Type` header,
|
|
9527
|
+
* suitable for endpoints that expect a raw body (e.g. pre-signed upload URLs).
|
|
9528
|
+
* @defaultValue 'POST'
|
|
9529
|
+
*/
|
|
9530
|
+
method?: 'POST' | 'PUT';
|
|
9501
9531
|
};
|
|
9502
9532
|
|
|
9503
9533
|
/**
|