@openfin/workspace-platform 18.1.1 → 18.1.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.
@@ -44,7 +44,7 @@ export interface WorkspaceComponentButtonOptions {
44
44
  * A dropdown button presents a list of options the user can choose from.
45
45
  * An action button initiates a single task or action only.
46
46
  */
47
- export declare const enum DockButtonNames {
47
+ export declare enum DockButtonNames {
48
48
  ActionButton = "ActionButton",
49
49
  DropdownButton = "DropdownButton"
50
50
  }
@@ -1 +1,2 @@
1
1
  import '@common/test/crypto-mocks';
2
+ import '@common/test/fin-mocks';
@@ -92,7 +92,7 @@ export declare enum GlobalContextMenuOptionType {
92
92
  /**
93
93
  * Types of color scheme.
94
94
  */
95
- export declare const enum ColorSchemeOptionType {
95
+ export declare enum ColorSchemeOptionType {
96
96
  Light = "light",
97
97
  Dark = "dark",
98
98
  System = "system"
@@ -2,3 +2,4 @@ import type OpenFin from '@openfin/core';
2
2
  export declare const isEnterpriseBrowser: (id?: OpenFin.Identity) => Promise<boolean>;
3
3
  export declare function formatUrl(url: string): string;
4
4
  export declare const getMenuWindowWidth: () => Promise<number>;
5
+ export declare const isLandingPage: (url: string) => boolean;
@@ -16,6 +16,7 @@ export declare enum PageRoute {
16
16
  BrowserPopupMenuColorLinking = "/browser/popup-menu/color-linking/color-linking/",
17
17
  BrowserIndicator = "/browser/indicator/",
18
18
  BrowserPopupMenuAddressSearch = "/browser/popup-menu/address-search/",
19
+ BrowserPopupMenuAddressSearchView = "/browser/popup-menu/address-search-view/",
19
20
  ResponseModal = "/browser/popup-menu/response-modal/",
20
21
  CloseConfirmationModal = "/browser/popup-menu/close-confirmation-modal/",
21
22
  Docs = "/provider/docs/",
@@ -10,7 +10,7 @@ export declare enum WindowName {
10
10
  BrowserIndicator = "openfin-browser-indicator",
11
11
  BrowserWindow = "internal-generated-window",
12
12
  ClassicWindow = "internal-generated-classic-window",
13
- BrowserAddressSearch = "openfin-browser-menu-address-search"
13
+ BrowserAddressSearchPrefix = "openfin-browser-menu-address-search-"
14
14
  }
15
15
  export interface WindowIdentity {
16
16
  uuid: ApplicationUUID | string;