@openfin/core 40.100.5 → 40.100.7

Sign up to get free protection for your applications and to get access to all the features.
@@ -3410,6 +3410,13 @@ declare type ConstViewOptions = {
3410
3410
  * The identity of the window this view should be attached to.
3411
3411
  */
3412
3412
  target: Identity_4;
3413
+ /**
3414
+ * Defaults to `name`.
3415
+ * Ignored in container, but used in @openfin/core-web to set tab titles.
3416
+ * Order of precedence for title in container is: document.title, viewOptions.url.
3417
+ * Order of precedence for title in @openfin/core-web is ComponentConfig.title, viewOptions.title, viewOptions.url.
3418
+ */
3419
+ title: string;
3413
3420
  /**
3414
3421
  * Configures how new content (e,g, from `window.open` or a link) is opened.
3415
3422
  */
@@ -4389,6 +4396,10 @@ declare type DomainApiSettings = {
4389
4396
  *
4390
4397
  * @remarks Only the first rule in the array that matches the current URL is applied. Multiple behaviors for the same
4391
4398
  * domain should be represented with a single rule.
4399
+ *
4400
+ * Renderers opened on `about:blank` are considered to belong to the domain of their opener (or, in the case of iframes,
4401
+ * their parent), effective recursively. Domain rules matched to `about:blank` will only apply in cases where no opener
4402
+ * exists.
4392
4403
  */
4393
4404
  declare type DomainSettings = {
4394
4405
  /**
@@ -3410,6 +3410,13 @@ declare type ConstViewOptions = {
3410
3410
  * The identity of the window this view should be attached to.
3411
3411
  */
3412
3412
  target: Identity_4;
3413
+ /**
3414
+ * Defaults to `name`.
3415
+ * Ignored in container, but used in @openfin/core-web to set tab titles.
3416
+ * Order of precedence for title in container is: document.title, viewOptions.url.
3417
+ * Order of precedence for title in @openfin/core-web is ComponentConfig.title, viewOptions.title, viewOptions.url.
3418
+ */
3419
+ title: string;
3413
3420
  /**
3414
3421
  * Configures how new content (e,g, from `window.open` or a link) is opened.
3415
3422
  */
@@ -4389,6 +4396,10 @@ declare type DomainApiSettings = {
4389
4396
  *
4390
4397
  * @remarks Only the first rule in the array that matches the current URL is applied. Multiple behaviors for the same
4391
4398
  * domain should be represented with a single rule.
4399
+ *
4400
+ * Renderers opened on `about:blank` are considered to belong to the domain of their opener (or, in the case of iframes,
4401
+ * their parent), effective recursively. Domain rules matched to `about:blank` will only apply in cases where no opener
4402
+ * exists.
4392
4403
  */
4393
4404
  declare type DomainSettings = {
4394
4405
  /**
@@ -3410,6 +3410,13 @@ declare type ConstViewOptions = {
3410
3410
  * The identity of the window this view should be attached to.
3411
3411
  */
3412
3412
  target: Identity_4;
3413
+ /**
3414
+ * Defaults to `name`.
3415
+ * Ignored in container, but used in @openfin/core-web to set tab titles.
3416
+ * Order of precedence for title in container is: document.title, viewOptions.url.
3417
+ * Order of precedence for title in @openfin/core-web is ComponentConfig.title, viewOptions.title, viewOptions.url.
3418
+ */
3419
+ title: string;
3413
3420
  /**
3414
3421
  * Configures how new content (e,g, from `window.open` or a link) is opened.
3415
3422
  */
@@ -4389,6 +4396,10 @@ declare type DomainApiSettings = {
4389
4396
  *
4390
4397
  * @remarks Only the first rule in the array that matches the current URL is applied. Multiple behaviors for the same
4391
4398
  * domain should be represented with a single rule.
4399
+ *
4400
+ * Renderers opened on `about:blank` are considered to belong to the domain of their opener (or, in the case of iframes,
4401
+ * their parent), effective recursively. Domain rules matched to `about:blank` will only apply in cases where no opener
4402
+ * exists.
4392
4403
  */
4393
4404
  declare type DomainSettings = {
4394
4405
  /**
package/out/mock.d.ts CHANGED
@@ -3469,6 +3469,13 @@ 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
+ * 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
+ */
3478
+ title: string;
3472
3479
  /**
3473
3480
  * Configures how new content (e,g, from `window.open` or a link) is opened.
3474
3481
  */
@@ -4448,6 +4455,10 @@ declare type DomainApiSettings = {
4448
4455
  *
4449
4456
  * @remarks Only the first rule in the array that matches the current URL is applied. Multiple behaviors for the same
4450
4457
  * domain should be represented with a single rule.
4458
+ *
4459
+ * Renderers opened on `about:blank` are considered to belong to the domain of their opener (or, in the case of iframes,
4460
+ * their parent), effective recursively. Domain rules matched to `about:blank` will only apply in cases where no opener
4461
+ * exists.
4451
4462
  */
4452
4463
  declare type DomainSettings = {
4453
4464
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/core",
3
- "version": "40.100.5",
3
+ "version": "40.100.7",
4
4
  "description": "The core renderer entry point of OpenFin",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "main": "out/mock.js",