@seamly/web-ui 24.3.0-alpha.1 → 24.3.0-alpha.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.
- package/build/dist/lib/index.debug.js +33 -28
- package/build/dist/lib/index.debug.js.map +1 -1
- package/build/dist/lib/index.debug.min.js +1 -1
- package/build/dist/lib/index.debug.min.js.map +1 -1
- package/build/dist/lib/index.js +5 -1
- package/build/dist/lib/index.js.map +1 -1
- package/build/dist/lib/index.min.js +1 -1
- package/build/dist/lib/index.min.js.map +1 -1
- package/build/dist/lib/style-guide.js +2 -1
- package/build/dist/lib/style-guide.js.map +1 -1
- package/build/dist/lib/style-guide.min.js +1 -1
- package/build/dist/lib/style-guide.min.js.map +1 -1
- package/package.json +1 -1
- package/src/javascripts/core/index.ts +4 -1
- package/src/javascripts/style-guide/components/static-core.tsx +3 -3
package/package.json
CHANGED
|
@@ -67,6 +67,7 @@ export { default as Engine } from 'lib/engine'
|
|
|
67
67
|
export { default as ExternalApi } from 'lib/external-api'
|
|
68
68
|
export { default as SeamlyFileUpload } from 'ui/components/core/seamly-file-upload'
|
|
69
69
|
export { default as SeamlyActivityMonitor } from 'ui/components/core/seamly-activity-monitor'
|
|
70
|
+
export { default as SeamlyActivityEventContext } from 'ui/components/core/seamly-activity-event-context'
|
|
70
71
|
export { timeout } from 'ui/hooks/focus-helper-hooks'
|
|
71
72
|
|
|
72
73
|
export { default as appReducer } from 'domains/app/slice'
|
|
@@ -92,9 +93,11 @@ export type {
|
|
|
92
93
|
export { default as translationReducer } from 'domains/translations/slice'
|
|
93
94
|
export { default as visibilityReducer } from 'domains/visibility/slice'
|
|
94
95
|
export {
|
|
96
|
+
getSearchParamsByKeys,
|
|
95
97
|
getUrlSearchParams,
|
|
96
98
|
getUrlSearchString,
|
|
97
|
-
|
|
99
|
+
initResetSearchParams,
|
|
100
|
+
replaceSearchParams,
|
|
98
101
|
} from 'lib/url-helpers'
|
|
99
102
|
|
|
100
103
|
// Used by: Client
|
|
@@ -7,7 +7,6 @@ import {
|
|
|
7
7
|
SeamlyEventBusContext,
|
|
8
8
|
SeamlyLiveRegionContext,
|
|
9
9
|
SeamlyStoreProvider,
|
|
10
|
-
SeamlyActivityMonitor,
|
|
11
10
|
SeamlyFileUpload,
|
|
12
11
|
API,
|
|
13
12
|
configReducer,
|
|
@@ -27,6 +26,7 @@ import {
|
|
|
27
26
|
ReduxStore,
|
|
28
27
|
translationReducer,
|
|
29
28
|
visibilityReducer,
|
|
29
|
+
SeamlyActivityEventContext,
|
|
30
30
|
} from '@seamly/web-ui'
|
|
31
31
|
|
|
32
32
|
const bareApi = {
|
|
@@ -137,9 +137,9 @@ const SeamlyStaticCore: FC<StaticCoreProps> = ({
|
|
|
137
137
|
<SeamlyApiContext.Provider value={bareApi}>
|
|
138
138
|
<SeamlyLiveRegionContext.Provider value={liveMsgRef.current}>
|
|
139
139
|
<ComponentFilter>
|
|
140
|
-
<
|
|
140
|
+
<SeamlyActivityEventContext.Provider value={() => {}}>
|
|
141
141
|
<SeamlyFileUpload>{children}</SeamlyFileUpload>
|
|
142
|
-
</
|
|
142
|
+
</SeamlyActivityEventContext.Provider>
|
|
143
143
|
</ComponentFilter>
|
|
144
144
|
</SeamlyLiveRegionContext.Provider>
|
|
145
145
|
</SeamlyApiContext.Provider>
|