@openfin/fdc3-api 42.100.44 → 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,
@@ -10410,6 +10414,9 @@ declare type PerDomainSettings = {
10410
10414
  * {@inheritdoc DomainSettingsPreloadScripts}
10411
10415
  */
10412
10416
  preloadScripts?: DomainSettingsPreloadScripts;
10417
+ /**
10418
+ * @experimental These features are still under development and may change.
10419
+ */
10413
10420
  contentProtection?: {
10414
10421
  /**
10415
10422
  * {@inheritdoc ScreenCaptureBehavior}
@@ -17036,6 +17043,12 @@ declare interface ViewStatuses {
17036
17043
  */
17037
17044
  declare type ViewThrottling = 'enabled' | 'scheduler-disabled';
17038
17045
 
17046
+ /**
17047
+ * Precedence for view tab title
17048
+ * @interface
17049
+ */
17050
+ declare type ViewTitlePriority = 'document' | 'options';
17051
+
17039
17052
  /**
17040
17053
  * Configuration for view visibility settings
17041
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,
@@ -10410,6 +10414,9 @@ declare type PerDomainSettings = {
10410
10414
  * {@inheritdoc DomainSettingsPreloadScripts}
10411
10415
  */
10412
10416
  preloadScripts?: DomainSettingsPreloadScripts;
10417
+ /**
10418
+ * @experimental These features are still under development and may change.
10419
+ */
10413
10420
  contentProtection?: {
10414
10421
  /**
10415
10422
  * {@inheritdoc ScreenCaptureBehavior}
@@ -17036,6 +17043,12 @@ declare interface ViewStatuses {
17036
17043
  */
17037
17044
  declare type ViewThrottling = 'enabled' | 'scheduler-disabled';
17038
17045
 
17046
+ /**
17047
+ * Precedence for view tab title
17048
+ * @interface
17049
+ */
17050
+ declare type ViewTitlePriority = 'document' | 'options';
17051
+
17039
17052
  /**
17040
17053
  * Configuration for view visibility settings
17041
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,
@@ -10410,6 +10414,9 @@ declare type PerDomainSettings = {
10410
10414
  * {@inheritdoc DomainSettingsPreloadScripts}
10411
10415
  */
10412
10416
  preloadScripts?: DomainSettingsPreloadScripts;
10417
+ /**
10418
+ * @experimental These features are still under development and may change.
10419
+ */
10413
10420
  contentProtection?: {
10414
10421
  /**
10415
10422
  * {@inheritdoc ScreenCaptureBehavior}
@@ -17036,6 +17043,12 @@ declare interface ViewStatuses {
17036
17043
  */
17037
17044
  declare type ViewThrottling = 'enabled' | 'scheduler-disabled';
17038
17045
 
17046
+ /**
17047
+ * Precedence for view tab title
17048
+ * @interface
17049
+ */
17050
+ declare type ViewTitlePriority = 'document' | 'options';
17051
+
17039
17052
  /**
17040
17053
  * Configuration for view visibility settings
17041
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,
@@ -10728,6 +10732,9 @@ declare type PerDomainSettings = {
10728
10732
  * {@inheritdoc DomainSettingsPreloadScripts}
10729
10733
  */
10730
10734
  preloadScripts?: DomainSettingsPreloadScripts;
10735
+ /**
10736
+ * @experimental These features are still under development and may change.
10737
+ */
10731
10738
  contentProtection?: {
10732
10739
  /**
10733
10740
  * {@inheritdoc ScreenCaptureBehavior}
@@ -17487,6 +17494,12 @@ declare interface ViewStatuses {
17487
17494
  */
17488
17495
  declare type ViewThrottling = 'enabled' | 'scheduler-disabled';
17489
17496
 
17497
+ /**
17498
+ * Precedence for view tab title
17499
+ * @interface
17500
+ */
17501
+ declare type ViewTitlePriority = 'document' | 'options';
17502
+
17490
17503
  /**
17491
17504
  * Configuration for view visibility settings
17492
17505
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/fdc3-api",
3
- "version": "42.100.44",
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,