@openfin/core 42.100.48 → 42.100.51

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.
@@ -3469,11 +3469,14 @@ declare type ConstViewOptions = {
3469
3469
  * The identity of the window this view should be attached to.
3470
3470
  */
3471
3471
  target: Identity_4;
3472
+ /**
3473
+ * Controls order of title precedence:
3474
+ * 'options': viewOptions.title (componentState), document.title, viewOptions.url
3475
+ * 'document': document.title, viewOptions.title(componentState), viewOptions.url (default behavior)
3476
+ */
3477
+ titlePriority?: ViewTitlePriority;
3472
3478
  /**
3473
3479
  * Defaults to `name`.
3474
- * Ignored in container, but used in @openfin/core-web to set tab titles.
3475
- * Order of precedence for title in container is: document.title, viewOptions.url.
3476
- * Order of precedence for title in @openfin/core-web is ComponentConfig.title, viewOptions.title, viewOptions.url.
3477
3480
  */
3478
3481
  title: string;
3479
3482
  /**
@@ -9562,6 +9565,7 @@ declare namespace OpenFin_2 {
9562
9565
  ViewCreationOptions,
9563
9566
  MutableViewOptions,
9564
9567
  ViewOptions,
9568
+ ViewTitlePriority,
9565
9569
  ConstViewOptions,
9566
9570
  ViewState,
9567
9571
  ViewCreationSuccess,
@@ -16593,6 +16597,12 @@ declare interface ViewStatuses {
16593
16597
  */
16594
16598
  declare type ViewThrottling = 'enabled' | 'scheduler-disabled';
16595
16599
 
16600
+ /**
16601
+ * Precedence for view tab title
16602
+ * @interface
16603
+ */
16604
+ declare type ViewTitlePriority = 'document' | 'options';
16605
+
16596
16606
  /**
16597
16607
  * Configuration for view visibility settings
16598
16608
  *
@@ -3469,11 +3469,14 @@ declare type ConstViewOptions = {
3469
3469
  * The identity of the window this view should be attached to.
3470
3470
  */
3471
3471
  target: Identity_4;
3472
+ /**
3473
+ * Controls order of title precedence:
3474
+ * 'options': viewOptions.title (componentState), document.title, viewOptions.url
3475
+ * 'document': document.title, viewOptions.title(componentState), viewOptions.url (default behavior)
3476
+ */
3477
+ titlePriority?: ViewTitlePriority;
3472
3478
  /**
3473
3479
  * Defaults to `name`.
3474
- * Ignored in container, but used in @openfin/core-web to set tab titles.
3475
- * Order of precedence for title in container is: document.title, viewOptions.url.
3476
- * Order of precedence for title in @openfin/core-web is ComponentConfig.title, viewOptions.title, viewOptions.url.
3477
3480
  */
3478
3481
  title: string;
3479
3482
  /**
@@ -9562,6 +9565,7 @@ declare namespace OpenFin_2 {
9562
9565
  ViewCreationOptions,
9563
9566
  MutableViewOptions,
9564
9567
  ViewOptions,
9568
+ ViewTitlePriority,
9565
9569
  ConstViewOptions,
9566
9570
  ViewState,
9567
9571
  ViewCreationSuccess,
@@ -16593,6 +16597,12 @@ declare interface ViewStatuses {
16593
16597
  */
16594
16598
  declare type ViewThrottling = 'enabled' | 'scheduler-disabled';
16595
16599
 
16600
+ /**
16601
+ * Precedence for view tab title
16602
+ * @interface
16603
+ */
16604
+ declare type ViewTitlePriority = 'document' | 'options';
16605
+
16596
16606
  /**
16597
16607
  * Configuration for view visibility settings
16598
16608
  *
@@ -3469,11 +3469,14 @@ declare type ConstViewOptions = {
3469
3469
  * The identity of the window this view should be attached to.
3470
3470
  */
3471
3471
  target: Identity_4;
3472
+ /**
3473
+ * Controls order of title precedence:
3474
+ * 'options': viewOptions.title (componentState), document.title, viewOptions.url
3475
+ * 'document': document.title, viewOptions.title(componentState), viewOptions.url (default behavior)
3476
+ */
3477
+ titlePriority?: ViewTitlePriority;
3472
3478
  /**
3473
3479
  * Defaults to `name`.
3474
- * Ignored in container, but used in @openfin/core-web to set tab titles.
3475
- * Order of precedence for title in container is: document.title, viewOptions.url.
3476
- * Order of precedence for title in @openfin/core-web is ComponentConfig.title, viewOptions.title, viewOptions.url.
3477
3480
  */
3478
3481
  title: string;
3479
3482
  /**
@@ -9562,6 +9565,7 @@ declare namespace OpenFin_2 {
9562
9565
  ViewCreationOptions,
9563
9566
  MutableViewOptions,
9564
9567
  ViewOptions,
9568
+ ViewTitlePriority,
9565
9569
  ConstViewOptions,
9566
9570
  ViewState,
9567
9571
  ViewCreationSuccess,
@@ -16593,6 +16597,12 @@ declare interface ViewStatuses {
16593
16597
  */
16594
16598
  declare type ViewThrottling = 'enabled' | 'scheduler-disabled';
16595
16599
 
16600
+ /**
16601
+ * Precedence for view tab title
16602
+ * @interface
16603
+ */
16604
+ declare type ViewTitlePriority = 'document' | 'options';
16605
+
16596
16606
  /**
16597
16607
  * Configuration for view visibility settings
16598
16608
  *
package/out/stub.d.ts CHANGED
@@ -3528,11 +3528,14 @@ declare type ConstViewOptions = {
3528
3528
  * The identity of the window this view should be attached to.
3529
3529
  */
3530
3530
  target: Identity_4;
3531
+ /**
3532
+ * Controls order of title precedence:
3533
+ * 'options': viewOptions.title (componentState), document.title, viewOptions.url
3534
+ * 'document': document.title, viewOptions.title(componentState), viewOptions.url (default behavior)
3535
+ */
3536
+ titlePriority?: ViewTitlePriority;
3531
3537
  /**
3532
3538
  * Defaults to `name`.
3533
- * Ignored in container, but used in @openfin/core-web to set tab titles.
3534
- * Order of precedence for title in container is: document.title, viewOptions.url.
3535
- * Order of precedence for title in @openfin/core-web is ComponentConfig.title, viewOptions.title, viewOptions.url.
3536
3539
  */
3537
3540
  title: string;
3538
3541
  /**
@@ -9880,6 +9883,7 @@ declare namespace OpenFin_2 {
9880
9883
  ViewCreationOptions,
9881
9884
  MutableViewOptions,
9882
9885
  ViewOptions,
9886
+ ViewTitlePriority,
9883
9887
  ConstViewOptions,
9884
9888
  ViewState,
9885
9889
  ViewCreationSuccess,
@@ -17044,6 +17048,12 @@ declare interface ViewStatuses {
17044
17048
  */
17045
17049
  declare type ViewThrottling = 'enabled' | 'scheduler-disabled';
17046
17050
 
17051
+ /**
17052
+ * Precedence for view tab title
17053
+ * @interface
17054
+ */
17055
+ declare type ViewTitlePriority = 'document' | 'options';
17056
+
17047
17057
  /**
17048
17058
  * Configuration for view visibility settings
17049
17059
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/core",
3
- "version": "42.100.48",
3
+ "version": "42.100.51",
4
4
  "description": "The core renderer entry point of OpenFin",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "main": "out/stub.js",