@openfin/workspace 13.0.7 → 13.1.0

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.
Files changed (69) hide show
  1. package/client-api/src/index.d.ts +5 -0
  2. package/client-api/src/integrations/microsoft.d.ts +155 -0
  3. package/client-api/src/integrations/microsoft.shapes.d.ts +208 -0
  4. package/client-api/src/integrations/microsoft.utils.d.ts +80 -0
  5. package/client-api/src/integrations.d.ts +3 -0
  6. package/client-api/src/internal.d.ts +2 -2
  7. package/client-api/src/shapes/home.d.ts +71 -3
  8. package/client-api/src/shapes/integrations.d.ts +36 -0
  9. package/client-api-platform/src/api/context-menu/utils.d.ts +4 -0
  10. package/client-api-platform/src/api/dock/idb.d.ts +0 -1
  11. package/client-api-platform/src/shapes.d.ts +46 -9
  12. package/common/src/api/pages/shapes.d.ts +2 -0
  13. package/common/src/api/protocol/shapes/workspace.d.ts +157 -0
  14. package/common/src/api/protocol/workspace.d.ts +12 -58
  15. package/common/src/api/provider.d.ts +5 -1
  16. package/common/src/api/search.d.ts +1 -3
  17. package/common/src/api/storefront.d.ts +11 -0
  18. package/common/src/api/theming.d.ts +6 -0
  19. package/common/src/utils/a11y/search.a11y.d.ts +1 -0
  20. package/common/src/utils/global-context-menu.d.ts +3 -1
  21. package/common/src/utils/lru-cache.d.ts +11 -0
  22. package/common/src/utils/menu-window-provider.d.ts +14 -16
  23. package/common/src/utils/route.d.ts +22 -34
  24. package/common/src/utils/router/base.d.ts +2 -2
  25. package/common/src/utils/shared-emitter.d.ts +7 -6
  26. package/common/src/utils/types.d.ts +7 -0
  27. package/common/src/utils/usage-register.d.ts +3 -1
  28. package/common/src/utils/window.d.ts +27 -14
  29. package/home.js +58 -61
  30. package/home.js.map +1 -1
  31. package/index.js +127 -130
  32. package/index.js.LICENSE.txt +2 -0
  33. package/index.js.map +1 -1
  34. package/notifications.js +57 -60
  35. package/notifications.js.map +1 -1
  36. package/package.json +6 -3
  37. package/search-api/src/client/index.d.ts +2 -2
  38. package/search-api/src/client/internal.d.ts +6 -6
  39. package/search-api/src/client/remote/channel-client-factory.d.ts +1 -2
  40. package/search-api/src/client/remote/channel-client.d.ts +4 -8
  41. package/search-api/src/client/remote/data.d.ts +3 -4
  42. package/search-api/src/client/remote/disconnect.d.ts +1 -4
  43. package/search-api/src/client/remote/dispatch.d.ts +2 -3
  44. package/search-api/src/client/remote/requests.d.ts +1 -4
  45. package/search-api/src/client/remote/search-close.d.ts +2 -5
  46. package/search-api/src/common.d.ts +19 -29
  47. package/search-api/src/fin/index.d.ts +2 -2
  48. package/search-api/src/fin/shapes.d.ts +4 -4
  49. package/search-api/src/index.d.ts +1 -1
  50. package/search-api/src/internal-shapes.d.ts +0 -19
  51. package/search-api/src/provider/index.d.ts +2 -3
  52. package/search-api/src/provider/internal.d.ts +5 -9
  53. package/search-api/src/provider/remote/channel-factory.d.ts +1 -2
  54. package/search-api/src/provider/remote/channel.d.ts +4 -11
  55. package/search-api/src/provider/remote/connection.d.ts +5 -8
  56. package/search-api/src/provider/remote/data.d.ts +3 -5
  57. package/search-api/src/provider/remote/deregistration.d.ts +1 -2
  58. package/search-api/src/provider/remote/disconnect.d.ts +1 -1
  59. package/search-api/src/provider/remote/disconnection.d.ts +5 -4
  60. package/search-api/src/provider/remote/dispatch.d.ts +2 -3
  61. package/search-api/src/provider/remote/info.d.ts +1 -1
  62. package/search-api/src/provider/remote/registration.d.ts +6 -8
  63. package/search-api/src/provider/remote/search-close.d.ts +3 -4
  64. package/search-api/src/provider/remote/search.d.ts +3 -4
  65. package/search-api/src/shapes.d.ts +6 -45
  66. package/store.js +57 -60
  67. package/store.js.map +1 -1
  68. package/common/src/api/home.d.ts +0 -19
  69. package/common/src/api/pages/legacy.d.ts +0 -16
@@ -1,19 +0,0 @@
1
- import { HomeSearchListenerRequest } from '../../../client-api/src/shapes';
2
- /**
3
- * The search topic that Home uses.
4
- */
5
- export declare const searchTopic = "home";
6
- /**
7
- * The ids of home providers that are built into Home.
8
- */
9
- export declare enum HomeBuiltInProviderID {
10
- /**
11
- * Built in Home provider that provides commands.
12
- */
13
- Commands = "home-commands"
14
- }
15
- /**
16
- * Assign a search context to Home.
17
- * @param ctx the search context to assign.
18
- */
19
- export declare function assignHomeSearchContext(ctx: Partial<HomeSearchListenerRequest['context']>): Promise<void>;
@@ -1,16 +0,0 @@
1
- import type { AttachedPage, PageLayout } from '../../../../common/src/api/pages/shapes';
2
- interface Workstack {
3
- id: string;
4
- name: string;
5
- isReadOnly: boolean;
6
- layout: PageLayout;
7
- isActive: boolean;
8
- }
9
- export declare function convertWorkstackToAttachedPage({ id, name, ...rest }: Workstack & AttachedPage): AttachedPage;
10
- /**
11
- * Attempts to fix any misconfigurations in a list of attached pages.
12
- * @param pages the pages to fix.
13
- * @returns the fixed pages.
14
- */
15
- export declare const fixAttachedPages: (pages?: AttachedPage[]) => AttachedPage[];
16
- export {};