@openfin/fdc3-api 43.100.106 → 43.100.110

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.
@@ -1418,29 +1418,26 @@ declare type ApplicationWindowInfo = {
1418
1418
  };
1419
1419
 
1420
1420
  /**
1421
- * `appLogLevel` allows the verbosity of app logs that are collected for a Window or View to be controlled when the app logging feature is enabled for its application.
1421
+ * The `appLogLevel` option allows the verbosity of app logs that are collected for a Window or View to be controlled for its application.
1422
1422
  *
1423
- * Please note, `enableAppLogging` must be specified in the application manifest's `platform` or `startup_app` key for this feature to be activated.
1424
- *
1425
- * If not specified, and `enableAppLogging` is true for the application, the default level will be 'silent'.
1426
- *
1427
- * This setting can also be specified in a Domain Setting Rule, allowing per url exceptions to the default behavior to be made. Please note, when a domain setting is actively
1428
- * controlling a url's appLogLevel, its options will be ignored.
1423
+ * This setting can also be specified in a Domain Setting Rule, allowing per url overrides to be defined. Please note, when a domain setting is actively
1424
+ * controlling a url's appLogLevel, its view/window options will be ignored.
1429
1425
  *
1430
1426
  * @default 'debug'
1431
1427
  *
1428
+ * Please note, if the manifest setting `platform.enableAppLogging` or `startup_app.enableAppLogging` is set to `false`, this feature will be disabled.
1429
+ *
1432
1430
  * @example Controlling App Logs With DefaultViewOptions + Domain Settings
1433
1431
  *
1434
1432
  * In this example manifest, we use `defaultViewOptions to set the default verbosity to 'warn'.
1435
1433
  *
1436
- * We also use domain settings to suppress logs entirely for an example URL, and to lower verbosity to 'debug' for another.
1434
+ * We also use domain settings to suppress logs for an example URL, and to lower verbosity to 'debug' for another.
1437
1435
  *
1438
1436
  * ```ts
1439
1437
  * {
1440
1438
  * <rest of settings>
1441
1439
  * "platform": {
1442
1440
  * <rest of settings>
1443
- * "enableAppLogging": "true",
1444
1441
  * "defaultViewOptions": {
1445
1442
  * "appLogLevel": "warn"
1446
1443
  * },
@@ -6624,7 +6621,28 @@ declare type Hotkey = {
6624
6621
  */
6625
6622
  keys: string;
6626
6623
  /**
6627
- * Prevent default key handling before emitting the event.
6624
+ * Controls the event phase at which the hotkey is triggered.
6625
+ *
6626
+ * - `'capture'`: The hotkey fires **before** the event is sent to the renderer/page.
6627
+ * This is the only phase where the `preventDefault` property is effective.
6628
+ *
6629
+ * - `'bubble'`: The hotkey fires **after** the page has processed the key event.
6630
+ * This behaves exactly like a standard JavaScript event listener attached to the window:
6631
+ * 1. If the page calls `event.preventDefault()` (on either **keydown** or **keyup**), this hotkey will **not** fire.
6632
+ * 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.
6633
+ *
6634
+ * @default 'capture'
6635
+ */
6636
+ phase?: 'capture' | 'bubble';
6637
+ /**
6638
+ * Determines if the event should continue to the renderer.
6639
+ *
6640
+ * - `true`: The event is consumed immediately. It will **never** reach the renderer/page.
6641
+ * - `false`: The event is sent to the renderer after this hotkey executes.
6642
+ *
6643
+ * @remarks
6644
+ * This property is **only valid** when `phase` is set to `'capture'`.
6645
+ * If `phase` is `'bubble'`, this property is ignored (as the renderer has already received and processed the event).
6628
6646
  *
6629
6647
  * @default false
6630
6648
  */
