@todesktop/shared 7.188.43 → 7.188.44
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/lib/desktopify2.d.ts +4 -0
- package/package.json +1 -1
- package/src/desktopify2.ts +4 -0
package/lib/desktopify2.d.ts
CHANGED
|
@@ -162,6 +162,10 @@ export interface DesktopifyAppWindow {
|
|
|
162
162
|
* Disables default rightClick menu
|
|
163
163
|
*/
|
|
164
164
|
disableContextMenu: boolean;
|
|
165
|
+
/**
|
|
166
|
+
* Disables the menu item for opening a link in a new app window
|
|
167
|
+
*/
|
|
168
|
+
disableContextMenuOpenInWindow: boolean;
|
|
165
169
|
/**
|
|
166
170
|
* Allows user to `Cmd+F` or `Edit>Find` to search for text on page
|
|
167
171
|
*/
|
package/package.json
CHANGED
package/src/desktopify2.ts
CHANGED
|
@@ -288,6 +288,10 @@ export interface DesktopifyAppWindow {
|
|
|
288
288
|
* Disables default rightClick menu
|
|
289
289
|
*/
|
|
290
290
|
disableContextMenu: boolean;
|
|
291
|
+
/**
|
|
292
|
+
* Disables the menu item for opening a link in a new app window
|
|
293
|
+
*/
|
|
294
|
+
disableContextMenuOpenInWindow: boolean;
|
|
291
295
|
/**
|
|
292
296
|
* Allows user to `Cmd+F` or `Edit>Find` to search for text on page
|
|
293
297
|
*/
|