@todesktop/shared 7.66.0 → 7.67.0
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 -4
- package/package.json +1 -1
- package/src/desktopify2.ts +4 -4
package/lib/desktopify2.d.ts
CHANGED
|
@@ -106,14 +106,14 @@ export interface DesktopifyAppWindow {
|
|
|
106
106
|
* Allows user to `Cmd+F` or `Edit>Find` to search for text on page
|
|
107
107
|
*/
|
|
108
108
|
isFindInPageEnabled?: boolean;
|
|
109
|
-
/**
|
|
110
|
-
* Whether the window is in kiosk mode
|
|
111
|
-
*/
|
|
112
|
-
kiosk?: boolean;
|
|
113
109
|
/**
|
|
114
110
|
* Inital visibility of window
|
|
115
111
|
*/
|
|
116
112
|
visibility: "visible" | "hidden" | "show-when-contents-loaded";
|
|
113
|
+
/**
|
|
114
|
+
* MacOS option for whether the window should be visible on all workspaces
|
|
115
|
+
*/
|
|
116
|
+
visibleOnAllWorkspaces: boolean;
|
|
117
117
|
/**
|
|
118
118
|
* Does the window have a minimum width. Default is `false`
|
|
119
119
|
*/
|
package/package.json
CHANGED
package/src/desktopify2.ts
CHANGED
|
@@ -208,14 +208,14 @@ export interface DesktopifyAppWindow {
|
|
|
208
208
|
* Allows user to `Cmd+F` or `Edit>Find` to search for text on page
|
|
209
209
|
*/
|
|
210
210
|
isFindInPageEnabled?: boolean;
|
|
211
|
-
/**
|
|
212
|
-
* Whether the window is in kiosk mode
|
|
213
|
-
*/
|
|
214
|
-
kiosk?: boolean;
|
|
215
211
|
/**
|
|
216
212
|
* Inital visibility of window
|
|
217
213
|
*/
|
|
218
214
|
visibility: "visible" | "hidden" | "show-when-contents-loaded";
|
|
215
|
+
/**
|
|
216
|
+
* MacOS option for whether the window should be visible on all workspaces
|
|
217
|
+
*/
|
|
218
|
+
visibleOnAllWorkspaces: boolean;
|
|
219
219
|
/**
|
|
220
220
|
* Does the window have a minimum width. Default is `false`
|
|
221
221
|
*/
|