@openfin/workspace 19.1.16 → 19.1.18
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/init/override-callback/browser-defaults.d.ts +5 -0
- package/common/src/api/pages/helper.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
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
import type OpenFin from '@openfin/core';
|
|
2
|
+
import { WindowName } from '../../../../common/src/utils/window';
|
|
2
3
|
import type { PreloadedThemeData } from '../../../../common/src/api/theming';
|
|
3
4
|
import { BrowserInitConfig } from '../../../../client-api-platform/src/shapes';
|
|
4
5
|
export declare const DEFAULT_BROWSER_URL: string;
|
|
5
6
|
export declare const ENTERPRISE_LANDING_PAGE_URL: string;
|
|
7
|
+
export declare const searchMenuIdentityBase: {
|
|
8
|
+
uuid: string;
|
|
9
|
+
name: WindowName;
|
|
10
|
+
};
|
|
6
11
|
/**
|
|
7
12
|
* Applies default options to the creation of browser windows.
|
|
8
13
|
*/
|
|
@@ -6,7 +6,7 @@ export interface PagesLayoutSnapshot {
|
|
|
6
6
|
};
|
|
7
7
|
pages: AttachedPageInternal[];
|
|
8
8
|
}
|
|
9
|
-
export declare const convertPagesToLayoutSnapshot: (pages: AttachedPageInternal[]) => {
|
|
9
|
+
export declare const convertPagesToLayoutSnapshot: (pages: AttachedPageInternal[], isEnterprise: boolean) => {
|
|
10
10
|
layouts: Record<string, OpenFin.LayoutOptions>;
|
|
11
11
|
pages: AttachedPageInternal[];
|
|
12
12
|
};
|