@openfin/workspace-platform 22.1.5 → 22.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.
@@ -1,4 +1,4 @@
1
1
  import { ThemeStorageController } from '../../../../client-api-platform/src/api/controllers/theme-storage-controller';
2
2
  import { CustomThemes } from '../../../../client-api-platform/src/shapes';
3
- export declare const initialiseStoragePalettes: (customThemes: CustomThemes, isWindows: boolean) => void;
3
+ export declare const initialiseStoragePalettes: (customThemes: CustomThemes | undefined, isWindows: boolean) => void;
4
4
  export declare const getThemeStorageController: () => ThemeStorageController;
@@ -6,7 +6,7 @@ import { ColorSchemeOptionType, CustomPaletteSet } from '../../../../client-api-
6
6
  * This is particularly useful if a value uses a different palette constant depending on scheme.
7
7
  */
8
8
  export declare const getPaletteExtensions: (palette: CustomPaletteSet, paletteScheme: 'light' | 'dark', isWindows: boolean) => {
9
- dockExpandedContainerBorder: string;
9
+ dockExpandedContainerBorderColor: string;
10
10
  dockExpandedContainerBorderRadius: string;
11
11
  dockExpandedContainerBackground: string;
12
12
  fillerBackgroundColor: string;
@@ -18,6 +18,7 @@ export declare const getPaletteExtensions: (palette: CustomPaletteSet, paletteSc
18
18
  contentMenuItemContainerHoverBackground: string;
19
19
  contentMenuHeaderBorderColor: string;
20
20
  dockCompanionSeparatorBorderColor: string;
21
+ dockComponentContainerBorderColor: string;
21
22
  companionDockButtonActiveBackground: string;
22
23
  companionDockButtonHoverBackground: string;
23
24
  selectedTab: string;
@@ -1 +1 @@
1
- export {};
1
+ import '@common/test/fin-mocks';
@@ -238,6 +238,7 @@ export declare const OpenFinDarkTheme: {
238
238
  contentBackground5: string;
239
239
  };
240
240
  export declare const DefaultOpenFinTheme: CustomThemes;
241
+ export declare const getComputedPaletteSets: (customTheme: CustomThemeOptions | CustomThemeOptionsWithScheme) => WorkspaceThemeSet;
241
242
  /**
242
243
  * Transforms input {@link CustomThemes} to {@link ComputedThemes} used by Workspace Platform / Notifications Platform.
243
244
  *