@openfin/workspace-platform 20.3.0 → 20.3.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.
- package/common/src/api/overrides.d.ts +6 -0
- package/common/src/utils/route.d.ts +4 -4
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/workspace_platform.zip +0 -0
|
@@ -16,6 +16,12 @@ export interface Overrides {
|
|
|
16
16
|
disableOpenFinAnalytics: boolean;
|
|
17
17
|
analyticsEndpoint: string;
|
|
18
18
|
translationOverridesUrl: string;
|
|
19
|
+
/**
|
|
20
|
+
* WRK-4846
|
|
21
|
+
* This property is internal but is being temporarily exposed for Wells Fargo.
|
|
22
|
+
* It will be removed once Workspace adopts the fix in Runtime version 38.
|
|
23
|
+
*/
|
|
24
|
+
displayViewTabDefaultIcon: boolean;
|
|
19
25
|
}
|
|
20
26
|
export declare function getManifestOverrides(): Promise<Partial<Overrides>>;
|
|
21
27
|
export declare function getOverrides(): Promise<Partial<Overrides>>;
|
|
@@ -25,10 +25,10 @@ declare enum BrowserRoute {
|
|
|
25
25
|
ResponseModal = "/popup-menu/response-modal/",
|
|
26
26
|
CloseConfirmationModal = "/popup-menu/close-confirmation-modal/",
|
|
27
27
|
EnterpriseBrowser = "/enterprise/",
|
|
28
|
-
EnterpriseContextMenu = "/
|
|
29
|
-
EnterpriseBookmarkDialog = "/
|
|
30
|
-
DropdownMenu = "/
|
|
31
|
-
EnterpriseDock = "/
|
|
28
|
+
EnterpriseContextMenu = "/context-menu/",
|
|
29
|
+
EnterpriseBookmarkDialog = "/bookmark-dialog/",
|
|
30
|
+
DropdownMenu = "/dropdown-menu/",
|
|
31
|
+
EnterpriseDock = "/dock/"
|
|
32
32
|
}
|
|
33
33
|
declare const PageRoute: {
|
|
34
34
|
Browser: BrowserRoute.Browser;
|