@openfin/workspace 19.1.3 → 19.1.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.
- package/client-api-platform/src/api/app-directory.d.ts +1 -1
- package/client-api-platform/src/api/context-menu/utils.d.ts +4 -0
- package/client-api-platform/src/shapes.d.ts +1 -0
- package/common/src/api/pages/shapes.d.ts +1 -0
- package/common/src/utils/enterpriseBrowser.d.ts +1 -0
- package/common/src/utils/env.d.ts +1 -1
- 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 +3 -3
- package/store.js +1 -1
- package/store.js.map +1 -1
|
@@ -6,7 +6,7 @@ import type { LaunchAppRequest, SearchSitesRequest, SearchSitesResponse, Site }
|
|
|
6
6
|
* @param app the app directory entry.
|
|
7
7
|
* @param opts launch options.
|
|
8
8
|
*/
|
|
9
|
-
export declare function launchApp({ app, target }: LaunchAppRequest): Promise<void | OpenFin.
|
|
9
|
+
export declare function launchApp({ app, target }: LaunchAppRequest): Promise<void | OpenFin.Identity | OpenFin.Platform | OpenFin.View | OpenFin.Application>;
|
|
10
10
|
export declare const enterpriseAppDirectoryChannelClient: () => Promise<import("../../../common/src/utils/channels").withDisconnectListener<OpenFin.ChannelClient>>;
|
|
11
11
|
export declare function getResults(payload: {
|
|
12
12
|
req: SearchSitesRequest;
|
|
@@ -2,6 +2,10 @@ import type OpenFin from '@openfin/core';
|
|
|
2
2
|
import { WorkspaceContextMenuItemData } from '../../../../client-api-platform/src/shapes';
|
|
3
3
|
export declare const saveWorkspaceHandler: (identity: OpenFin.Identity) => Promise<void>;
|
|
4
4
|
export declare const saveWorkspaceAsHandler: (identity: OpenFin.Identity) => void;
|
|
5
|
+
/**
|
|
6
|
+
* @param identity Identity of browser window to create a new page on.
|
|
7
|
+
*/
|
|
8
|
+
export declare const createNewPageHandler: (identity: OpenFin.Identity) => Promise<void>;
|
|
5
9
|
/**
|
|
6
10
|
* @param identity Identity of browser window to execute save on.
|
|
7
11
|
* @param pageId Id of a page to save. If omitted, active page is saved.
|
|
@@ -88,6 +88,7 @@ export type AttachedPage = Page & AttachedPageMetadata;
|
|
|
88
88
|
export type AttachedPageInternal = {
|
|
89
89
|
layoutContainerKey?: string;
|
|
90
90
|
singleViewName?: string;
|
|
91
|
+
attachedPageType?: 'singleView' | 'multiView' | undefined;
|
|
91
92
|
} & AttachedPage;
|
|
92
93
|
export type ReparentAttachedPage = AttachedPage & {
|
|
93
94
|
multiInstanceViewBehavior?: 'reparent';
|
|
@@ -3,5 +3,6 @@ import { BrowserInitConfig } from '../../../client-api-platform/src/shapes';
|
|
|
3
3
|
export declare const isEnterpriseBrowser: (id?: OpenFin.Identity) => Promise<boolean>;
|
|
4
4
|
export declare const isEnterpriseBrowserPlatform: (browserInitOptions?: BrowserInitConfig) => boolean;
|
|
5
5
|
export declare function formatUrl(url: string): string;
|
|
6
|
+
export declare const getIsEnterpriseBrowser: (id?: OpenFin.Identity) => Promise<boolean>;
|
|
6
7
|
export declare const getMenuWindowWidth: () => Promise<number>;
|
|
7
8
|
export declare const isLandingPage: (url: string) => boolean;
|
|
@@ -11,7 +11,7 @@ export declare const isDocumentDefined: boolean;
|
|
|
11
11
|
export declare const isWindowDefinedWithIndexDB: boolean;
|
|
12
12
|
export declare const finUUID: string;
|
|
13
13
|
export declare const finName: string;
|
|
14
|
-
export declare const finEntityType: "" | "
|
|
14
|
+
export declare const finEntityType: "" | "view" | "window";
|
|
15
15
|
export declare const isEnvLocal: boolean;
|
|
16
16
|
export declare const isEnvDev: boolean;
|
|
17
17
|
export declare const isEnvStaging: boolean;
|