@openfin/workspace-platform 18.0.4 → 18.0.5
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.
|
@@ -10,6 +10,13 @@ export declare const getCloseWindow: () => {
|
|
|
10
10
|
type: WP.GlobalContextMenuOptionType;
|
|
11
11
|
};
|
|
12
12
|
};
|
|
13
|
+
export declare const getQuitPlatform: () => {
|
|
14
|
+
type: MenuItemType;
|
|
15
|
+
label: string;
|
|
16
|
+
data: {
|
|
17
|
+
type: WP.GlobalContextMenuOptionType;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
13
20
|
export declare const newWindow: () => {
|
|
14
21
|
type: MenuItemType;
|
|
15
22
|
label: string;
|
|
@@ -60,6 +67,7 @@ export declare const saveWorkspaceAs: () => {
|
|
|
60
67
|
type: WP.GlobalContextMenuOptionType;
|
|
61
68
|
};
|
|
62
69
|
};
|
|
70
|
+
export declare const printMenuOptions: (isViewSelected: boolean) => Promise<GlobalContextMenuItemTemplate>;
|
|
63
71
|
export declare const renameWorkspace: () => {
|
|
64
72
|
type: MenuItemType;
|
|
65
73
|
label: string;
|
|
@@ -11,5 +11,6 @@ export declare const showDeleteWorkspaceModal: (windowIdentity: OpenFin.Identity
|
|
|
11
11
|
* @returns Boolean - Affirmative or Negative response from user
|
|
12
12
|
*/
|
|
13
13
|
export declare const showPlatformQuitModal: (windowIdentity: OpenFin.Identity, workspaceTitle: string, shouldCenterOnMonitor?: boolean) => Promise<boolean>;
|
|
14
|
+
export declare const showQuitBrowserModal: (windowIdentity: OpenFin.Identity) => Promise<boolean>;
|
|
14
15
|
export declare const showRestoreChangesModal: (windowIdentity: OpenFin.Identity) => Promise<boolean>;
|
|
15
16
|
export declare const getOverwriteWorkspaceMenu: (workspaceTitle: string) => Promise<ResponseModalConfig>;
|