@seamly/web-ui 20.0.0-beta.1 → 20.0.0-beta.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 +1 -1
- package/build/dist/lib/index.debug.min.js +1 -1
- package/build/dist/lib/index.js +3 -0
- package/build/dist/lib/index.min.js +1 -1
- package/build/dist/lib/standalone.js +3 -0
- package/build/dist/lib/standalone.min.js +1 -1
- package/build/dist/lib/style-guide.js +4755 -10621
- package/build/dist/lib/style-guide.min.js +1 -2
- package/package.json +1 -1
- package/src/javascripts/index.js +3 -0
- package/src/javascripts/style-guide/components/static-core.js +1 -1
- package/build/dist/lib/style-guide.min.js.LICENSE.txt +0 -9
package/package.json
CHANGED
package/src/javascripts/index.js
CHANGED
|
@@ -135,6 +135,9 @@ export { default as View } from './ui/components/view'
|
|
|
135
135
|
// Used by: Client
|
|
136
136
|
export { default as DeprecatedView } from './ui/components/view/deprecated-view'
|
|
137
137
|
|
|
138
|
+
// Used by: StyleGuide
|
|
139
|
+
export { default as ComponentFilter } from './ui/components/conversation/component-filter'
|
|
140
|
+
|
|
138
141
|
// Used by: Client
|
|
139
142
|
// Used by: StyleGuide
|
|
140
143
|
export { visibilityStates } from './domains/visibility'
|
|
@@ -6,6 +6,7 @@ import {
|
|
|
6
6
|
SeamlyApiContext,
|
|
7
7
|
SeamlyLiveRegionContext,
|
|
8
8
|
StoreProvider,
|
|
9
|
+
ComponentFilter,
|
|
9
10
|
createReduxStore,
|
|
10
11
|
} from '@seamly/web-ui'
|
|
11
12
|
import stateReducer from '../../domains/store/state-reducer'
|
|
@@ -22,7 +23,6 @@ import {
|
|
|
22
23
|
Actions as ConfigActions,
|
|
23
24
|
} from '../../domains/config'
|
|
24
25
|
import { Reducer as visibilityReducer } from '../../domains/visibility'
|
|
25
|
-
import ComponentFilter from '../../ui/components/conversation/component-filter'
|
|
26
26
|
|
|
27
27
|
const bareApi = {
|
|
28
28
|
send: () => {},
|