@openfin/workspace-platform 22.3.5 → 22.3.7
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/api/modal.d.ts +1 -0
- package/client-api-platform/src/shapes.d.ts +3 -2
- package/common/src/utils/global-context-menu.d.ts +7 -0
- package/common/src/utils/route.d.ts +3 -1
- package/common/src/utils/window.d.ts +2 -1
- package/externals.report.json +8 -8
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/workspace_platform.zip +0 -0
|
@@ -3,3 +3,4 @@ import { AboutPageConfig, SendUpdateVersionModalResponsePayload } from '../../..
|
|
|
3
3
|
export declare const enterpriseModalChannelClient: () => Promise<OpenFin.ChannelClient>;
|
|
4
4
|
export declare function sendUpdateVersionModalResponse(payload: SendUpdateVersionModalResponsePayload): Promise<void>;
|
|
5
5
|
export declare const showAboutPagePopup: (payload: AboutPageConfig) => Promise<OpenFin.Window>;
|
|
6
|
+
export declare const showDesktopSignalsModal: (winIdentity: OpenFin.Identity) => Promise<OpenFin.Window>;
|
|
@@ -2,8 +2,7 @@ import type OpenFin from '@openfin/core';
|
|
|
2
2
|
import { IconProps, IconType, Languages } from '@openfin/ui-library';
|
|
3
3
|
import type { AnalyticsEvent } from '../../common/src/utils/usage-register';
|
|
4
4
|
import { CustomActionSpecifier, CustomButtonConfig } from '../../common/src/api/action';
|
|
5
|
-
import { AddDefaultPagePayload, AttachedPage, BookmarkNode, CopyPagePayload, HandlePagesAndWindowClosePayload, HandlePagesAndWindowCloseResult, HandleSaveModalOnPageClosePayload, Page, PageLayoutsWithSelectedViews, PageWithUpdatableRuntimeAttribs, SaveModalOnPageCloseResult, ShouldPageClosePayload, ShouldPageCloseResult, ViewsPreventingUnloadPayload } from '../../common/src/api/pages/shapes';
|
|
6
|
-
import { SetActivePageForWindowPayload } from '../../common/src/api/pages/shapes';
|
|
5
|
+
import { AddDefaultPagePayload, AttachedPage, BookmarkNode, CopyPagePayload, HandlePagesAndWindowClosePayload, HandlePagesAndWindowCloseResult, HandleSaveModalOnPageClosePayload, Page, PageLayoutsWithSelectedViews, PageWithUpdatableRuntimeAttribs, SaveModalOnPageCloseResult, SetActivePageForWindowPayload, ShouldPageClosePayload, ShouldPageCloseResult, ViewsPreventingUnloadPayload } from '../../common/src/api/pages/shapes';
|
|
7
6
|
import { NotificationsCustomManifestOptions } from '../../common/src/api/shapes/notifications';
|
|
8
7
|
import type { CustomThemes } from '../../common/src/api/theming';
|
|
9
8
|
import { App, DockProviderConfigWithIdentity, StoreButtonConfig } from '../../client-api/src/shapes';
|
|
@@ -119,6 +118,7 @@ export declare enum GlobalContextMenuOptionType {
|
|
|
119
118
|
DeleteWorkspace = "DeleteWorkspace",
|
|
120
119
|
Downloads = "Downloads",
|
|
121
120
|
OpenStorefront = "OpenStorefront",
|
|
121
|
+
ManageDesktopSignals = "ManageDesktopSignals",
|
|
122
122
|
Appearance = "Appearance",
|
|
123
123
|
Quit = "Quit",
|
|
124
124
|
Custom = "Custom"
|
|
@@ -162,6 +162,7 @@ export declare enum PageTabContextMenuOptionType {
|
|
|
162
162
|
Print = "Print",
|
|
163
163
|
PrintAll = "PrintAll",
|
|
164
164
|
PrintScreen = "PrintScreen",
|
|
165
|
+
ManageDesktopSignals = "ManageDesktopSignals",
|
|
165
166
|
AddToChannel = "AddToChannel",
|
|
166
167
|
Custom = "Custom"
|
|
167
168
|
}
|
|
@@ -67,6 +67,13 @@ export declare const saveWorkspaceAs: () => {
|
|
|
67
67
|
};
|
|
68
68
|
};
|
|
69
69
|
export declare const printMenuOptions: (isViewSelected: boolean) => Promise<GlobalContextMenuItemTemplate>;
|
|
70
|
+
export declare const manageDesktopSignals: () => {
|
|
71
|
+
type: MenuItemType;
|
|
72
|
+
label: string;
|
|
73
|
+
data: {
|
|
74
|
+
type: WP.GlobalContextMenuOptionType;
|
|
75
|
+
};
|
|
76
|
+
};
|
|
70
77
|
export declare const renameWorkspace: () => {
|
|
71
78
|
type: MenuItemType;
|
|
72
79
|
label: string;
|
|
@@ -31,7 +31,8 @@ declare enum BrowserRoute {
|
|
|
31
31
|
EnterpriseAboutPage = "/popup-menu/about/",
|
|
32
32
|
DropdownMenu = "/dropdown-menu/",
|
|
33
33
|
EnterpriseDock = "/dock/",
|
|
34
|
-
ZoomControlsDialog = "/zoom-controls-dialog/"
|
|
34
|
+
ZoomControlsDialog = "/zoom-controls-dialog/",
|
|
35
|
+
DesktopSignalsModal = "/popup-menu/desktop-signals-modal/"
|
|
35
36
|
}
|
|
36
37
|
declare const PageRoute: {
|
|
37
38
|
Browser: BrowserRoute.Browser;
|
|
@@ -51,6 +52,7 @@ declare const PageRoute: {
|
|
|
51
52
|
DropdownMenu: BrowserRoute.DropdownMenu;
|
|
52
53
|
EnterpriseDock: BrowserRoute.EnterpriseDock;
|
|
53
54
|
ZoomControlsDialog: BrowserRoute.ZoomControlsDialog;
|
|
55
|
+
DesktopSignalsModal: BrowserRoute.DesktopSignalsModal;
|
|
54
56
|
Home: WorkspaceRoute.Home;
|
|
55
57
|
HomeSearch: WorkspaceRoute.HomeSearch;
|
|
56
58
|
HomePagesRename: WorkspaceRoute.HomePagesRename;
|
|
@@ -18,7 +18,8 @@ export declare enum WindowName {
|
|
|
18
18
|
AICompanionPrefix = "openfin-ai-companion-",
|
|
19
19
|
UpdateVersionModal = "here-update-version-modal",
|
|
20
20
|
ZoomControlsDialog = "here-zoom-controls-dialog",
|
|
21
|
-
AboutPageWindow = "here-about-page"
|
|
21
|
+
AboutPageWindow = "here-about-page",
|
|
22
|
+
DesktopSignalsModal = "here-desktop-signals-modal"
|
|
22
23
|
}
|
|
23
24
|
export interface WindowIdentity {
|
|
24
25
|
uuid: ApplicationUUID | string;
|
package/externals.report.json
CHANGED
|
@@ -13,14 +13,6 @@
|
|
|
13
13
|
"issuer": "common/src/utils/layout.ts"
|
|
14
14
|
}
|
|
15
15
|
],
|
|
16
|
-
"title-case": [
|
|
17
|
-
{
|
|
18
|
-
"type": "root-implicit",
|
|
19
|
-
"version": "3.0.3",
|
|
20
|
-
"packageName": "common/package.json",
|
|
21
|
-
"issuer": "common/src/utils/color-linking.ts"
|
|
22
|
-
}
|
|
23
|
-
],
|
|
24
16
|
"react-i18next": [
|
|
25
17
|
{
|
|
26
18
|
"type": "root-implicit",
|
|
@@ -37,6 +29,14 @@
|
|
|
37
29
|
"issuer": "common/src/api/i18next.ts"
|
|
38
30
|
}
|
|
39
31
|
],
|
|
32
|
+
"title-case": [
|
|
33
|
+
{
|
|
34
|
+
"type": "root-implicit",
|
|
35
|
+
"version": "3.0.3",
|
|
36
|
+
"packageName": "common/package.json",
|
|
37
|
+
"issuer": "common/src/utils/color-linking.ts"
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
40
|
"dexie": [
|
|
41
41
|
{
|
|
42
42
|
"type": "explicit",
|