@openfin/workspace-platform 19.3.0 → 19.3.2

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 (60) hide show
  1. package/browser/src/api/color-linking.d.ts +23 -0
  2. package/browser/src/api/controls.d.ts +23 -0
  3. package/browser/src/api/pages/attached.d.ts +23 -0
  4. package/browser/src/api/pages/state.d.ts +10 -0
  5. package/browser/src/api/panels.d.ts +104 -0
  6. package/browser/src/api/view.d.ts +22 -0
  7. package/browser/src/components/ControlBar/LeftControlsContainer/EnterpriseNavigationContainer/AddressBar/AddressBar.d.ts +15 -0
  8. package/browser/src/components/ControlBar/LeftControlsContainer/EnterpriseNavigationContainer/AddressBar/AddressBarInput.d.ts +18 -0
  9. package/browser/src/components/ControlBar/RightControlsContainer/ToolbarContainer/menus/menuConfig.d.ts +17 -0
  10. package/browser/src/components/ControlBar/SearchMenu/CommandBar.d.ts +9 -0
  11. package/browser/src/components/ControlBar/SearchMenu/Icons.d.ts +23 -0
  12. package/browser/src/components/ControlBar/SearchMenu/ResultIcon.d.ts +11 -0
  13. package/browser/src/components/ControlBar/SearchMenu/SecureIcon.d.ts +5 -0
  14. package/browser/src/components/ControlBar/SearchMenu/UrlInput.d.ts +3 -0
  15. package/browser/src/components/ControlBar/SearchMenu/useIsPageOpen.d.ts +3 -0
  16. package/browser/src/components/ControlBar/Tablist/utils.d.ts +8 -0
  17. package/browser/src/components/ControlBar/utils.d.ts +1 -0
  18. package/browser/src/components/LandingPage/BrandIcon.d.ts +6 -0
  19. package/browser/src/components/LayoutContainer/utils.d.ts +10 -0
  20. package/browser/src/components/PanelContainer/PanelContainer.d.ts +8 -0
  21. package/browser/src/hooks/EnterpriseSearchMenu/AdjustSearchMenuDimensions/getDimensions.d.ts +14 -0
  22. package/browser/src/hooks/EnterpriseSearchMenu/AdjustSearchMenuDimensions/useAdjustSearchMenuViewDimensions.d.ts +29 -0
  23. package/browser/src/hooks/EnterpriseSearchMenu/useInitChannelToSearchMenuView.d.ts +17 -0
  24. package/browser/src/hooks/EnterpriseSearchMenu/usePostMessageToSearchMenuView.d.ts +16 -0
  25. package/browser/src/hooks/EnterpriseSearchMenu/useProcessChildContentBlockEvent.d.ts +3 -0
  26. package/browser/src/hooks/EnterpriseSearchMenu/useSearchMenuViewLifecycleManager.d.ts +16 -0
  27. package/browser/src/hooks/EnterpriseSearchMenu/useUpdateInputExpansionState.d.ts +15 -0
  28. package/browser/src/hooks/EnterpriseSearchMenu/useUpdateViewExpansionState.d.ts +14 -0
  29. package/browser/src/hooks/useEnterpriseHotkeys.d.ts +4 -0
  30. package/browser/src/hooks/usePanelBounds.d.ts +3 -0
  31. package/browser/src/slices/menu.d.ts +28 -0
  32. package/browser/src/slices/modal/close.d.ts +10 -0
  33. package/browser/src/slices/modal/index.d.ts +8 -0
  34. package/browser/src/slices/pages/attached.d.ts +83 -0
  35. package/browser/src/slices/tab-focus.d.ts +85 -0
  36. package/browser/src/store/index.d.ts +90 -0
  37. package/client-api-platform/src/api/app-directory.d.ts +2 -2
  38. package/client-api-platform/src/shapes.d.ts +8 -0
  39. package/common/src/api/pages/internal.d.ts +8 -0
  40. package/common/src/api/workspace-events.d.ts +49 -0
  41. package/common/src/components/Icon/CustomIcon.d.ts +15 -0
  42. package/common/src/hooks/context.d.ts +50 -0
  43. package/common/src/hooks/usePlatformTheme.d.ts +6 -0
  44. package/common/src/hooks/useSystemSchemeCheck.d.ts +13 -0
  45. package/common/src/slices/environment.d.ts +22 -0
  46. package/common/src/slices/target-theming.d.ts +56 -0
  47. package/common/src/styles/svg-icons.d.ts +7 -0
  48. package/common/src/utils/a11y/index.d.ts +3 -0
  49. package/common/src/utils/custom-logo.d.ts +16 -0
  50. package/common/src/utils/enterpriseBrowser.d.ts +1 -0
  51. package/common/src/utils/interop.d.ts +30 -0
  52. package/common/src/utils/layout.d.ts +6 -0
  53. package/common/src/utils/navigate.d.ts +8 -0
  54. package/common/src/utils/popup-window.d.ts +19 -9
  55. package/common/src/utils/route.d.ts +1 -1
  56. package/common/src/utils/test-ids.d.ts +70 -0
  57. package/common/src/utils/url.d.ts +1 -0
  58. package/index.js +1 -1
  59. package/index.js.map +1 -1
  60. package/package.json +3 -3
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": "19.3.0",
5
+ "version": "19.3.2",
6
6
  "main": "index.js",
7
7
  "keywords": [
8
8
  "client",
@@ -12,7 +12,7 @@
12
12
  ],
13
13
  "license": "SEE LICENSE IN LICENSE.MD",
14
14
  "peerDependencies": {
15
- "@openfin/core": "38.83.75"
15
+ "@openfin/core": "38.83.79"
16
16
  },
17
17
  "dependencies": {
18
18
  "@openfin/microsoft365": "^1.0.1",
@@ -31,7 +31,7 @@
31
31
  "lodash.merge": "^4.6.2",
32
32
  "next": "^12.3.4",
33
33
  "nprogress": "0.2.0",
34
- "openfin-notifications": "2.7.0-alpha-3636",
34
+ "openfin-notifications": "2.7.1-alpha-3649",
35
35
  "react": "17.0.2",
36
36
  "react-color": "2.19.3",
37
37
  "react-dom": "17.0.2",