@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
package/package.json
CHANGED
|
@@ -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[]} [
|
|
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.
|
package/src/api/view/Instance.js
CHANGED
|
@@ -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[]} [
|
|
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>
|