@openfin/workspace 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.
- package/client-api/src/notifications.d.ts +2 -2
- package/client-api/src/shapes/index.d.ts +1 -1
- package/client-api/src/shapes/notifications.d.ts +1 -1
- package/client-api-platform/src/api/app-directory.d.ts +1 -1
- package/client-api-platform/src/api/controllers/theme-storage-controller-store.d.ts +16 -2
- package/client-api-platform/src/api/controllers/theme-storage-controller.d.ts +26 -23
- package/client-api-platform/src/api/dock.d.ts +3 -3
- package/client-api-platform/src/api/theming.d.ts +3 -2
- package/client-api-platform/src/api/utils.d.ts +11 -0
- package/client-api-platform/src/init/override-callback/view-components.d.ts +1 -1
- package/client-api-platform/src/init/override-callback/view-defaults.d.ts +2 -1
- package/client-api-platform/src/init/theming.d.ts +5 -2
- package/client-api-platform/src/shapes.d.ts +128 -16
- package/common/src/api/protocol/notifications.d.ts +8 -0
- package/common/src/api/protocol/workspace-platform.d.ts +5 -2
- package/common/src/api/protocol/workspace.d.ts +2 -2
- package/common/src/api/shapes/notifications.d.ts +1 -0
- package/common/src/api/theming.d.ts +27 -14
- package/common/src/utils/application.d.ts +7 -0
- package/common/src/utils/env.d.ts +1 -1
- package/common/src/utils/find-in-page/findInPageChannel.d.ts +37 -0
- package/common/src/utils/find-in-page/showFindInPageHandler.d.ts +2 -0
- package/common/src/utils/global-context-menu.d.ts +7 -0
- package/common/src/utils/landing-page.d.ts +1 -1
- package/common/src/utils/layout.d.ts +37 -8
- package/common/src/utils/logger.d.ts +110 -1
- package/common/src/utils/menu-window-provider.d.ts +7 -3
- package/common/src/utils/merge-deep.d.ts +1 -0
- package/common/src/utils/namespaced-local-storage.d.ts +4 -3
- package/common/src/utils/popup-window.d.ts +1 -0
- package/common/src/utils/route.d.ts +5 -1
- package/common/src/utils/theming.d.ts +6 -0
- package/common/src/utils/window.d.ts +12 -9
- package/dock3/src/api/protocol.d.ts +3 -0
- package/dock3/src/api/utils.d.ts +11 -0
- package/dock3/src/shapes/enterprise.d.ts +22 -0
- package/dock3/src/shapes/shapes.d.ts +4 -0
- package/externals.report.json +31 -72
- package/home.js +1 -1485
- package/home.js.map +1 -1
- package/index.js +1 -1485
- package/index.js.map +1 -1
- package/notifications.js +1 -1485
- package/notifications.js.map +1 -1
- package/package.json +6 -12
- package/search-api/src/provider/remote/info.d.ts +1 -1
- package/store.js +1 -1485
- package/store.js.map +1 -1
- package/common/src/brand/default-brand.d.ts +0 -8
package/package.json
CHANGED
|
@@ -2,28 +2,22 @@
|
|
|
2
2
|
"name": "@openfin/workspace",
|
|
3
3
|
"description": "An API for integrating with OpenFin Workspace.",
|
|
4
4
|
"main": "index.js",
|
|
5
|
-
"version": "23.0.
|
|
5
|
+
"version": "23.0.1-alpha.0966d5cc",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"client api"
|
|
8
8
|
],
|
|
9
9
|
"license": "SEE LICENSE IN LICENSE.MD",
|
|
10
10
|
"peerDependencies": {
|
|
11
|
-
"@openfin/core": "43.
|
|
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.102.2"
|
|
19
12
|
},
|
|
20
13
|
"dependencies": {
|
|
21
|
-
"@openfin/microsoft365": "^1.0
|
|
14
|
+
"@openfin/microsoft365": "^1.1.0",
|
|
15
|
+
"@openfin/notifications": "2.14.0-alpha-4504",
|
|
22
16
|
"dexie": "^4.0.11",
|
|
23
17
|
"i18next": "^23.7.16",
|
|
24
18
|
"lodash.debounce": "^4.0.8",
|
|
25
|
-
"
|
|
26
|
-
"react-i18next": "
|
|
19
|
+
"lodash.clonedeep": "4.5.0",
|
|
20
|
+
"react-i18next": "15.4.0",
|
|
27
21
|
"title-case": "3.0.3"
|
|
28
22
|
}
|
|
29
23
|
}
|
|
@@ -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/
|
|
5
|
+
export declare function makeStreamListener(): () => Promise<import("@client/index").SearchProviderInfo[]>;
|