@openfin/workspace 17.2.1 → 17.2.3

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.
@@ -1602,7 +1602,11 @@ export interface WorkspacePlatformProvider extends OpenFin.PlatformProvider {
1602
1602
  */
1603
1603
  setActivePage(payload: SetActivePageForWindowPayload): Promise<void>;
1604
1604
  /**
1605
- * Implementation for creating a copy of a page. Called when a page is Saved-As or Duplicated.
1605
+ * Implementation for creating a copy of a page. Called when a page is Saved-As or Duplicated.
1606
+ *
1607
+ * Note: The `page.layout` and `page.panels` property cannot be overridden for 'Save As' operations,
1608
+ * the `page.layout` and `page.panels` property provided in the return value will be ignored, and the layout and panels of
1609
+ * the original page will remain after 'Save As' is performed.
1606
1610
  */
1607
1611
  copyPage(payload: CopyPagePayload): Promise<Page>;
1608
1612
  }
@@ -10,18 +10,22 @@ export interface ShowBrowserIndicatorPayload {
10
10
  icon?: BrowserIndicatorIcon;
11
11
  }
12
12
  /**
13
- * Creates a window containing a visual indicator
13
+ * Creates a window containing a visual indicator contained in a Browser Window
14
14
  */
15
- export declare function showBrowserIndicator(type: IndicatorType, message: string, parentBrowserName?: string, icon?: BrowserIndicatorIcon): Promise<any>;
15
+ export declare function showBrowserIndicator(type: IndicatorType, message: string, parentBrowserName?: string, icon?: BrowserIndicatorIcon): Promise<void>;
16
16
  /**
17
17
  * Creates a window containing an error indicator
18
18
  */
19
- export declare function showBrowserError(message: string, parentBrowserName?: string, icon?: BrowserIndicatorIcon): Promise<any>;
19
+ export declare function showBrowserError(message: string, parentBrowserName?: string, icon?: BrowserIndicatorIcon): Promise<void>;
20
20
  /**
21
21
  * Creates a window containing a success indicator
22
22
  */
23
- export declare function showBrowserSuccess(message: string, parentBrowserName?: string, icon?: BrowserIndicatorIcon): Promise<any>;
23
+ export declare function showBrowserSuccess(message: string, parentBrowserName?: string, icon?: BrowserIndicatorIcon): Promise<void>;
24
24
  /**
25
25
  * Creates a window containing an info indicator
26
26
  */
27
- export declare function showBrowserInfo(message: string, parentBrowserName?: string, icon?: BrowserIndicatorIcon): Promise<any>;
27
+ export declare function showBrowserInfo(message: string, parentBrowserName?: string, icon?: BrowserIndicatorIcon): Promise<void>;
28
+ /**
29
+ * Creates a window centered on monitor containing a success indicator for switching workspaces
30
+ */
31
+ export declare function showSwitchWorkspaceSuccess(): Promise<void>;