@openfin/workspace-platform 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.
@@ -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;
@@ -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>;