@openfin/workspace 19.1.5 → 19.1.7
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/common/src/api/theming.d.ts +4 -0
- package/common/src/utils/env.d.ts +1 -1
- package/common/src/utils/window.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 +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.View | OpenFin.Identity | OpenFin.Platform | 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;
|
|
@@ -121,6 +121,10 @@ export interface CustomThemeOptionsWithScheme extends BaseThemeOptions {
|
|
|
121
121
|
notificationIndicatorColors?: NotificationIndicatorColorsWithScheme;
|
|
122
122
|
}
|
|
123
123
|
export type CustomThemes = (CustomThemeOptions | CustomThemeOptionsWithScheme)[];
|
|
124
|
+
export interface PreloadedThemeData {
|
|
125
|
+
themes: CustomThemes;
|
|
126
|
+
selectedScheme: ColorSchemeOptionType;
|
|
127
|
+
}
|
|
124
128
|
export interface DefaultPaletteSet {
|
|
125
129
|
brandPrimary: string;
|
|
126
130
|
brandSecondary: string;
|
|
@@ -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: "" | "window" | "view";
|
|
15
15
|
export declare const isEnvLocal: boolean;
|
|
16
16
|
export declare const isEnvDev: boolean;
|
|
17
17
|
export declare const isEnvStaging: boolean;
|
|
@@ -151,6 +151,7 @@ export declare const isWindowRunning: (identity: WindowIdentity) => Promise<bool
|
|
|
151
151
|
export declare const isStorefrontWindowRunning: () => Promise<boolean>;
|
|
152
152
|
export declare const isDockWindowRunning: () => Promise<boolean>;
|
|
153
153
|
export declare const isHomeWindowRunning: () => Promise<boolean>;
|
|
154
|
+
export declare const isNotificationCenterWindowRunning: () => Promise<boolean>;
|
|
154
155
|
export declare const showAndFocusStorefront: () => Promise<void>;
|
|
155
156
|
export declare const showAndFocusDock: () => Promise<void>;
|
|
156
157
|
export declare const getDisableMultiplePagesOption: (identity: WindowIdentity) => Promise<any>;
|