@openfin/workspace 17.2.1 → 17.2.2
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/client-api-platform/src/shapes.d.ts +5 -1
- package/home.js +1 -1
- package/index.js +1 -1
- package/notifications.js +1 -1
- package/notifications.js.map +1 -1
- package/package.json +1 -1
- package/store.js +1 -1
|
@@ -1602,7 +1602,11 @@ export interface WorkspacePlatformProvider extends OpenFin.PlatformProvider {
|
|
|
1602
1602
|
*/
|
|
1603
1603
|
setActivePage(payload: SetActivePageForWindowPayload): Promise<void>;
|
|
1604
1604
|
/**
|
|
1605
|
-
*
|
|
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
|
}
|