@openfin/workspace 13.0.7 → 13.1.0
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/index.d.ts +5 -0
- package/client-api/src/integrations/microsoft.d.ts +155 -0
- package/client-api/src/integrations/microsoft.shapes.d.ts +208 -0
- package/client-api/src/integrations/microsoft.utils.d.ts +80 -0
- package/client-api/src/integrations.d.ts +3 -0
- package/client-api/src/internal.d.ts +2 -2
- package/client-api/src/shapes/home.d.ts +71 -3
- package/client-api/src/shapes/integrations.d.ts +36 -0
- package/client-api-platform/src/api/context-menu/utils.d.ts +4 -0
- package/client-api-platform/src/api/dock/idb.d.ts +0 -1
- package/client-api-platform/src/shapes.d.ts +46 -9
- package/common/src/api/pages/shapes.d.ts +2 -0
- package/common/src/api/protocol/shapes/workspace.d.ts +157 -0
- package/common/src/api/protocol/workspace.d.ts +12 -58
- package/common/src/api/provider.d.ts +5 -1
- package/common/src/api/search.d.ts +1 -3
- package/common/src/api/storefront.d.ts +11 -0
- package/common/src/api/theming.d.ts +6 -0
- package/common/src/utils/a11y/search.a11y.d.ts +1 -0
- package/common/src/utils/global-context-menu.d.ts +3 -1
- package/common/src/utils/lru-cache.d.ts +11 -0
- package/common/src/utils/menu-window-provider.d.ts +14 -16
- package/common/src/utils/route.d.ts +22 -34
- package/common/src/utils/router/base.d.ts +2 -2
- package/common/src/utils/shared-emitter.d.ts +7 -6
- package/common/src/utils/types.d.ts +7 -0
- package/common/src/utils/usage-register.d.ts +3 -1
- package/common/src/utils/window.d.ts +27 -14
- package/home.js +58 -61
- package/home.js.map +1 -1
- package/index.js +127 -130
- package/index.js.LICENSE.txt +2 -0
- package/index.js.map +1 -1
- package/notifications.js +57 -60
- package/notifications.js.map +1 -1
- package/package.json +6 -3
- package/search-api/src/client/index.d.ts +2 -2
- package/search-api/src/client/internal.d.ts +6 -6
- package/search-api/src/client/remote/channel-client-factory.d.ts +1 -2
- package/search-api/src/client/remote/channel-client.d.ts +4 -8
- package/search-api/src/client/remote/data.d.ts +3 -4
- package/search-api/src/client/remote/disconnect.d.ts +1 -4
- package/search-api/src/client/remote/dispatch.d.ts +2 -3
- package/search-api/src/client/remote/requests.d.ts +1 -4
- package/search-api/src/client/remote/search-close.d.ts +2 -5
- package/search-api/src/common.d.ts +19 -29
- package/search-api/src/fin/index.d.ts +2 -2
- package/search-api/src/fin/shapes.d.ts +4 -4
- package/search-api/src/index.d.ts +1 -1
- package/search-api/src/internal-shapes.d.ts +0 -19
- package/search-api/src/provider/index.d.ts +2 -3
- package/search-api/src/provider/internal.d.ts +5 -9
- package/search-api/src/provider/remote/channel-factory.d.ts +1 -2
- package/search-api/src/provider/remote/channel.d.ts +4 -11
- package/search-api/src/provider/remote/connection.d.ts +5 -8
- package/search-api/src/provider/remote/data.d.ts +3 -5
- package/search-api/src/provider/remote/deregistration.d.ts +1 -2
- package/search-api/src/provider/remote/disconnect.d.ts +1 -1
- package/search-api/src/provider/remote/disconnection.d.ts +5 -4
- package/search-api/src/provider/remote/dispatch.d.ts +2 -3
- package/search-api/src/provider/remote/info.d.ts +1 -1
- package/search-api/src/provider/remote/registration.d.ts +6 -8
- package/search-api/src/provider/remote/search-close.d.ts +3 -4
- package/search-api/src/provider/remote/search.d.ts +3 -4
- package/search-api/src/shapes.d.ts +6 -45
- package/store.js +57 -60
- package/store.js.map +1 -1
- package/common/src/api/home.d.ts +0 -19
- package/common/src/api/pages/legacy.d.ts +0 -16
package/index.js.LICENSE.txt
CHANGED