@openfin/workspace-platform 24.1.0 → 24.1.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 (34) hide show
  1. package/client-api/src/internal/providers.d.ts +26 -0
  2. package/client-api-platform/src/api/context-menu/index.d.ts +2 -2
  3. package/client-api-platform/src/api/controllers/__tests__/theme-storage-controller-store.test.d.ts +2 -0
  4. package/client-api-platform/src/api/controllers/theme-storage-controller.d.ts +15 -1
  5. package/client-api-platform/src/api/pages/index.d.ts +7 -2
  6. package/client-api-platform/src/api/theming.set-scheme.test.d.ts +1 -0
  7. package/client-api-platform/src/api/utils.d.ts +1 -1
  8. package/client-api-platform/src/api/utils.test.d.ts +1 -0
  9. package/client-api-platform/src/init/browser-window-focus.d.ts +4 -0
  10. package/client-api-platform/src/init/index.d.ts +1 -1
  11. package/client-api-platform/src/init/override-callback/browser-defaults.d.ts +1 -1
  12. package/client-api-platform/src/init/override-callback/page-defaults.d.ts +1 -1
  13. package/client-api-platform/src/init/theming.d.ts +4 -3
  14. package/client-api-platform/src/shapes.d.ts +108 -1
  15. package/common/src/api/pages/attached.d.ts +0 -5
  16. package/common/src/api/pages/enterprise-shapes.d.ts +4 -0
  17. package/common/src/api/protocol/browser.d.ts +0 -2
  18. package/common/src/test/logger-mock.d.ts +5 -0
  19. package/common/src/utils/application.d.ts +7 -0
  20. package/common/src/utils/context-menu.d.ts +2 -2
  21. package/common/src/utils/enterprise-channels.d.ts +3 -0
  22. package/common/src/utils/indicators/showIndicator.d.ts +8 -1
  23. package/common/src/utils/indicators/workspace-indicators.d.ts +13 -0
  24. package/common/src/utils/modal-bounds.d.ts +20 -0
  25. package/common/src/utils/popup-window.d.ts +38 -21
  26. package/common/src/utils/route.d.ts +2 -0
  27. package/common/src/utils/window.d.ts +2 -1
  28. package/common/src/utils/workspace-modals.d.ts +3 -0
  29. package/externals.report.json +16 -16
  30. package/index.js +1 -2
  31. package/index.js.map +1 -1
  32. package/package.json +6 -2
  33. package/common/src/api/tabs.d.ts +0 -16
  34. package/index.js.LICENSE.txt +0 -1
package/package.json CHANGED
@@ -2,8 +2,12 @@
2
2
  "name": "@openfin/workspace-platform",
3
3
  "description": "An API for creating your own Workspace platform.",
4
4
  "contributors": [],
5
- "version": "24.1.0",
5
+ "version": "24.1.2",
6
6
  "main": "index.js",
7
+ "sideEffects": [
8
+ "./src/api/dock/idb.ts",
9
+ "./src/api/workspaces/idb.ts"
10
+ ],
7
11
  "keywords": [
8
12
  "client",
9
13
  "api",
@@ -20,6 +24,6 @@
20
24
  "title-case": "3.0.3"
21
25
  },
22
26
  "peerDependencies": {
23
- "@openfin/core": "44.100.107"
27
+ "@openfin/core": "44.101.1"
24
28
  }
25
29
  }
@@ -1,16 +0,0 @@
1
- import type OpenFin from '@openfin/core';
2
- export interface TabsHandler {
3
- /**
4
- * Shows tabs for specified window instance. Does nothing if tabs are visible.
5
- */
6
- show(): Promise<void>;
7
- /**
8
- * Hides tabs for specified window instance. Does nothing if tabs are hidden.
9
- */
10
- hide(layoutOverrides?: OpenFin.LayoutOptions): Promise<void>;
11
- /**
12
- * Checks if the tabs for specified window are visible and resolves with true/false.
13
- */
14
- isShowingTabs(): Promise<boolean>;
15
- }
16
- export declare const getTabsHandler: (layoutIdentity: OpenFin.LayoutIdentity) => TabsHandler;
@@ -1 +0,0 @@
1
- /*! For license information please see index.js.LICENSE.txt */