@openfin/core 29.71.20 → 29.71.23

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.
package/OpenFin.d.ts CHANGED
@@ -524,6 +524,7 @@ declare namespace OpenFin {
524
524
  experimental: any;
525
525
  fdc3InteropApi?: string;
526
526
  enableBeforeUnload: boolean;
527
+ accelerator?: Partial<OpenFin.Accelerator>;
527
528
  };
528
529
 
529
530
  export type Certificate = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/core",
3
- "version": "29.71.20",
3
+ "version": "29.71.23",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./src/mock.js",
6
6
  "types": "./src/mock.d.ts",
@@ -70,7 +70,7 @@ import UpdatableViewOptions = OpenFin.UpdatableViewOptions;
70
70
  * 'navigateBack'
71
71
  * 'print'
72
72
  * @property {boolean} [contextMenuOptions.enabled = true] Should the context menu display on right click.
73
- * @property {string[]} [contextMenuSettings.template=[]] List of context menu items to display on right-click.
73
+ * @property {string[]} [contextMenuOptions.template=[]] List of context menu items to display on right-click.
74
74
  *
75
75
  * @property {any} [customData=""] - _Updatable._
76
76
  * A field that the user can attach serializable data to be ferried around with the view options.
@@ -73,7 +73,7 @@ const window_1 = require("../window");
73
73
  * 'navigateBack'
74
74
  * 'print'
75
75
  * @property {boolean} [contextMenuOptions.enabled = true] Should the context menu display on right click.
76
- * @property {string[]} [contextMenuSettings.template=[]] List of context menu items to display on right-click.
76
+ * @property {string[]} [contextMenuOptions.template=[]] List of context menu items to display on right-click.
77
77
  *
78
78
  * @property {any} [customData=""] - _Updatable._
79
79
  * A field that the user can attach serializable data to be ferried around with the view options.
@@ -84,6 +84,7 @@ import WindowEvents = OpenFin.WindowEvents;
84
84
  * `Command` + `Shift` + `R` _(Mac)_
85
85
  *
86
86
  * @property {boolean} [accelerator.zoom=false]
87
+ * NOTE: It is not recommended to set this value to true for Windows in Platforms as that may lead to unexpected visual shifts in layout.
87
88
  * If `true`, enables the zoom keyboard shortcuts:<br>
88
89
  * `Ctrl` + `+` _(Zoom In)_<br>
89
90
  * `Ctrl` + `Shift` + `+` _(Zoom In)_<br>
@@ -91,6 +91,7 @@ const view_1 = require("../view");
91
91
  * `Command` + `Shift` + `R` _(Mac)_
92
92
  *
93
93
  * @property {boolean} [accelerator.zoom=false]
94
+ * NOTE: It is not recommended to set this value to true for Windows in Platforms as that may lead to unexpected visual shifts in layout.
94
95
  * If `true`, enables the zoom keyboard shortcuts:<br>
95
96
  * `Ctrl` + `+` _(Zoom In)_<br>
96
97
  * `Ctrl` + `Shift` + `+` _(Zoom In)_<br>