@openfin/fdc3-api 42.100.48 → 42.100.50

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.
@@ -3466,11 +3466,14 @@ declare type ConstViewOptions = {
3466
3466
  * The identity of the window this view should be attached to.
3467
3467
  */
3468
3468
  target: Identity_4;
3469
+ /**
3470
+ * Controls order of title precedence:
3471
+ * 'options': viewOptions.title (componentState), document.title, viewOptions.url
3472
+ * 'document': document.title, viewOptions.title(componentState), viewOptions.url (default behavior)
3473
+ */
3474
+ titlePriority?: ViewTitlePriority;
3469
3475
  /**
3470
3476
  * Defaults to `name`.
3471
- * Ignored in container, but used in @openfin/core-web to set tab titles.
3472
- * Order of precedence for title in container is: document.title, viewOptions.url.
3473
- * Order of precedence for title in @openfin/core-web is ComponentConfig.title, viewOptions.title, viewOptions.url.
3474
3477
  */
3475
3478
  title: string;
3476
3479
  /**
@@ -9904,6 +9907,7 @@ declare namespace OpenFin {
9904
9907
  ViewCreationOptions,
9905
9908
  MutableViewOptions,
9906
9909
  ViewOptions,
9910
+ ViewTitlePriority,
9907
9911
  ConstViewOptions,
9908
9912
  ViewState,
9909
9913
  ViewCreationSuccess,
@@ -17039,6 +17043,12 @@ declare interface ViewStatuses {
17039
17043
  */
17040
17044
  declare type ViewThrottling = 'enabled' | 'scheduler-disabled';
17041
17045
 
17046
+ /**
17047
+ * Precedence for view tab title
17048
+ * @interface
17049
+ */
17050
+ declare type ViewTitlePriority = 'document' | 'options';
17051
+
17042
17052
  /**
17043
17053
  * Configuration for view visibility settings
17044
17054
  *
@@ -3466,11 +3466,14 @@ declare type ConstViewOptions = {
3466
3466
  * The identity of the window this view should be attached to.
3467
3467
  */
3468
3468
  target: Identity_4;
3469
+ /**
3470
+ * Controls order of title precedence:
3471
+ * 'options': viewOptions.title (componentState), document.title, viewOptions.url
3472
+ * 'document': document.title, viewOptions.title(componentState), viewOptions.url (default behavior)
3473
+ */
3474
+ titlePriority?: ViewTitlePriority;
3469
3475
  /**
3470
3476
  * Defaults to `name`.
3471
- * Ignored in container, but used in @openfin/core-web to set tab titles.
3472
- * Order of precedence for title in container is: document.title, viewOptions.url.
3473
- * Order of precedence for title in @openfin/core-web is ComponentConfig.title, viewOptions.title, viewOptions.url.
3474
3477
  */
3475
3478
  title: string;
3476
3479
  /**
@@ -9904,6 +9907,7 @@ declare namespace OpenFin {
9904
9907
  ViewCreationOptions,
9905
9908
  MutableViewOptions,
9906
9909
  ViewOptions,
9910
+ ViewTitlePriority,
9907
9911
  ConstViewOptions,
9908
9912
  ViewState,
9909
9913
  ViewCreationSuccess,
@@ -17039,6 +17043,12 @@ declare interface ViewStatuses {
17039
17043
  */
17040
17044
  declare type ViewThrottling = 'enabled' | 'scheduler-disabled';
17041
17045
 
17046
+ /**
17047
+ * Precedence for view tab title
17048
+ * @interface
17049
+ */
17050
+ declare type ViewTitlePriority = 'document' | 'options';
17051
+
17042
17052
  /**
17043
17053
  * Configuration for view visibility settings
17044
17054
  *
@@ -3466,11 +3466,14 @@ declare type ConstViewOptions = {
3466
3466
  * The identity of the window this view should be attached to.
3467
3467
  */
3468
3468
  target: Identity_4;
3469
+ /**
3470
+ * Controls order of title precedence:
3471
+ * 'options': viewOptions.title (componentState), document.title, viewOptions.url
3472
+ * 'document': document.title, viewOptions.title(componentState), viewOptions.url (default behavior)
3473
+ */
3474
+ titlePriority?: ViewTitlePriority;
3469
3475
  /**
3470
3476
  * Defaults to `name`.
3471
- * Ignored in container, but used in @openfin/core-web to set tab titles.
3472
- * Order of precedence for title in container is: document.title, viewOptions.url.
3473
- * Order of precedence for title in @openfin/core-web is ComponentConfig.title, viewOptions.title, viewOptions.url.
3474
3477
  */
3475
3478
  title: string;
3476
3479
  /**
@@ -9904,6 +9907,7 @@ declare namespace OpenFin {
9904
9907
  ViewCreationOptions,
9905
9908
  MutableViewOptions,
9906
9909
  ViewOptions,
9910
+ ViewTitlePriority,
9907
9911
  ConstViewOptions,
9908
9912
  ViewState,
9909
9913
  ViewCreationSuccess,
@@ -17039,6 +17043,12 @@ declare interface ViewStatuses {
17039
17043
  */
17040
17044
  declare type ViewThrottling = 'enabled' | 'scheduler-disabled';
17041
17045
 
17046
+ /**
17047
+ * Precedence for view tab title
17048
+ * @interface
17049
+ */
17050
+ declare type ViewTitlePriority = 'document' | 'options';
17051
+
17042
17052
  /**
17043
17053
  * Configuration for view visibility settings
17044
17054
  *
package/out/fdc3-api.d.ts CHANGED
@@ -3525,11 +3525,14 @@ declare type ConstViewOptions = {
3525
3525
  * The identity of the window this view should be attached to.
3526
3526
  */
3527
3527
  target: Identity_4;
3528
+ /**
3529
+ * Controls order of title precedence:
3530
+ * 'options': viewOptions.title (componentState), document.title, viewOptions.url
3531
+ * 'document': document.title, viewOptions.title(componentState), viewOptions.url (default behavior)
3532
+ */
3533
+ titlePriority?: ViewTitlePriority;
3528
3534
  /**
3529
3535
  * Defaults to `name`.
3530
- * Ignored in container, but used in @openfin/core-web to set tab titles.
3531
- * Order of precedence for title in container is: document.title, viewOptions.url.
3532
- * Order of precedence for title in @openfin/core-web is ComponentConfig.title, viewOptions.title, viewOptions.url.
3533
3536
  */
3534
3537
  title: string;
3535
3538
  /**
@@ -10222,6 +10225,7 @@ declare namespace OpenFin {
10222
10225
  ViewCreationOptions,
10223
10226
  MutableViewOptions,
10224
10227
  ViewOptions,
10228
+ ViewTitlePriority,
10225
10229
  ConstViewOptions,
10226
10230
  ViewState,
10227
10231
  ViewCreationSuccess,
@@ -17490,6 +17494,12 @@ declare interface ViewStatuses {
17490
17494
  */
17491
17495
  declare type ViewThrottling = 'enabled' | 'scheduler-disabled';
17492
17496
 
17497
+ /**
17498
+ * Precedence for view tab title
17499
+ * @interface
17500
+ */
17501
+ declare type ViewTitlePriority = 'document' | 'options';
17502
+
17493
17503
  /**
17494
17504
  * Configuration for view visibility settings
17495
17505
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/fdc3-api",
3
- "version": "42.100.48",
3
+ "version": "42.100.50",
4
4
  "description": "OpenFin fdc3 module utilities and types.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "private": false,