@openfin/workspace 10.3.7 → 10.4.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 (62) hide show
  1. package/client-api/src/dock.test.d.ts +1 -1
  2. package/client-api/src/home.d.ts +3 -3
  3. package/client-api/src/internal.d.ts +2 -1
  4. package/client-api/src/shapes/store.d.ts +44 -15
  5. package/client-api/src/store.test.d.ts +1 -1
  6. package/client-api-platform/src/api/app-directory.d.ts +1 -1
  7. package/client-api-platform/src/api/browser/browser-module.d.ts +1 -0
  8. package/client-api-platform/src/api/browser/index.d.ts +1 -0
  9. package/client-api-platform/src/api/context-menu/index.d.ts +1 -1
  10. package/client-api-platform/src/api/context-menu/utils.d.ts +1 -0
  11. package/client-api-platform/src/api/index.d.ts +1 -0
  12. package/client-api-platform/src/api/pages/helper.d.ts +1 -1
  13. package/client-api-platform/src/api/pages/index.d.ts +1 -0
  14. package/client-api-platform/src/api/storage.d.ts +1 -0
  15. package/client-api-platform/src/api/theming.d.ts +1 -0
  16. package/client-api-platform/src/api/workspaces/idb.d.ts +1 -1
  17. package/client-api-platform/src/init/browser-window-focus.d.ts +1 -1
  18. package/client-api-platform/src/init/custom-actions.d.ts +1 -1
  19. package/client-api-platform/src/init/dialogs.d.ts +1 -0
  20. package/client-api-platform/src/init/override-callback.d.ts +1 -0
  21. package/client-api-platform/src/init/utils.d.ts +1 -1
  22. package/client-api-platform/src/shapes.d.ts +53 -2
  23. package/common/src/api/overrides.d.ts +2 -2
  24. package/common/src/api/pages/attached.d.ts +1 -11
  25. package/common/src/api/pages/idb.d.ts +1 -1
  26. package/common/src/api/pages/shapes.d.ts +1 -1
  27. package/common/src/api/protocol/browser.d.ts +1 -1
  28. package/common/src/api/protocol/notifications.d.ts +1 -1
  29. package/common/src/api/protocol/workspace-platform.d.ts +1 -0
  30. package/common/src/api/protocol/workspace.d.ts +2 -1
  31. package/common/src/api/provider.d.ts +1 -1
  32. package/common/src/api/storefront.d.ts +28 -7
  33. package/common/src/api/theming.d.ts +1 -0
  34. package/common/src/api/workspaces/index.d.ts +1 -1
  35. package/common/src/test/fin-mocks.d.ts +1 -0
  36. package/common/src/utils/application.d.ts +1 -1
  37. package/common/src/utils/context-menu.d.ts +1 -1
  38. package/common/src/utils/defer-show.d.ts +2 -2
  39. package/common/src/utils/global-context-menu.d.ts +1 -0
  40. package/common/src/utils/indicators/browser.d.ts +3 -3
  41. package/common/src/utils/indicators/helper.d.ts +1 -1
  42. package/common/src/utils/landing-page.d.ts +1 -0
  43. package/common/src/utils/layout.d.ts +1 -1
  44. package/common/src/utils/menu-config.d.ts +1 -1
  45. package/common/src/utils/menu-window-provider.d.ts +1 -1
  46. package/common/src/utils/modal-bounds.d.ts +1 -1
  47. package/common/src/utils/page-tab-context-menu.d.ts +1 -0
  48. package/common/src/utils/snapshot.d.ts +1 -1
  49. package/common/src/utils/usage-register.d.ts +1 -1
  50. package/common/src/utils/window.d.ts +1 -1
  51. package/common/src/utils/workspace-modals.d.ts +1 -0
  52. package/home.js +46 -19
  53. package/home.js.map +1 -1
  54. package/index.js +46 -19
  55. package/index.js.map +1 -1
  56. package/notifications.js +46 -19
  57. package/notifications.js.map +1 -1
  58. package/package.json +1 -1
  59. package/search-api/src/internal-shapes.d.ts +1 -1
  60. package/search-api/src/shapes.d.ts +1 -1
  61. package/store.js +46 -19
  62. package/store.js.map +1 -1
@@ -1,4 +1,4 @@
1
- /// <reference types="@openfin/core" />
1
+ import type OpenFin from '@openfin/core';
2
2
  import { AttachedPage } from '../../../client-api-platform/src/shapes';
3
3
  export interface RegisterUsageStatus {
4
4
  apiVersion?: string;
@@ -1,4 +1,4 @@
1
- /// <reference types="@openfin/core" />
1
+ import type OpenFin from '@openfin/core';
2
2
  import { ApplicationUUID } from './application';
3
3
  export declare enum WindowName {
4
4
  Home = "openfin-home",
@@ -1,3 +1,4 @@
1
+ import type OpenFin from '@openfin/core';
1
2
  import { ResponseModalConfig } from '../../../common/src/utils/menu-config';
2
3
  export declare const restoreChangesMenu: (windowIdentity: OpenFin.Identity) => Promise<ResponseModalConfig>;
3
4
  export declare const showSwitchWorkspaceModal: (windowIdentity: OpenFin.Identity, workspaceTitle: string) => Promise<boolean>;