@openfin/workspace-platform 9.2.0 → 9.2.2
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.
|
@@ -47,6 +47,11 @@ export interface CustomPaletteSet extends DefaultPaletteSet {
|
|
|
47
47
|
background4?: string;
|
|
48
48
|
background5?: string;
|
|
49
49
|
background6?: string;
|
|
50
|
+
contentBackground1?: string;
|
|
51
|
+
contentBackground2?: string;
|
|
52
|
+
contentBackground3?: string;
|
|
53
|
+
contentBackground4?: string;
|
|
54
|
+
contentBackground5?: string;
|
|
50
55
|
}
|
|
51
56
|
/**
|
|
52
57
|
* computeThemes()
|
|
@@ -18,3 +18,4 @@ export declare const getResponseModalBounds: (modalOptions: ResponseModalConfig[
|
|
|
18
18
|
* @param monitor the monitor to check against
|
|
19
19
|
*/
|
|
20
20
|
export declare function getPercentageOfBoundsInMonitor(bounds: OpenFin.Bounds, monitor: OpenFin.MonitorDetails): number;
|
|
21
|
+
export declare function getMonitorWindowMaximizedOn(parentWindowBounds: OpenFin.WindowBounds): Promise<OpenFin.MonitorDetails>;
|
|
@@ -28,7 +28,9 @@ export declare enum PageRoute {
|
|
|
28
28
|
*/
|
|
29
29
|
export declare enum AssetRoute {
|
|
30
30
|
IconOpenFinLogo = "/icons/openfinlogo.svg",
|
|
31
|
-
IconFilter = "/icons/filter.svg"
|
|
31
|
+
IconFilter = "/icons/filter.svg",
|
|
32
|
+
LightStorefront = "/icons/lightstorefront.png",
|
|
33
|
+
DarkStorefront = "/icons/darkstorefront.png"
|
|
32
34
|
}
|
|
33
35
|
/**
|
|
34
36
|
* Home DeepLink Options
|
|
@@ -57,5 +59,7 @@ declare const _default: {
|
|
|
57
59
|
DeprecatedAlert: PageRoute.DeprecatedAlert;
|
|
58
60
|
IconOpenFinLogo: AssetRoute.IconOpenFinLogo;
|
|
59
61
|
IconFilter: AssetRoute.IconFilter;
|
|
62
|
+
LightStorefront: AssetRoute.LightStorefront;
|
|
63
|
+
DarkStorefront: AssetRoute.DarkStorefront;
|
|
60
64
|
};
|
|
61
65
|
export default _default;
|