@openfin/fdc3-api 43.100.106 → 43.100.109
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
|
@@ -6624,7 +6624,28 @@ declare type Hotkey = {
|
|
|
6624
6624
|
*/
|
|
6625
6625
|
keys: string;
|
|
6626
6626
|
/**
|
|
6627
|
-
*
|
|
6627
|
+
* Controls the event phase at which the hotkey is triggered.
|
|
6628
|
+
*
|
|
6629
|
+
* - `'capture'`: The hotkey fires **before** the event is sent to the renderer/page.
|
|
6630
|
+
* This is the only phase where the `preventDefault` property is effective.
|
|
6631
|
+
*
|
|
6632
|
+
* - `'bubble'`: The hotkey fires **after** the page has processed the key event.
|
|
6633
|
+
* This behaves exactly like a standard JavaScript event listener attached to the window:
|
|
6634
|
+
* 1. If the page calls `event.preventDefault()` (on either **keydown** or **keyup**), this hotkey will **not** fire.
|
|
6635
|
+
* 2. If the hotkey is browser-reserved (e.g. `Ctrl+Tab` to switch tabs for which keyup/keydown do not fire in a web browser), that action takes precedence and this hotkey will **not** fire.
|
|
6636
|
+
*
|
|
6637
|
+
* @default 'capture'
|
|
6638
|
+
*/
|
|
6639
|
+
phase?: 'capture' | 'bubble';
|
|
6640
|
+
/**
|
|
6641
|
+
* Determines if the event should continue to the renderer.
|
|
6642
|
+
*
|
|
6643
|
+
* - `true`: The event is consumed immediately. It will **never** reach the renderer/page.
|
|
6644
|
+
* - `false`: The event is sent to the renderer after this hotkey executes.
|
|
6645
|
+
*
|
|
6646
|
+
* @remarks
|
|
6647
|
+
* This property is **only valid** when `phase` is set to `'capture'`.
|
|
6648
|
+
* If `phase` is `'bubble'`, this property is ignored (as the renderer has already received and processed the event).
|
|
6628
6649
|
*
|
|
6629
6650
|
* @default false
|
|
6630
6651
|
*/
|
package/out/fdc3-api-beta.d.ts
CHANGED
|
@@ -6624,7 +6624,28 @@ declare type Hotkey = {
|
|
|
6624
6624
|
*/
|
|
6625
6625
|
keys: string;
|
|
6626
6626
|
/**
|
|
6627
|
-
*
|
|
6627
|
+
* Controls the event phase at which the hotkey is triggered.
|
|
6628
|
+
*
|
|
6629
|
+
* - `'capture'`: The hotkey fires **before** the event is sent to the renderer/page.
|
|
6630
|
+
* This is the only phase where the `preventDefault` property is effective.
|
|
6631
|
+
*
|
|
6632
|
+
* - `'bubble'`: The hotkey fires **after** the page has processed the key event.
|
|
6633
|
+
* This behaves exactly like a standard JavaScript event listener attached to the window:
|
|
6634
|
+
* 1. If the page calls `event.preventDefault()` (on either **keydown** or **keyup**), this hotkey will **not** fire.
|
|
6635
|
+
* 2. If the hotkey is browser-reserved (e.g. `Ctrl+Tab` to switch tabs for which keyup/keydown do not fire in a web browser), that action takes precedence and this hotkey will **not** fire.
|
|
6636
|
+
*
|
|
6637
|
+
* @default 'capture'
|
|
6638
|
+
*/
|
|
6639
|
+
phase?: 'capture' | 'bubble';
|
|
6640
|
+
/**
|
|
6641
|
+
* Determines if the event should continue to the renderer.
|
|
6642
|
+
*
|
|
6643
|
+
* - `true`: The event is consumed immediately. It will **never** reach the renderer/page.
|
|
6644
|
+
* - `false`: The event is sent to the renderer after this hotkey executes.
|
|
6645
|
+
*
|
|
6646
|
+
* @remarks
|
|
6647
|
+
* This property is **only valid** when `phase` is set to `'capture'`.
|
|
6648
|
+
* If `phase` is `'bubble'`, this property is ignored (as the renderer has already received and processed the event).
|
|
6628
6649
|
*
|
|
6629
6650
|
* @default false
|
|
6630
6651
|
*/
|
package/out/fdc3-api-public.d.ts
CHANGED
|
@@ -6624,7 +6624,28 @@ declare type Hotkey = {
|
|
|
6624
6624
|
*/
|
|
6625
6625
|
keys: string;
|
|
6626
6626
|
/**
|
|
6627
|
-
*
|
|
6627
|
+
* Controls the event phase at which the hotkey is triggered.
|
|
6628
|
+
*
|
|
6629
|
+
* - `'capture'`: The hotkey fires **before** the event is sent to the renderer/page.
|
|
6630
|
+
* This is the only phase where the `preventDefault` property is effective.
|
|
6631
|
+
*
|
|
6632
|
+
* - `'bubble'`: The hotkey fires **after** the page has processed the key event.
|
|
6633
|
+
* This behaves exactly like a standard JavaScript event listener attached to the window:
|
|
6634
|
+
* 1. If the page calls `event.preventDefault()` (on either **keydown** or **keyup**), this hotkey will **not** fire.
|
|
6635
|
+
* 2. If the hotkey is browser-reserved (e.g. `Ctrl+Tab` to switch tabs for which keyup/keydown do not fire in a web browser), that action takes precedence and this hotkey will **not** fire.
|
|
6636
|
+
*
|
|
6637
|
+
* @default 'capture'
|
|
6638
|
+
*/
|
|
6639
|
+
phase?: 'capture' | 'bubble';
|
|
6640
|
+
/**
|
|
6641
|
+
* Determines if the event should continue to the renderer.
|
|
6642
|
+
*
|
|
6643
|
+
* - `true`: The event is consumed immediately. It will **never** reach the renderer/page.
|
|
6644
|
+
* - `false`: The event is sent to the renderer after this hotkey executes.
|
|
6645
|
+
*
|
|
6646
|
+
* @remarks
|
|
6647
|
+
* This property is **only valid** when `phase` is set to `'capture'`.
|
|
6648
|
+
* If `phase` is `'bubble'`, this property is ignored (as the renderer has already received and processed the event).
|
|
6628
6649
|
*
|
|
6629
6650
|
* @default false
|
|
6630
6651
|
*/
|
package/out/fdc3-api.d.ts
CHANGED
|
@@ -6715,7 +6715,28 @@ declare type Hotkey = {
|
|
|
6715
6715
|
*/
|
|
6716
6716
|
keys: string;
|
|
6717
6717
|
/**
|
|
6718
|
-
*
|
|
6718
|
+
* Controls the event phase at which the hotkey is triggered.
|
|
6719
|
+
*
|
|
6720
|
+
* - `'capture'`: The hotkey fires **before** the event is sent to the renderer/page.
|
|
6721
|
+
* This is the only phase where the `preventDefault` property is effective.
|
|
6722
|
+
*
|
|
6723
|
+
* - `'bubble'`: The hotkey fires **after** the page has processed the key event.
|
|
6724
|
+
* This behaves exactly like a standard JavaScript event listener attached to the window:
|
|
6725
|
+
* 1. If the page calls `event.preventDefault()` (on either **keydown** or **keyup**), this hotkey will **not** fire.
|
|
6726
|
+
* 2. If the hotkey is browser-reserved (e.g. `Ctrl+Tab` to switch tabs for which keyup/keydown do not fire in a web browser), that action takes precedence and this hotkey will **not** fire.
|
|
6727
|
+
*
|
|
6728
|
+
* @default 'capture'
|
|
6729
|
+
*/
|
|
6730
|
+
phase?: 'capture' | 'bubble';
|
|
6731
|
+
/**
|
|
6732
|
+
* Determines if the event should continue to the renderer.
|
|
6733
|
+
*
|
|
6734
|
+
* - `true`: The event is consumed immediately. It will **never** reach the renderer/page.
|
|
6735
|
+
* - `false`: The event is sent to the renderer after this hotkey executes.
|
|
6736
|
+
*
|
|
6737
|
+
* @remarks
|
|
6738
|
+
* This property is **only valid** when `phase` is set to `'capture'`.
|
|
6739
|
+
* If `phase` is `'bubble'`, this property is ignored (as the renderer has already received and processed the event).
|
|
6719
6740
|
*
|
|
6720
6741
|
* @default false
|
|
6721
6742
|
*/
|