@openfin/fdc3-api 40.100.6 → 40.100.7

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.
@@ -3407,6 +3407,13 @@ declare type ConstViewOptions = {
3407
3407
  * The identity of the window this view should be attached to.
3408
3408
  */
3409
3409
  target: Identity_4;
3410
+ /**
3411
+ * Defaults to `name`.
3412
+ * Ignored in container, but used in @openfin/core-web to set tab titles.
3413
+ * Order of precedence for title in container is: document.title, viewOptions.url.
3414
+ * Order of precedence for title in @openfin/core-web is ComponentConfig.title, viewOptions.title, viewOptions.url.
3415
+ */
3416
+ title: string;
3410
3417
  /**
3411
3418
  * Configures how new content (e,g, from `window.open` or a link) is opened.
3412
3419
  */
@@ -4386,6 +4393,10 @@ declare type DomainApiSettings = {
4386
4393
  *
4387
4394
  * @remarks Only the first rule in the array that matches the current URL is applied. Multiple behaviors for the same
4388
4395
  * domain should be represented with a single rule.
4396
+ *
4397
+ * Renderers opened on `about:blank` are considered to belong to the domain of their opener (or, in the case of iframes,
4398
+ * their parent), effective recursively. Domain rules matched to `about:blank` will only apply in cases where no opener
4399
+ * exists.
4389
4400
  */
4390
4401
  declare type DomainSettings = {
4391
4402
  /**
@@ -3407,6 +3407,13 @@ declare type ConstViewOptions = {
3407
3407
  * The identity of the window this view should be attached to.
3408
3408
  */
3409
3409
  target: Identity_4;
3410
+ /**
3411
+ * Defaults to `name`.
3412
+ * Ignored in container, but used in @openfin/core-web to set tab titles.
3413
+ * Order of precedence for title in container is: document.title, viewOptions.url.
3414
+ * Order of precedence for title in @openfin/core-web is ComponentConfig.title, viewOptions.title, viewOptions.url.
3415
+ */
3416
+ title: string;
3410
3417
  /**
3411
3418
  * Configures how new content (e,g, from `window.open` or a link) is opened.
3412
3419
  */
@@ -4386,6 +4393,10 @@ declare type DomainApiSettings = {
4386
4393
  *
4387
4394
  * @remarks Only the first rule in the array that matches the current URL is applied. Multiple behaviors for the same
4388
4395
  * domain should be represented with a single rule.
4396
+ *
4397
+ * Renderers opened on `about:blank` are considered to belong to the domain of their opener (or, in the case of iframes,
4398
+ * their parent), effective recursively. Domain rules matched to `about:blank` will only apply in cases where no opener
4399
+ * exists.
4389
4400
  */
4390
4401
  declare type DomainSettings = {
4391
4402
  /**
@@ -3407,6 +3407,13 @@ declare type ConstViewOptions = {
3407
3407
  * The identity of the window this view should be attached to.
3408
3408
  */
3409
3409
  target: Identity_4;
3410
+ /**
3411
+ * Defaults to `name`.
3412
+ * Ignored in container, but used in @openfin/core-web to set tab titles.
3413
+ * Order of precedence for title in container is: document.title, viewOptions.url.
3414
+ * Order of precedence for title in @openfin/core-web is ComponentConfig.title, viewOptions.title, viewOptions.url.
3415
+ */
3416
+ title: string;
3410
3417
  /**
3411
3418
  * Configures how new content (e,g, from `window.open` or a link) is opened.
3412
3419
  */
@@ -4386,6 +4393,10 @@ declare type DomainApiSettings = {
4386
4393
  *
4387
4394
  * @remarks Only the first rule in the array that matches the current URL is applied. Multiple behaviors for the same
4388
4395
  * domain should be represented with a single rule.
4396
+ *
4397
+ * Renderers opened on `about:blank` are considered to belong to the domain of their opener (or, in the case of iframes,
4398
+ * their parent), effective recursively. Domain rules matched to `about:blank` will only apply in cases where no opener
4399
+ * exists.
4389
4400
  */
4390
4401
  declare type DomainSettings = {
4391
4402
  /**
package/out/fdc3-api.d.ts CHANGED
@@ -3466,6 +3466,13 @@ 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
+ * 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
+ */
3475
+ title: string;
3469
3476
  /**
3470
3477
  * Configures how new content (e,g, from `window.open` or a link) is opened.
3471
3478
  */
@@ -4445,6 +4452,10 @@ declare type DomainApiSettings = {
4445
4452
  *
4446
4453
  * @remarks Only the first rule in the array that matches the current URL is applied. Multiple behaviors for the same
4447
4454
  * domain should be represented with a single rule.
4455
+ *
4456
+ * Renderers opened on `about:blank` are considered to belong to the domain of their opener (or, in the case of iframes,
4457
+ * their parent), effective recursively. Domain rules matched to `about:blank` will only apply in cases where no opener
4458
+ * exists.
4448
4459
  */
4449
4460
  declare type DomainSettings = {
4450
4461
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/fdc3-api",
3
- "version": "40.100.6",
3
+ "version": "40.100.7",
4
4
  "description": "OpenFin fdc3 module utilities and types.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "private": false,