@openfin/workspace 18.1.0 → 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.
- package/client-api/src/shapes/dock.d.ts +1 -1
- package/client-api-platform/src/shapes.d.ts +4 -1
- package/common/src/utils/enterpriseBrowser.d.ts +1 -0
- package/common/src/utils/route.d.ts +1 -0
- package/common/src/utils/window.d.ts +1 -1
- package/home.js +3 -3
- package/home.js.map +1 -1
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/notifications.js +1 -1
- package/notifications.js.map +1 -1
- package/package.json +1 -1
- package/store.js +1 -1
- package/store.js.map +1 -1
|
@@ -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
|
|
47
|
+
export declare enum DockButtonNames {
|
|
48
48
|
ActionButton = "ActionButton",
|
|
49
49
|
DropdownButton = "DropdownButton"
|
|
50
50
|
}
|
|
@@ -94,7 +94,7 @@ export declare enum GlobalContextMenuOptionType {
|
|
|
94
94
|
/**
|
|
95
95
|
* Types of color scheme.
|
|
96
96
|
*/
|
|
97
|
-
export declare
|
|
97
|
+
export declare enum ColorSchemeOptionType {
|
|
98
98
|
Light = "light",
|
|
99
99
|
Dark = "dark",
|
|
100
100
|
System = "system"
|
|
@@ -126,6 +126,7 @@ export declare enum PageTabContextMenuOptionType {
|
|
|
126
126
|
CloseOthers = "Close others",
|
|
127
127
|
Custom = "Custom"
|
|
128
128
|
}
|
|
129
|
+
/** @internal */
|
|
129
130
|
export declare enum EnterpriseMainContextMenuOptionType {
|
|
130
131
|
Lock = "Lock",
|
|
131
132
|
ShowHideTabs = "ShowHideTabs",
|
|
@@ -138,6 +139,7 @@ export declare enum EnterpriseMainContextMenuOptionType {
|
|
|
138
139
|
export interface GlobalContextMenuItemData extends ContextMenuItemData {
|
|
139
140
|
type: GlobalContextMenuOptionType;
|
|
140
141
|
}
|
|
142
|
+
/** @internal */
|
|
141
143
|
export interface EnterpriseMainContextMenuItemData extends ContextMenuItemData {
|
|
142
144
|
type: GlobalContextMenuOptionType | EnterpriseMainContextMenuOptionType | ViewTabMenuOptionType;
|
|
143
145
|
option?: string;
|
|
@@ -150,6 +152,7 @@ export interface AppearanceContextMenuItemData extends GlobalContextMenuItemData
|
|
|
150
152
|
}
|
|
151
153
|
/**Configuration of an option in the global context menu */
|
|
152
154
|
export type GlobalContextMenuItemTemplate = OpenFin.MenuItemTemplate<GlobalContextMenuItemData>;
|
|
155
|
+
/** @internal */
|
|
153
156
|
export type EnterpriseMainContextMenuItemTemplate = OpenFin.MenuItemTemplate<EnterpriseMainContextMenuItemData>;
|
|
154
157
|
/**Shape of the data property of a page tab context menu template item */
|
|
155
158
|
export interface PageTabContextMenuItemData extends ContextMenuItemData {
|
|
@@ -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
|
-
|
|
13
|
+
BrowserAddressSearchPrefix = "openfin-browser-menu-address-search-"
|
|
14
14
|
}
|
|
15
15
|
export interface WindowIdentity {
|
|
16
16
|
uuid: ApplicationUUID | string;
|