@openfin/core 45.100.70 → 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 +13 -0
- package/out/mock-beta.d.ts +13 -0
- package/out/mock-public.d.ts +13 -0
- package/out/stub.d.ts +13 -0
- package/package.json +1 -1
package/out/mock-alpha.d.ts
CHANGED
|
@@ -8448,6 +8448,19 @@ declare class Layout extends Base {
|
|
|
8448
8448
|
*/
|
|
8449
8449
|
declare type LayoutAccessibilityOptions = {
|
|
8450
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;
|
|
8451
8464
|
};
|
|
8452
8465
|
|
|
8453
8466
|
/**
|
package/out/mock-beta.d.ts
CHANGED
|
@@ -8448,6 +8448,19 @@ declare class Layout extends Base {
|
|
|
8448
8448
|
*/
|
|
8449
8449
|
declare type LayoutAccessibilityOptions = {
|
|
8450
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;
|
|
8451
8464
|
};
|
|
8452
8465
|
|
|
8453
8466
|
/**
|
package/out/mock-public.d.ts
CHANGED
|
@@ -8448,6 +8448,19 @@ declare class Layout extends Base {
|
|
|
8448
8448
|
*/
|
|
8449
8449
|
declare type LayoutAccessibilityOptions = {
|
|
8450
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;
|
|
8451
8464
|
};
|
|
8452
8465
|
|
|
8453
8466
|
/**
|
package/out/stub.d.ts
CHANGED
|
@@ -8574,6 +8574,19 @@ declare class Layout extends Base {
|
|
|
8574
8574
|
*/
|
|
8575
8575
|
declare type LayoutAccessibilityOptions = {
|
|
8576
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;
|
|
8577
8590
|
};
|
|
8578
8591
|
|
|
8579
8592
|
/**
|