@openfin/workspace 19.2.9 → 19.2.11
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/api/app-directory.d.ts +1 -1
- package/client-api-platform/src/shapes.d.ts +8 -0
- package/common/src/api/pages/shapes.d.ts +1 -0
- package/home.js +1 -1
- package/home.js.map +1 -1
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/notifications.js +1 -1
- package/notifications.js.map +1 -1
- package/package.json +2 -2
- package/store.js +1 -1
- package/store.js.map +1 -1
|
@@ -7,7 +7,7 @@ import type { LaunchAppRequest, SearchSitesRequest, SearchSitesResponse, Site }
|
|
|
7
7
|
* @param opts launch options.
|
|
8
8
|
*/
|
|
9
9
|
export declare function launchApp({ app, target }: LaunchAppRequest): Promise<void | OpenFin.View | OpenFin.Identity | OpenFin.Platform | OpenFin.Application>;
|
|
10
|
-
export declare const enterpriseAppDirectoryChannelClient: () => Promise<
|
|
10
|
+
export declare const enterpriseAppDirectoryChannelClient: () => Promise<OpenFin.ChannelClient>;
|
|
11
11
|
export declare function getResults(payload: {
|
|
12
12
|
req: SearchSitesRequest;
|
|
13
13
|
} & {
|
|
@@ -1291,6 +1291,10 @@ export interface BrowserWindowFactory {
|
|
|
1291
1291
|
* ```
|
|
1292
1292
|
*
|
|
1293
1293
|
* @param options the browser window creation options
|
|
1294
|
+
* @remarks
|
|
1295
|
+
* **View names are singleton**: It is not recommended to provide view names, but if they are provided, they can only be used by one view at a time.
|
|
1296
|
+
*
|
|
1297
|
+
* **Expected Behavior**: If a new view is created using the same view name as an already existing view, the new view will be created, with the view name, and the existing view will be destroyed.
|
|
1294
1298
|
*/
|
|
1295
1299
|
createWindow(options: BrowserCreateWindowRequest): Promise<BrowserWindowModule>;
|
|
1296
1300
|
/**
|
|
@@ -1611,6 +1615,10 @@ export interface WorkspacePlatformModule extends OpenFin.Platform {
|
|
|
1611
1615
|
* }
|
|
1612
1616
|
* });
|
|
1613
1617
|
* ```
|
|
1618
|
+
* @remarks
|
|
1619
|
+
* **View names are singleton**: It is not recommended to provide view names, but if they are provided, they can only be used by one view at a time.
|
|
1620
|
+
*
|
|
1621
|
+
* **Expected Behavior**: If a new view is created using the same view name as an already existing view, the new view will be created, with the view name, and the existing view will be destroyed.
|
|
1614
1622
|
*/
|
|
1615
1623
|
createView(viewOptions: Partial<OpenFin.ViewOptions> | BrowserCreateViewRequest, target?: OpenFin.CreateViewTarget, targetView?: OpenFin.Identity): Promise<OpenFin.View>;
|
|
1616
1624
|
/**
|
|
@@ -89,6 +89,7 @@ export type AttachedPageInternal = {
|
|
|
89
89
|
layoutContainerKey?: string;
|
|
90
90
|
singleViewName?: string;
|
|
91
91
|
attachedPageType?: 'singleView' | 'multiView' | undefined;
|
|
92
|
+
isLayoutCreated?: boolean;
|
|
92
93
|
} & AttachedPage;
|
|
93
94
|
export type ReparentAttachedPage = AttachedPage & {
|
|
94
95
|
multiInstanceViewBehavior?: 'reparent';
|