@openfin/workspace-platform 24.0.11 → 24.0.13
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 +41 -0
- package/externals.report.json +12 -12
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +2 -2
|
@@ -2343,6 +2343,26 @@ export type WorkspacePlatformOverrideCallback = OpenFin.OverrideCallback<Workspa
|
|
|
2343
2343
|
* @deprecated
|
|
2344
2344
|
*/
|
|
2345
2345
|
export type BrowserOverrideCallback = WorkspacePlatformOverrideCallback;
|
|
2346
|
+
/**
|
|
2347
|
+
* Content menu entry shape cloned and re-exported from UI Library.
|
|
2348
|
+
*/
|
|
2349
|
+
export type ContentMenuEntry = {
|
|
2350
|
+
bookmarked?: boolean;
|
|
2351
|
+
} & ({
|
|
2352
|
+
type: 'folder';
|
|
2353
|
+
id: string;
|
|
2354
|
+
label: string;
|
|
2355
|
+
children: ContentMenuEntry[];
|
|
2356
|
+
} | {
|
|
2357
|
+
type: 'item';
|
|
2358
|
+
id: string;
|
|
2359
|
+
icon: string | {
|
|
2360
|
+
dark: string;
|
|
2361
|
+
light: string;
|
|
2362
|
+
};
|
|
2363
|
+
label: string;
|
|
2364
|
+
itemData: any;
|
|
2365
|
+
});
|
|
2346
2366
|
export type LaunchDockEntryPayload = {
|
|
2347
2367
|
entry: DockEntry;
|
|
2348
2368
|
sourceEvent?: Pick<MouseEvent, 'ctrlKey' | 'metaKey' | 'shiftKey'>;
|
|
@@ -2350,6 +2370,27 @@ export type LaunchDockEntryPayload = {
|
|
|
2350
2370
|
export type BookmarkDockEntryPayload = {
|
|
2351
2371
|
entry: DockEntry;
|
|
2352
2372
|
};
|
|
2373
|
+
/**
|
|
2374
|
+
* Represents dock entry for favorites
|
|
2375
|
+
*/
|
|
2376
|
+
export type DockEntry = {
|
|
2377
|
+
type: 'folder';
|
|
2378
|
+
id: string;
|
|
2379
|
+
label: string;
|
|
2380
|
+
icon?: string | {
|
|
2381
|
+
dark: string;
|
|
2382
|
+
light: string;
|
|
2383
|
+
};
|
|
2384
|
+
} | {
|
|
2385
|
+
type: 'item';
|
|
2386
|
+
id: string;
|
|
2387
|
+
icon: string | {
|
|
2388
|
+
dark: string;
|
|
2389
|
+
light: string;
|
|
2390
|
+
};
|
|
2391
|
+
label: string;
|
|
2392
|
+
itemData?: any;
|
|
2393
|
+
};
|
|
2353
2394
|
/**
|
|
2354
2395
|
* Configuration options for Browser window's icons.
|
|
2355
2396
|
*/
|
package/externals.report.json
CHANGED
|
@@ -21,14 +21,6 @@
|
|
|
21
21
|
"issuer": "common/src/utils/color-linking.ts"
|
|
22
22
|
}
|
|
23
23
|
],
|
|
24
|
-
"lodash.clonedeep": [
|
|
25
|
-
{
|
|
26
|
-
"type": "explicit",
|
|
27
|
-
"version": "4.5.0",
|
|
28
|
-
"packageName": "common/package.json",
|
|
29
|
-
"issuer": "common/src/utils/layout.ts"
|
|
30
|
-
}
|
|
31
|
-
],
|
|
32
24
|
"react-i18next": [
|
|
33
25
|
{
|
|
34
26
|
"type": "explicit",
|
|
@@ -45,13 +37,15 @@
|
|
|
45
37
|
"issuer": "common/src/api/i18next.ts"
|
|
46
38
|
}
|
|
47
39
|
],
|
|
48
|
-
"
|
|
40
|
+
"lodash.clonedeep": [
|
|
49
41
|
{
|
|
50
42
|
"type": "explicit",
|
|
51
|
-
"version": "
|
|
43
|
+
"version": "4.5.0",
|
|
52
44
|
"packageName": "common/package.json",
|
|
53
|
-
"issuer": "common/src/
|
|
54
|
-
}
|
|
45
|
+
"issuer": "common/src/utils/layout.ts"
|
|
46
|
+
}
|
|
47
|
+
],
|
|
48
|
+
"dexie": [
|
|
55
49
|
{
|
|
56
50
|
"type": "root-implicit",
|
|
57
51
|
"version": "^4.0.11",
|
|
@@ -64,6 +58,12 @@
|
|
|
64
58
|
"packageName": "client-api-platform/package.json",
|
|
65
59
|
"issuer": "client-api-platform/src/api/dock/idb.ts"
|
|
66
60
|
},
|
|
61
|
+
{
|
|
62
|
+
"type": "explicit",
|
|
63
|
+
"version": "^4.0.11",
|
|
64
|
+
"packageName": "common/package.json",
|
|
65
|
+
"issuer": "common/src/api/pages/idb.ts"
|
|
66
|
+
},
|
|
67
67
|
{
|
|
68
68
|
"type": "explicit",
|
|
69
69
|
"version": "^4.0.11",
|