@openfin/workspace-platform 18.0.8 → 18.1.1
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-platform/src/shapes.d.ts +0 -13
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -124,22 +124,10 @@ export declare enum PageTabContextMenuOptionType {
|
|
|
124
124
|
CloseOthers = "Close others",
|
|
125
125
|
Custom = "Custom"
|
|
126
126
|
}
|
|
127
|
-
export declare enum EnterpriseMainContextMenuOptionType {
|
|
128
|
-
Lock = "Lock",
|
|
129
|
-
ShowHideTabs = "ShowHideTabs",
|
|
130
|
-
AddToChanel = "AddToChannel",
|
|
131
|
-
QuitBrowser = "QuitBrowser",
|
|
132
|
-
Print = "Print",
|
|
133
|
-
Pin = "Pin"
|
|
134
|
-
}
|
|
135
127
|
/**Shape of the data property of a global context menu template item */
|
|
136
128
|
export interface GlobalContextMenuItemData extends ContextMenuItemData {
|
|
137
129
|
type: GlobalContextMenuOptionType;
|
|
138
130
|
}
|
|
139
|
-
export interface EnterpriseMainContextMenuItemData extends ContextMenuItemData {
|
|
140
|
-
type: GlobalContextMenuOptionType | EnterpriseMainContextMenuOptionType | ViewTabMenuOptionType;
|
|
141
|
-
option?: string;
|
|
142
|
-
}
|
|
143
131
|
export interface WorkspaceContextMenuItemData extends GlobalContextMenuItemData {
|
|
144
132
|
workspaceId: string;
|
|
145
133
|
}
|
|
@@ -148,7 +136,6 @@ export interface AppearanceContextMenuItemData extends GlobalContextMenuItemData
|
|
|
148
136
|
}
|
|
149
137
|
/**Configuration of an option in the global context menu */
|
|
150
138
|
export type GlobalContextMenuItemTemplate = OpenFin.MenuItemTemplate<GlobalContextMenuItemData>;
|
|
151
|
-
export type EnterpriseMainContextMenuItemTemplate = OpenFin.MenuItemTemplate<EnterpriseMainContextMenuItemData>;
|
|
152
139
|
/**Shape of the data property of a page tab context menu template item */
|
|
153
140
|
export interface PageTabContextMenuItemData extends ContextMenuItemData {
|
|
154
141
|
type: PageTabContextMenuOptionType;
|