@openfin/fdc3-api 41.100.115 → 41.100.117

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}
@@ -17040,6 +17047,12 @@ declare interface ViewStatuses {
17040
17047
  */
17041
17048
  declare type ViewThrottling = 'enabled' | 'scheduler-disabled';
17042
17049
 
17050
+ /**
17051
+ * Precedence for view tab title
17052
+ * @interface
17053
+ */
17054
+ declare type ViewTitlePriority = 'document' | 'options';
17055
+
17043
17056
  /**
17044
17057
  * Configuration for view visibility settings
17045
17058
  *
@@ -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}
@@ -17040,6 +17047,12 @@ declare interface ViewStatuses {
17040
17047
  */
17041
17048
  declare type ViewThrottling = 'enabled' | 'scheduler-disabled';
17042
17049
 
17050
+ /**
17051
+ * Precedence for view tab title
17052
+ * @interface
17053
+ */
17054
+ declare type ViewTitlePriority = 'document' | 'options';
17055
+
17043
17056
  /**
17044
17057
  * Configuration for view visibility settings
17045
17058
  *
@@ -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}
@@ -17040,6 +17047,12 @@ declare interface ViewStatuses {
17040
17047
  */
17041
17048
  declare type ViewThrottling = 'enabled' | 'scheduler-disabled';
17042
17049
 
17050
+ /**
17051
+ * Precedence for view tab title
17052
+ * @interface
17053
+ */
17054
+ declare type ViewTitlePriority = 'document' | 'options';
17055
+
17043
17056
  /**
17044
17057
  * Configuration for view visibility settings
17045
17058
  *
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}
@@ -17491,6 +17498,12 @@ declare interface ViewStatuses {
17491
17498
  */
17492
17499
  declare type ViewThrottling = 'enabled' | 'scheduler-disabled';
17493
17500
 
17501
+ /**
17502
+ * Precedence for view tab title
17503
+ * @interface
17504
+ */
17505
+ declare type ViewTitlePriority = 'document' | 'options';
17506
+
17494
17507
  /**
17495
17508
  * Configuration for view visibility settings
17496
17509
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/fdc3-api",
3
- "version": "41.100.115",
3
+ "version": "41.100.117",
4
4
  "description": "OpenFin fdc3 module utilities and types.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "private": false,