@openfin/workspace 23.0.0 → 23.0.1-alpha.75ce533e

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 (49) hide show
  1. package/client-api/src/notifications.d.ts +2 -2
  2. package/client-api/src/shapes/index.d.ts +1 -1
  3. package/client-api/src/shapes/notifications.d.ts +1 -1
  4. package/client-api-platform/src/api/app-directory.d.ts +1 -1
  5. package/client-api-platform/src/api/controllers/theme-storage-controller-store.d.ts +16 -2
  6. package/client-api-platform/src/api/controllers/theme-storage-controller.d.ts +26 -23
  7. package/client-api-platform/src/api/dock.d.ts +3 -3
  8. package/client-api-platform/src/api/theming.d.ts +3 -2
  9. package/client-api-platform/src/api/utils.d.ts +11 -0
  10. package/client-api-platform/src/init/override-callback/view-components.d.ts +1 -1
  11. package/client-api-platform/src/init/override-callback/view-defaults.d.ts +2 -1
  12. package/client-api-platform/src/init/theming.d.ts +5 -2
  13. package/client-api-platform/src/shapes.d.ts +128 -16
  14. package/common/src/api/protocol/notifications.d.ts +8 -0
  15. package/common/src/api/protocol/workspace-platform.d.ts +5 -2
  16. package/common/src/api/protocol/workspace.d.ts +2 -2
  17. package/common/src/api/shapes/notifications.d.ts +1 -0
  18. package/common/src/api/theming.d.ts +27 -14
  19. package/common/src/utils/application.d.ts +7 -0
  20. package/common/src/utils/env.d.ts +1 -1
  21. package/common/src/utils/find-in-page/findInPageChannel.d.ts +37 -0
  22. package/common/src/utils/find-in-page/showFindInPageHandler.d.ts +2 -0
  23. package/common/src/utils/global-context-menu.d.ts +7 -0
  24. package/common/src/utils/landing-page.d.ts +1 -1
  25. package/common/src/utils/layout.d.ts +37 -8
  26. package/common/src/utils/logger.d.ts +110 -1
  27. package/common/src/utils/menu-window-provider.d.ts +7 -3
  28. package/common/src/utils/merge-deep.d.ts +1 -0
  29. package/common/src/utils/namespaced-local-storage.d.ts +4 -3
  30. package/common/src/utils/popup-window.d.ts +1 -0
  31. package/common/src/utils/route.d.ts +5 -1
  32. package/common/src/utils/theming.d.ts +6 -0
  33. package/common/src/utils/window.d.ts +12 -9
  34. package/dock3/src/api/protocol.d.ts +3 -0
  35. package/dock3/src/api/utils.d.ts +11 -0
  36. package/dock3/src/shapes/enterprise.d.ts +22 -0
  37. package/dock3/src/shapes/shapes.d.ts +4 -0
  38. package/externals.report.json +31 -72
  39. package/home.js +1 -1485
  40. package/home.js.map +1 -1
  41. package/index.js +1 -1485
  42. package/index.js.map +1 -1
  43. package/notifications.js +1 -1485
  44. package/notifications.js.map +1 -1
  45. package/package.json +7 -12
  46. package/search-api/src/provider/remote/info.d.ts +1 -1
  47. package/store.js +1 -1485
  48. package/store.js.map +1 -1
  49. package/common/src/brand/default-brand.d.ts +0 -8
package/package.json CHANGED
@@ -2,28 +2,23 @@
2
2
  "name": "@openfin/workspace",
3
3
  "description": "An API for integrating with OpenFin Workspace.",
4
4
  "main": "index.js",
5
- "version": "23.0.0",
5
+ "version": "23.0.1-alpha.75ce533e",
6
6
  "keywords": [
7
7
  "client api"
8
8
  ],
9
9
  "license": "SEE LICENSE IN LICENSE.MD",
10
10
  "peerDependencies": {
11
- "@openfin/core": "43.100.105",
12
- "@radix-ui/react-icons": ">=1.3.2 <2.0.0",
13
- "framer-motion": ">=11.13.1 <12.0.0",
14
- "lodash": "*",
15
- "react": ">=18.3.1 <19.0.0",
16
- "react-calendar": ">=5.1.0 <6.0.0",
17
- "react-dom": ">=18.3.1 <19.0.0",
18
- "styled-components": ">=5.3.11 <6.0.0"
11
+ "@openfin/core": "43.101.4"
19
12
  },
20
13
  "dependencies": {
21
- "@openfin/microsoft365": "^1.0.1",
14
+ "@openfin/common": "*",
15
+ "@openfin/microsoft365": "^1.1.0",
16
+ "@openfin/notifications": "2.14.0",
22
17
  "dexie": "^4.0.11",
23
18
  "i18next": "^23.7.16",
24
19
  "lodash.debounce": "^4.0.8",
25
- "openfin-notifications": "2.13.0-alpha-4284",
26
- "react-i18next": "^14.0.0",
20
+ "lodash.clonedeep": "4.5.0",
21
+ "react-i18next": "15.4.0",
27
22
  "title-case": "3.0.3"
28
23
  }
29
24
  }
@@ -2,4 +2,4 @@
2
2
  * Make a channel listener for sending search provider info to a remote OpenFin identity.
3
3
  * @param namespacedTopic the context of the search topic to get the provider info from.
4
4
  */
5
- export declare function makeStreamListener(): () => Promise<import("@client/shapes").SearchProviderInfo[]>;
5
+ export declare function makeStreamListener(): () => Promise<import("@client/index").SearchProviderInfo[]>;