@seamly/web-ui 20.8.0-beta.5 → 20.8.1
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 +3 -3
- package/build/dist/lib/index.debug.min.js +1 -1
- package/build/dist/lib/index.js +4 -6
- package/build/dist/lib/index.min.js +1 -1
- package/build/dist/lib/standalone.js +4 -6
- package/build/dist/lib/standalone.min.js +1 -1
- package/build/dist/lib/style-guide.js +2 -4
- package/build/dist/lib/style-guide.min.js +1 -1
- package/package.json +1 -1
- package/src/.DS_Store +0 -0
- package/src/javascripts/domains/config/slice.ts +3 -2
- package/src/javascripts/ui/components/entry/text-entry/index.js +1 -1
|
@@ -3112,11 +3112,9 @@ exports.configSlice = (0, toolkit_1.createSlice)({
|
|
|
3112
3112
|
payload
|
|
3113
3113
|
}) => updateState(state, payload),
|
|
3114
3114
|
setPreChatEvents: (state, {
|
|
3115
|
-
payload
|
|
3116
|
-
events
|
|
3117
|
-
}
|
|
3115
|
+
payload
|
|
3118
3116
|
}) => {
|
|
3119
|
-
state.preChatEvents =
|
|
3117
|
+
state.preChatEvents = payload;
|
|
3120
3118
|
}
|
|
3121
3119
|
},
|
|
3122
3120
|
extraReducers: builder => {
|