@openfin/core 29.71.22 → 29.71.25

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 = {
@@ -1706,9 +1707,12 @@ declare namespace OpenFin {
1706
1707
 
1707
1708
  export type PrebuiltContextMenuItem =
1708
1709
  | 'separator'
1710
+ | 'undo'
1711
+ | 'redo'
1709
1712
  | 'cut'
1710
1713
  | 'copy'
1711
1714
  | 'paste'
1715
+ | 'selectAll'
1712
1716
  | 'spellCheck'
1713
1717
  | 'inspect'
1714
1718
  | 'reload'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/core",
3
- "version": "29.71.22",
3
+ "version": "29.71.25",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./src/mock.js",
6
6
  "types": "./src/mock.d.ts",
@@ -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>