@openfin/workspace-platform 23.0.0 → 23.0.1-alpha.0966d5cc

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 (38) hide show
  1. package/client-api/src/shapes/index.d.ts +1 -1
  2. package/client-api-platform/src/api/app-directory.d.ts +1 -1
  3. package/client-api-platform/src/api/controllers/theme-storage-controller-store.d.ts +16 -2
  4. package/client-api-platform/src/api/controllers/theme-storage-controller.d.ts +26 -23
  5. package/client-api-platform/src/api/dock.d.ts +2 -2
  6. package/client-api-platform/src/api/theming.d.ts +3 -2
  7. package/client-api-platform/src/api/utils.d.ts +11 -0
  8. package/client-api-platform/src/init/override-callback/enterprise-page-required-layout-settings.d.ts +5 -0
  9. package/client-api-platform/src/init/override-callback/view-components.d.ts +1 -1
  10. package/client-api-platform/src/init/override-callback/view-defaults.d.ts +2 -1
  11. package/client-api-platform/src/init/theming.d.ts +5 -2
  12. package/client-api-platform/src/shapes.d.ts +109 -10
  13. package/common/src/api/protocol/notifications.d.ts +8 -0
  14. package/common/src/api/protocol/workspace-platform.d.ts +5 -2
  15. package/common/src/api/protocol/workspace.d.ts +2 -2
  16. package/common/src/api/shapes/notifications.d.ts +1 -0
  17. package/common/src/api/theming.d.ts +27 -14
  18. package/common/src/utils/application.d.ts +7 -0
  19. package/common/src/utils/find-in-page/findInPageChannel.d.ts +37 -0
  20. package/common/src/utils/find-in-page/showFindInPageHandler.d.ts +2 -0
  21. package/common/src/utils/global-context-menu.d.ts +7 -0
  22. package/common/src/utils/layout.d.ts +37 -8
  23. package/common/src/utils/logger.d.ts +110 -1
  24. package/common/src/utils/menu-window-provider.d.ts +7 -3
  25. package/common/src/utils/merge-deep.d.ts +1 -0
  26. package/common/src/utils/namespaced-local-storage.d.ts +4 -3
  27. package/common/src/utils/popup-window.d.ts +1 -0
  28. package/common/src/utils/route.d.ts +5 -1
  29. package/common/src/utils/theming.d.ts +6 -0
  30. package/common/src/utils/window.d.ts +12 -9
  31. package/dock3/src/api/utils.d.ts +11 -0
  32. package/dock3/src/shapes/shapes.d.ts +4 -0
  33. package/externals.report.json +20 -63
  34. package/index.js +1 -1485
  35. package/index.js.map +1 -1
  36. package/package.json +5 -12
  37. package/common/src/brand/default-brand.d.ts +0 -8
  38. package/workspace_platform.zip +0 -0
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@openfin/workspace-platform",
3
3
  "description": "An API for creating your own Workspace platform.",
4
4
  "contributors": [],
5
- "version": "23.0.0",
5
+ "version": "23.0.1-alpha.0966d5cc",
6
6
  "main": "index.js",
7
7
  "keywords": [
8
8
  "client",
@@ -15,18 +15,11 @@
15
15
  "dexie": "^4.0.11",
16
16
  "i18next": "^23.7.16",
17
17
  "lodash.debounce": "^4.0.8",
18
- "react-i18next": "^14.0.0",
19
- "title-case": "3.0.3",
20
- "@openfin/theme-engine": "file:../packages/theme-engine"
18
+ "lodash.clonedeep": "4.5.0",
19
+ "react-i18next": "15.4.0",
20
+ "title-case": "3.0.3"
21
21
  },
22
22
  "peerDependencies": {
23
- "@openfin/core": "43.100.105",
24
- "@radix-ui/react-icons": ">=1.3.2 <2.0.0",
25
- "framer-motion": ">=11.13.1 <12.0.0",
26
- "lodash": "*",
27
- "react": ">=18.3.1 <19.0.0",
28
- "react-calendar": ">=5.1.0 <6.0.0",
29
- "react-dom": ">=18.3.1 <19.0.0",
30
- "styled-components": ">=5.3.11 <6.0.0"
23
+ "@openfin/core": "43.102.2"
31
24
  }
32
25
  }
@@ -1,8 +0,0 @@
1
- export declare const defaultBrandIcons: {
2
- light: {
3
- symbol: string;
4
- };
5
- dark: {
6
- symbol: string;
7
- };
8
- };
Binary file