@openfin/workspace 24.0.6 → 24.0.8
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/app-directory.d.ts +1 -1
- package/client-api-platform/src/shapes.d.ts +6 -0
- package/common/src/utils/application.d.ts +7 -0
- package/common/src/utils/os.d.ts +2 -0
- package/common/src/utils/popup-window.d.ts +14 -9
- package/externals.report.json +19 -19
- package/home.js +1 -1
- package/index.js +1 -1
- package/notifications.js +1 -1
- package/notifications.js.map +1 -1
- package/package.json +3 -3
- package/store.js +1 -1
|
@@ -7,7 +7,7 @@ import type { LaunchAppRequest, SearchSitesRequest, SearchSitesResponse, Site }
|
|
|
7
7
|
* @param app the app directory entry.
|
|
8
8
|
* @param opts launch options.
|
|
9
9
|
*/
|
|
10
|
-
export declare function launchApp({ app, target }: LaunchAppRequest): Promise<void | OpenFin.
|
|
10
|
+
export declare function launchApp({ app, target }: LaunchAppRequest): Promise<void | OpenFin.Identity | OpenFin.Platform | OpenFin.View | OpenFin.Application>;
|
|
11
11
|
export declare const enterpriseAppDirectoryChannelClient: () => Promise<OpenFin.ChannelClient>;
|
|
12
12
|
export declare function getResults(payload: {
|
|
13
13
|
req: SearchSitesRequest;
|
|
@@ -852,6 +852,12 @@ export interface BrowserWorkspacePlatformWindowOptions {
|
|
|
852
852
|
* Taskbar Icon for the Browser Window. If light and dark icon are defined, then the taskbar icon will change when the scheme changes.
|
|
853
853
|
*/
|
|
854
854
|
icon?: string | TaskbarIcon;
|
|
855
|
+
/**
|
|
856
|
+
* The size of icons in the browser window. This is set from the platform-level
|
|
857
|
+
* `browserIconSize` option during window creation.
|
|
858
|
+
* @internal Propagated from BrowserInitConfig.browserIconSize
|
|
859
|
+
*/
|
|
860
|
+
browserIconSize?: IconSize;
|
|
855
861
|
}
|
|
856
862
|
/**
|
|
857
863
|
* Request for creating a browser window.
|
|
@@ -30,3 +30,10 @@ export declare const getWorkspaceOFApplication: () => OpenFin.Application;
|
|
|
30
30
|
* @returns A Promise resolving to the application manifest
|
|
31
31
|
*/
|
|
32
32
|
export declare const getCachedManifest: () => Promise<OpenFin.Manifest>;
|
|
33
|
+
/**
|
|
34
|
+
* Gets application info, caching the result after the first call.
|
|
35
|
+
* Application info (manifestUrl, licenseKey, runtime version, etc.) never changes
|
|
36
|
+
* during the application lifecycle. Multiple callers (overrides, sentry, analytics)
|
|
37
|
+
* share a single IPC call.
|
|
38
|
+
*/
|
|
39
|
+
export declare const getCachedAppInfo: () => Promise<OpenFin.ApplicationInfo>;
|
package/common/src/utils/os.d.ts
CHANGED
|
@@ -45,7 +45,6 @@ export declare enum PopupWindowMenuType {
|
|
|
45
45
|
RenameSupertab = "rename-supertab",
|
|
46
46
|
AddEditBookmark = "add-edit-bookmark",
|
|
47
47
|
DropdownMenu = "dropdown-menu",
|
|
48
|
-
ZoomControls = "zoom-controls",
|
|
49
48
|
TabSearch = "tab-search"
|
|
50
49
|
}
|
|
51
50
|
export type BookmarkButtonPayload = {
|
|
@@ -80,15 +79,21 @@ export type BookmarkDialogChannelMessage = BasePopupMenuChannelMessage & {
|
|
|
80
79
|
type: PopupWindowMenuType.AddEditBookmark;
|
|
81
80
|
payload: BookmarkButtonPayload;
|
|
82
81
|
};
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
82
|
+
/** Sent from browser to zoom dialog window to position and hydrate UI (initial open or live sync). */
|
|
83
|
+
export type ZoomControlsDialogStateMessage = {
|
|
84
|
+
/**
|
|
85
|
+
* The identity of the window the dialog/menu invocation came from.
|
|
86
|
+
*/
|
|
87
|
+
parentIdentity: OpenFin.Identity;
|
|
88
|
+
x: number;
|
|
89
|
+
y: number;
|
|
90
|
+
payload: {
|
|
91
|
+
selectedViewIdentity?: OpenFin.Identity;
|
|
92
|
+
zoomPercent?: number;
|
|
93
|
+
openedViaMouseClick?: boolean;
|
|
94
|
+
};
|
|
91
95
|
};
|
|
96
|
+
export declare const ZOOM_DIALOG_CHANNEL_ACTION: "state";
|
|
92
97
|
export type DropdownMenuChannelMessage = BasePopupMenuChannelMessage & {
|
|
93
98
|
type: PopupWindowMenuType.DropdownMenu;
|
|
94
99
|
payload: {
|
package/externals.report.json
CHANGED
|
@@ -2,19 +2,11 @@
|
|
|
2
2
|
"@openfin/notifications": [
|
|
3
3
|
{
|
|
4
4
|
"type": "explicit",
|
|
5
|
-
"version": "2.14.0-alpha-
|
|
5
|
+
"version": "2.14.0-alpha-4520",
|
|
6
6
|
"packageName": "client-api/package.json",
|
|
7
7
|
"issuer": "client-api/src/notifications.ts"
|
|
8
8
|
}
|
|
9
9
|
],
|
|
10
|
-
"@openfin/microsoft365": [
|
|
11
|
-
{
|
|
12
|
-
"type": "explicit",
|
|
13
|
-
"version": "^1.1.0",
|
|
14
|
-
"packageName": "client-api/package.json",
|
|
15
|
-
"issuer": "client-api/src/integrations/microsoft.ts"
|
|
16
|
-
}
|
|
17
|
-
],
|
|
18
10
|
"title-case": [
|
|
19
11
|
{
|
|
20
12
|
"type": "explicit",
|
|
@@ -29,6 +21,14 @@
|
|
|
29
21
|
"issuer": "common/src/utils/color-linking.ts"
|
|
30
22
|
}
|
|
31
23
|
],
|
|
24
|
+
"@openfin/microsoft365": [
|
|
25
|
+
{
|
|
26
|
+
"type": "explicit",
|
|
27
|
+
"version": "^1.1.0",
|
|
28
|
+
"packageName": "client-api/package.json",
|
|
29
|
+
"issuer": "client-api/src/integrations/microsoft.ts"
|
|
30
|
+
}
|
|
31
|
+
],
|
|
32
32
|
"lodash.debounce": [
|
|
33
33
|
{
|
|
34
34
|
"type": "explicit",
|
|
@@ -59,6 +59,14 @@
|
|
|
59
59
|
"issuer": "common/src/api/i18next.ts"
|
|
60
60
|
}
|
|
61
61
|
],
|
|
62
|
+
"lodash.clonedeep": [
|
|
63
|
+
{
|
|
64
|
+
"type": "explicit",
|
|
65
|
+
"version": "4.5.0",
|
|
66
|
+
"packageName": "common/package.json",
|
|
67
|
+
"issuer": "common/src/utils/layout.ts"
|
|
68
|
+
}
|
|
69
|
+
],
|
|
62
70
|
"dexie": [
|
|
63
71
|
{
|
|
64
72
|
"type": "root-implicit",
|
|
@@ -76,21 +84,13 @@
|
|
|
76
84
|
"type": "explicit",
|
|
77
85
|
"version": "^4.0.11",
|
|
78
86
|
"packageName": "common/package.json",
|
|
79
|
-
"issuer": "common/src/
|
|
87
|
+
"issuer": "common/src/api/pages/idb.ts"
|
|
80
88
|
},
|
|
81
89
|
{
|
|
82
90
|
"type": "explicit",
|
|
83
91
|
"version": "^4.0.11",
|
|
84
92
|
"packageName": "common/package.json",
|
|
85
|
-
"issuer": "common/src/
|
|
86
|
-
}
|
|
87
|
-
],
|
|
88
|
-
"lodash.clonedeep": [
|
|
89
|
-
{
|
|
90
|
-
"type": "explicit",
|
|
91
|
-
"version": "4.5.0",
|
|
92
|
-
"packageName": "common/package.json",
|
|
93
|
-
"issuer": "common/src/utils/layout.ts"
|
|
93
|
+
"issuer": "common/src/utils/create-and-migrate-ibd-store.ts"
|
|
94
94
|
}
|
|
95
95
|
]
|
|
96
96
|
}
|