@@ -9838,10 +9856,12 @@ declare type MutableWindowOptions = {
9838
9856
  */
9839
9857
  customData: any;
9840
9858
  /**
9841
- * @deprecated Will be removed in runtime version 45
9842
9859
  *
9843
9860
  * Show the window's frame.
9844
9861
  *
9862
+ * @remarks
9863
+ * This property will not be updatable starting runtime version 45.
9864
+ *
9845
9865
  * @default true
9846
9866
  */
9847
9867
  frame: boolean;
@@ -1418,29 +1418,26 @@ declare type ApplicationWindowInfo = {
1418
1418
  };
1419
1419
 
1420
1420
  /**
1421
- * `appLogLevel` allows the verbosity of app logs that are collected for a Window or View to be controlled when the app logging feature is enabled for its application.
1421
+ * The `appLogLevel` option allows the verbosity of app logs that are collected for a Window or View to be controlled for its application.
1422
1422
  *
1423
- * Please note, `enableAppLogging` must be specified in the application manifest's `platform` or `startup_app` key for this feature to be activated.
1424
- *
1425
- * If not specified, and `enableAppLogging` is true for the application, the default level will be 'silent'.
1426
- *
1427
- * This setting can also be specified in a Domain Setting Rule, allowing per url exceptions to the default behavior to be made. Please note, when a domain setting is actively
1428
- * controlling a url's appLogLevel, its options will be ignored.
1423
+ * This setting can also be specified in a Domain Setting Rule, allowing per url overrides to be defined. Please note, when a domain setting is actively
1424
+ * controlling a url's appLogLevel, its view/window options will be ignored.
1429
1425
  *
1430
1426
  * @default 'debug'
1431
1427
  *
1428
+ * Please note, if the manifest setting `platform.enableAppLogging` or `startup_app.enableAppLogging` is set to `false`, this feature will be disabled.
1429
+ *
1432
1430
  * @example Controlling App Logs With DefaultViewOptions + Domain Settings
1433
1431
  *
1434
1432
  * In this example manifest, we use `defaultViewOptions to set the default verbosity to 'warn'.
1435
1433
  *
1436
- * We also use domain settings to suppress logs entirely for an example URL, and to lower verbosity to 'debug' for another.
1434
+ * We also use domain settings to suppress logs for an example URL, and to lower verbosity to 'debug' for another.
1437
1435
  *
1438
1436
  * ```ts
1439
1437
  * {
1440
1438
  * <rest of settings>
1441
1439
  * "platform": {
1442
1440
  * <rest of settings>
1443
- * "enableAppLogging": "true",
1444
1441
  * "defaultViewOptions": {
1445
1442
  * "appLogLevel": "warn"
1446
1443
  * },
@@ -6624,7 +6621,28 @@ declare type Hotkey = {
6624
6621
  */
6625
6622
  keys: string;
6626
6623
  /**
6627
- * Prevent default key handling before emitting the event.
6624
+ * Controls the event phase at which the hotkey is triggered.
6625
+ *
6626
+ * - `'capture'`: The hotkey fires **before** the event is sent to the renderer/page.
6627
+ * This is the only phase where the `preventDefault` property is effective.
6628
+ *
6629
+ * - `'bubble'`: The hotkey fires **after** the page has processed the key event.
6630
+ * This behaves exactly like a standard JavaScript event listener attached to the window:
6631
+ * 1. If the page calls `event.preventDefault()` (on either **keydown** or **keyup**), this hotkey will **not** fire.
6632
+ * 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.
6633
+ *
6634
+ * @default 'capture'
6635
+ */
6636
+ phase?: 'capture' | 'bubble';
6637
+ /**
6638
+ * Determines if the event should continue to the renderer.
6639
+ *
6640
+ * - `true`: The event is consumed immediately. It will **never** reach the renderer/page.
6641
+ * - `false`: The event is sent to the renderer after this hotkey executes.
6642
+ *
6643
+ * @remarks
6644
+ * This property is **only valid** when `phase` is set to `'capture'`.
6645
+ * If `phase` is `'bubble'`, this property is ignored (as the renderer has already received and processed the event).
6628
6646
  *
6629
6647
  * @default false
6630
6648
  */
@@ -9838,10 +9856,12 @@ declare type MutableWindowOptions = {
9838
9856
  */
9839
9857
  customData: any;
9840
9858
  /**
9841
- * @deprecated Will be removed in runtime version 45
9842
9859
  *
9843
9860
  * Show the window's frame.
9844
9861
  *
9862
+ * @remarks
9863
+ * This property will not be updatable starting runtime version 45.
9864
+ *
9845
9865
  * @default true
9846
9866
  */
9847
9867
  frame: boolean;
@@ -1418,29 +1418,26 @@ declare type ApplicationWindowInfo = {
1418
1418
  };
1419
1419
 
1420
1420
  /**
1421
- * `appLogLevel` allows the verbosity of app logs that are collected for a Window or View to be controlled when the app logging feature is enabled for its application.
1421
+ * The `appLogLevel` option allows the verbosity of app logs that are collected for a Window or View to be controlled for its application.
1422
1422
  *
1423
- * Please note, `enableAppLogging` must be specified in the application manifest's `platform` or `startup_app` key for this feature to be activated.
1424
- *
1425
- * If not specified, and `enableAppLogging` is true for the application, the default level will be 'silent'.
1426
- *
1427
- * This setting can also be specified in a Domain Setting Rule, allowing per url exceptions to the default behavior to be made. Please note, when a domain setting is actively
1428
- * controlling a url's appLogLevel, its options will be ignored.
1423
+ * This setting can also be specified in a Domain Setting Rule, allowing per url overrides to be defined. Please note, when a domain setting is actively
1424
+ * controlling a url's appLogLevel, its view/window options will be ignored.
1429
1425
  *
1430
1426
  * @default 'debug'
1431
1427
  *
1428
+ * Please note, if the manifest setting `platform.enableAppLogging` or `startup_app.enableAppLogging` is set to `false`, this feature will be disabled.
1429
+ *
1432
1430
  * @example Controlling App Logs With DefaultViewOptions + Domain Settings
1433
1431
  *
1434
1432
  * In this example manifest, we use `defaultViewOptions to set the default verbosity to 'warn'.
1435
1433
  *
1436
- * We also use domain settings to suppress logs entirely for an example URL, and to lower verbosity to 'debug' for another.
1434
+ * We also use domain settings to suppress logs for an example URL, and to lower verbosity to 'debug' for another.
1437
1435
  *
1438
1436
  * ```ts
1439
1437
  * {
1440
1438
  * <rest of settings>
1441
1439
  * "platform": {
1442
1440
  * <rest of settings>
1443
- * "enableAppLogging": "true",
1444
1441
  * "defaultViewOptions": {
1445
1442
  * "appLogLevel": "warn"
1446
1443
  * },
@@ -6624,7 +6621,28 @@ declare type Hotkey = {
6624
6621
  */
6625
6622
  keys: string;
6626
6623
  /**
6627
- * Prevent default key handling before emitting the event.
6624
+ * Controls the event phase at which the hotkey is triggered.
6625
+ *
6626
+ * - `'capture'`: The hotkey fires **before** the event is sent to the renderer/page.
6627
+ * This is the only phase where the `preventDefault` property is effective.
6628
+ *
6629
+ * - `'bubble'`: The hotkey fires **after** the page has processed the key event.
6630
+ * This behaves exactly like a standard JavaScript event listener attached to the window:
6631
+ * 1. If the page calls `event.preventDefault()` (on either **keydown** or **keyup**), this hotkey will **not** fire.
6632
+ * 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.
6633
+ *
6634
+ * @default 'capture'
6635
+ */
6636
+ phase?: 'capture' | 'bubble';
6637
+ /**
6638
+ * Determines if the event should continue to the renderer.
6639
+ *
6640
+ * - `true`: The event is consumed immediately. It will **never** reach the renderer/page.
6641
+ * - `false`: The event is sent to the renderer after this hotkey executes.
6642
+ *
6643
+ * @remarks
6644
+ * This property is **only valid** when `phase` is set to `'capture'`.
6645
+ * If `phase` is `'bubble'`, this property is ignored (as the renderer has already received and processed the event).
6628
6646
  *
6629
6647
  * @default false
6630
6648
  */
@@ -9838,10 +9856,12 @@ declare type MutableWindowOptions = {
9838
9856
  */
9839
9857
  customData: any;
9840
9858
  /**
9841
- * @deprecated Will be removed in runtime version 45
9842
9859
  *
9843
9860
  * Show the window's frame.
9844
9861
  *
9862
+ * @remarks
9863
+ * This property will not be updatable starting runtime version 45.
9864
+ *
9845
9865
  * @default true
9846
9866
  */
9847
9867
  frame: boolean;
package/out/fdc3-api.d.ts CHANGED
@@ -1424,29 +1424,26 @@ declare type ApplicationWindowInfo = {
1424
1424
  };
1425
1425
 
1426
1426
  /**
1427
- * `appLogLevel` allows the verbosity of app logs that are collected for a Window or View to be controlled when the app logging feature is enabled for its application.
1427
+ * The `appLogLevel` option allows the verbosity of app logs that are collected for a Window or View to be controlled for its application.
1428
1428
  *
1429
- * Please note, `enableAppLogging` must be specified in the application manifest's `platform` or `startup_app` key for this feature to be activated.
1430
- *
1431
- * If not specified, and `enableAppLogging` is true for the application, the default level will be 'silent'.
1432
- *
1433
- * This setting can also be specified in a Domain Setting Rule, allowing per url exceptions to the default behavior to be made. Please note, when a domain setting is actively
1434
- * controlling a url's appLogLevel, its options will be ignored.
1429
+ * This setting can also be specified in a Domain Setting Rule, allowing per url overrides to be defined. Please note, when a domain setting is actively
1430
+ * controlling a url's appLogLevel, its view/window options will be ignored.
1435
1431
  *
1436
1432
  * @default 'debug'
1437
1433
  *
1434
+ * Please note, if the manifest setting `platform.enableAppLogging` or `startup_app.enableAppLogging` is set to `false`, this feature will be disabled.
1435
+ *
1438
1436
  * @example Controlling App Logs With DefaultViewOptions + Domain Settings
1439
1437
  *
1440
1438
  * In this example manifest, we use `defaultViewOptions to set the default verbosity to 'warn'.
1441
1439
  *
1442
- * We also use domain settings to suppress logs entirely for an example URL, and to lower verbosity to 'debug' for another.
1440
+ * We also use domain settings to suppress logs for an example URL, and to lower verbosity to 'debug' for another.
1443
1441
  *
1444
1442
  * ```ts
1445
1443
  * {
1446
1444
  * <rest of settings>
1447
1445
  * "platform": {
1448
1446
  * <rest of settings>
1449
- * "enableAppLogging": "true",
1450
1447
  * "defaultViewOptions": {
1451
1448
  * "appLogLevel": "warn"
1452
1449
  * },
@@ -6715,7 +6712,28 @@ declare type Hotkey = {
6715
6712
  */
6716
6713
  keys: string;
6717
6714
  /**
6718
- * Prevent default key handling before emitting the event.
6715
+ * Controls the event phase at which the hotkey is triggered.
6716
+ *
6717
+ * - `'capture'`: The hotkey fires **before** the event is sent to the renderer/page.
6718
+ * This is the only phase where the `preventDefault` property is effective.
6719
+ *
6720
+ * - `'bubble'`: The hotkey fires **after** the page has processed the key event.
6721
+ * This behaves exactly like a standard JavaScript event listener attached to the window:
6722
+ * 1. If the page calls `event.preventDefault()` (on either **keydown** or **keyup**), this hotkey will **not** fire.
6723
+ * 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.
6724
+ *
6725
+ * @default 'capture'
6726
+ */
6727
+ phase?: 'capture' | 'bubble';
6728
+ /**
6729
+ * Determines if the event should continue to the renderer.
6730
+ *
6731
+ * - `true`: The event is consumed immediately. It will **never** reach the renderer/page.
6732
+ * - `false`: The event is sent to the renderer after this hotkey executes.
6733
+ *
6734
+ * @remarks
6735
+ * This property is **only valid** when `phase` is set to `'capture'`.
6736
+ * If `phase` is `'bubble'`, this property is ignored (as the renderer has already received and processed the event).
6719
6737
  *
6720
6738
  * @default false
6721
6739
  */
@@ -10151,10 +10169,12 @@ declare type MutableWindowOptions = {
10151
10169
  */
10152
10170
  customData: any;
10153
10171
  /**
10154
- * @deprecated Will be removed in runtime version 45
10155
10172
  *
10156
10173
  * Show the window's frame.
10157
10174
  *
10175
+ * @remarks
10176
+ * This property will not be updatable starting runtime version 45.
10177
+ *
10158
10178
  * @default true
10159
10179
  */
10160
10180
  frame: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/fdc3-api",
3
- "version": "43.100.106",
3
+ "version": "43.100.110",
4
4
  "description": "OpenFin fdc3 module utilities and types.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "private": false,