@seamly/web-ui 24.0.0-beta.7 → 24.0.0-beta.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamly/web-ui",
3
- "version": "24.0.0-beta.7",
3
+ "version": "24.0.0-beta.8",
4
4
  "main": "build/dist/lib/index.js",
5
5
  "types": "build/src/javascripts/index.d.ts",
6
6
  "exports": {
@@ -7,6 +7,7 @@ import {
7
7
  SeamlyEventBusContext,
8
8
  SeamlyLiveRegionContext,
9
9
  SeamlyStoreProvider,
10
+ SeamlyActivityMonitor,
10
11
  SeamlyFileUpload,
11
12
  } from '@seamly/web-ui'
12
13
  import appReducer from 'domains/app/slice'
@@ -29,7 +30,6 @@ import {
29
30
  } from 'domains/store/store.types'
30
31
  import translationReducer from 'domains/translations/slice'
31
32
  import visibilityReducer from 'domains/visibility/slice'
32
- import SeamlyActivityEventContext from 'ui/components/core/seamly-activity-event-context'
33
33
  import type API from 'api'
34
34
 
35
35
  const bareApi = {
@@ -140,9 +140,9 @@ const SeamlyStaticCore: FC<StaticCoreProps> = ({
140
140
  <SeamlyApiContext.Provider value={bareApi}>
141
141
  <SeamlyLiveRegionContext.Provider value={liveMsgRef.current}>
142
142
  <ComponentFilter>
143
- <SeamlyActivityEventContext.Provider value={() => {}}>
143
+ <SeamlyActivityMonitor>
144
144
  <SeamlyFileUpload>{children}</SeamlyFileUpload>
145
- </SeamlyActivityEventContext.Provider>
145
+ </SeamlyActivityMonitor>
146
146
  </ComponentFilter>
147
147
  </SeamlyLiveRegionContext.Provider>
148
148
  </SeamlyApiContext.Provider>