@openfin/workspace-platform 19.3.5 → 19.3.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.
@@ -1,6 +1,6 @@
1
1
  import type { DefaultTheme } from 'styled-components';
2
2
  import type OpenFin from '@openfin/core';
3
- import { ThemeSet } from '@openfin/ui-library';
3
+ import { ColorSchemeType, ThemeSet } from '@openfin/ui-library';
4
4
  import { ColorSchemeOptionType } from '../../../client-api-platform/src/shapes';
5
5
  export type WorkspaceComponentSetSelectedSchemePayload = {
6
6
  newScheme: ColorSchemeOptionType;
@@ -246,3 +246,4 @@ export declare const OpenFinDarkTheme: {
246
246
  export declare const computeThemes: (customThemes: CustomThemes, storedScheme?: ColorSchemeOptionType) => ComputedThemes;
247
247
  export declare const getComputedPlatformTheme: (platformIdentity: OpenFin.Identity) => Promise<ComputedTheme>;
248
248
  export declare const setSelectedScheme: (ctx: ColorSchemeOptionType) => Promise<void>;
249
+ export declare const getComputedScheme: (identity?: OpenFin.Identity) => Promise<Exclude<ColorSchemeType, 'system'>>;