@seamly/web-ui 18.3.0-beta.1 → 19.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 +348 -73
- package/build/dist/lib/index.debug.min.js +1 -1
- package/build/dist/lib/index.debug.min.js.LICENSE.txt +108 -8
- package/build/dist/lib/index.js +5247 -5187
- package/build/dist/lib/index.min.js +1 -1
- package/build/dist/lib/index.min.js.LICENSE.txt +1 -1
- package/build/dist/lib/standalone.js +2334 -2225
- package/build/dist/lib/standalone.min.js +1 -1
- package/build/dist/lib/standalone.min.js.LICENSE.txt +1 -1
- package/build/dist/lib/style-guide.js +1480 -796
- package/build/dist/lib/style-guide.min.js +1 -1
- package/build/dist/lib/styles.css +1 -1
- package/package.json +27 -28
- package/src/javascripts/api/index.js +25 -40
- package/src/javascripts/api/producer.js +3 -6
- package/src/javascripts/config.js +3 -3
- package/src/javascripts/domains/app/actions.js +24 -6
- package/src/javascripts/domains/app/hooks.js +6 -0
- package/src/javascripts/domains/app/index.js +3 -0
- package/src/javascripts/domains/app/reducer.js +16 -0
- package/src/javascripts/domains/app/selectors.js +8 -0
- package/src/javascripts/domains/app/utils.js +4 -0
- package/src/javascripts/domains/config/actions.js +1 -3
- package/src/javascripts/domains/config/middleware.js +0 -4
- package/src/javascripts/domains/config/reducer.js +2 -13
- package/src/javascripts/domains/config/selectors.js +3 -3
- package/src/javascripts/domains/config/utils.js +4 -0
- package/src/javascripts/domains/forms/actions.js +1 -3
- package/src/javascripts/domains/forms/reducer.js +1 -2
- package/src/javascripts/domains/forms/selectors.js +2 -2
- package/src/javascripts/domains/forms/utils.js +5 -0
- package/src/javascripts/domains/i18n/actions.js +35 -0
- package/src/javascripts/domains/i18n/hooks.js +38 -0
- package/src/javascripts/domains/i18n/index.js +5 -84
- package/src/javascripts/domains/i18n/reducer.js +58 -0
- package/src/javascripts/domains/i18n/selectors.js +15 -0
- package/src/javascripts/domains/i18n/utils.js +9 -0
- package/src/javascripts/domains/interrupt/actions.js +1 -3
- package/src/javascripts/domains/interrupt/reducer.js +1 -2
- package/src/javascripts/domains/interrupt/selectors.js +3 -2
- package/src/javascripts/domains/interrupt/utils.js +4 -0
- package/src/javascripts/domains/redux/hooks.js +1 -0
- package/src/javascripts/domains/store/index.js +7 -1
- package/src/javascripts/domains/translations/actions.js +1 -3
- package/src/javascripts/domains/translations/components/chat-status.js +1 -1
- package/src/javascripts/domains/translations/components/options-dialog/form.js +11 -6
- package/src/javascripts/domains/translations/index.js +1 -0
- package/src/javascripts/domains/translations/middleware.js +43 -0
- package/src/javascripts/domains/translations/reducer.js +2 -9
- package/src/javascripts/domains/translations/selectors.js +2 -2
- package/src/javascripts/domains/translations/utils.js +4 -0
- package/src/javascripts/index.js +3 -0
- package/src/javascripts/lib/engine/index.js +1 -0
- package/src/javascripts/lib/mutex.js +30 -0
- package/src/javascripts/lib/redux-helpers/index.js +11 -8
- package/src/javascripts/style-guide/components/app.js +7 -2
- package/src/javascripts/style-guide/components/static-core.js +9 -3
- package/src/javascripts/style-guide/states.js +8 -8
- package/src/javascripts/style-guide/style-guide-engine.js +14 -11
- package/src/javascripts/ui/components/conversation/event/divider/variants/new-translation.js +1 -1
- package/src/javascripts/ui/components/conversation/event/upload.js +2 -2
- package/src/javascripts/ui/components/core/seamly-activity-monitor.js +2 -0
- package/src/javascripts/ui/components/core/seamly-event-subscriber.js +2 -0
- package/src/javascripts/ui/components/core/seamly-instance-functions-loader.js +1 -7
- package/src/javascripts/ui/components/core/seamly-new-notifications.js +5 -6
- package/src/javascripts/ui/components/core/seamly-read-state.js +6 -4
- package/src/javascripts/ui/components/entry/text-entry/hooks.js +6 -4
- package/src/javascripts/ui/components/entry/text-entry/text-entry-form.js +10 -3
- package/src/javascripts/ui/components/entry/upload/file-upload-form.js +6 -3
- package/src/javascripts/ui/components/entry/upload/index.js +8 -3
- package/src/javascripts/ui/components/faq/faq.js +2 -2
- package/src/javascripts/ui/components/layout/app-frame.js +11 -8
- package/src/javascripts/ui/components/layout/interrupt.js +6 -2
- package/src/javascripts/ui/components/warnings/resume-conversation-prompt.js +1 -1
- package/src/javascripts/ui/components/widgets/upload-progress.js +1 -1
- package/src/javascripts/ui/hooks/seamly-api-hooks.js +0 -6
- package/src/javascripts/ui/hooks/seamly-entry-hooks.js +17 -21
- package/src/javascripts/ui/hooks/seamly-hooks.js +0 -1
- package/src/javascripts/ui/hooks/use-seamly-commands.js +5 -6
- package/src/javascripts/ui/hooks/use-seamly-visibility.js +3 -5
- package/src/javascripts/ui/hooks/use-single-file-upload.js +4 -1
- package/src/javascripts/ui/utils/general-utils.js +6 -13
- package/src/stylesheets/1-settings/_config.scss +2 -1
- package/src/stylesheets/3-app/_app.scss +3 -4
- package/src/stylesheets/5-components/_faq.scss +3 -8
- package/src/stylesheets/5-components/_modal.scss +3 -3
- package/webpack/config.package.js +0 -18
- package/webpack/config.site.js +6 -0
- package/webpack/defaults.js +0 -3
- package/CHANGELOG.md +0 -572
- package/build/dist/translations/de-informal.js +0 -274
- package/build/dist/translations/de-informal.min.js +0 -1
- package/build/dist/translations/en.js +0 -274
- package/build/dist/translations/en.min.js +0 -1
- package/build/dist/translations/es-informal.js +0 -280
- package/build/dist/translations/es-informal.min.js +0 -1
- package/build/dist/translations/nl-formal.js +0 -274
- package/build/dist/translations/nl-formal.min.js +0 -1
- package/build/dist/translations/nl-informal.js +0 -274
- package/build/dist/translations/nl-informal.min.js +0 -1
- package/src/javascripts/lib/i18n.js +0 -46
- package/translations/de-informal.js +0 -235
- package/translations/en.js +0 -232
- package/translations/es-informal.js +0 -241
- package/translations/nl-formal.js +0 -228
- package/translations/nl-informal.js +0 -228
|
@@ -2,10 +2,6 @@
|
|
|
2
2
|
!*** external "preact" ***!
|
|
3
3
|
\*************************/
|
|
4
4
|
|
|
5
|
-
/*!****************************!*\
|
|
6
|
-
!*** ./translations/en.js ***!
|
|
7
|
-
\****************************/
|
|
8
|
-
|
|
9
5
|
/*!*******************************!*\
|
|
10
6
|
!*** external "preact/debug" ***!
|
|
11
7
|
\*******************************/
|
|
@@ -62,6 +58,10 @@
|
|
|
62
58
|
!*** ./src/javascripts/lib/debug.js ***!
|
|
63
59
|
\**************************************/
|
|
64
60
|
|
|
61
|
+
/*!**************************************!*\
|
|
62
|
+
!*** ./src/javascripts/lib/mutex.js ***!
|
|
63
|
+
\**************************************/
|
|
64
|
+
|
|
65
65
|
/*!***************************************!*\
|
|
66
66
|
!*** ./node_modules/has/src/index.js ***!
|
|
67
67
|
\***************************************/
|
|
@@ -178,10 +178,18 @@
|
|
|
178
178
|
!*** ./node_modules/superagent/lib/utils.js ***!
|
|
179
179
|
\**********************************************/
|
|
180
180
|
|
|
181
|
+
/*!**********************************************!*\
|
|
182
|
+
!*** ./src/javascripts/domains/app/hooks.js ***!
|
|
183
|
+
\**********************************************/
|
|
184
|
+
|
|
181
185
|
/*!**********************************************!*\
|
|
182
186
|
!*** ./src/javascripts/domains/app/index.js ***!
|
|
183
187
|
\**********************************************/
|
|
184
188
|
|
|
189
|
+
/*!**********************************************!*\
|
|
190
|
+
!*** ./src/javascripts/domains/app/utils.js ***!
|
|
191
|
+
\**********************************************/
|
|
192
|
+
|
|
185
193
|
/*!***********************************************!*\
|
|
186
194
|
!*** ./node_modules/superagent/lib/client.js ***!
|
|
187
195
|
\***********************************************/
|
|
@@ -190,14 +198,26 @@
|
|
|
190
198
|
!*** ./src/javascripts/api/event-producer.js ***!
|
|
191
199
|
\***********************************************/
|
|
192
200
|
|
|
201
|
+
/*!***********************************************!*\
|
|
202
|
+
!*** ./src/javascripts/domains/i18n/hooks.js ***!
|
|
203
|
+
\***********************************************/
|
|
204
|
+
|
|
193
205
|
/*!***********************************************!*\
|
|
194
206
|
!*** ./src/javascripts/domains/i18n/index.js ***!
|
|
195
207
|
\***********************************************/
|
|
196
208
|
|
|
209
|
+
/*!***********************************************!*\
|
|
210
|
+
!*** ./src/javascripts/domains/i18n/utils.js ***!
|
|
211
|
+
\***********************************************/
|
|
212
|
+
|
|
197
213
|
/*!************************************************!*\
|
|
198
214
|
!*** ./src/javascripts/domains/app/actions.js ***!
|
|
199
215
|
\************************************************/
|
|
200
216
|
|
|
217
|
+
/*!************************************************!*\
|
|
218
|
+
!*** ./src/javascripts/domains/app/reducer.js ***!
|
|
219
|
+
\************************************************/
|
|
220
|
+
|
|
201
221
|
/*!************************************************!*\
|
|
202
222
|
!*** ./src/javascripts/domains/forms/hooks.js ***!
|
|
203
223
|
\************************************************/
|
|
@@ -254,6 +274,18 @@
|
|
|
254
274
|
!*** ./src/javascripts/domains/config/index.js ***!
|
|
255
275
|
\*************************************************/
|
|
256
276
|
|
|
277
|
+
/*!*************************************************!*\
|
|
278
|
+
!*** ./src/javascripts/domains/config/utils.js ***!
|
|
279
|
+
\*************************************************/
|
|
280
|
+
|
|
281
|
+
/*!*************************************************!*\
|
|
282
|
+
!*** ./src/javascripts/domains/i18n/actions.js ***!
|
|
283
|
+
\*************************************************/
|
|
284
|
+
|
|
285
|
+
/*!*************************************************!*\
|
|
286
|
+
!*** ./src/javascripts/domains/i18n/reducer.js ***!
|
|
287
|
+
\*************************************************/
|
|
288
|
+
|
|
257
289
|
/*!*************************************************!*\
|
|
258
290
|
!*** ./src/javascripts/lib/split-url-params.js ***!
|
|
259
291
|
\*************************************************/
|
|
@@ -266,6 +298,10 @@
|
|
|
266
298
|
!*** ./node_modules/superagent/lib/is-object.js ***!
|
|
267
299
|
\**************************************************/
|
|
268
300
|
|
|
301
|
+
/*!**************************************************!*\
|
|
302
|
+
!*** ./src/javascripts/domains/app/selectors.js ***!
|
|
303
|
+
\**************************************************/
|
|
304
|
+
|
|
269
305
|
/*!**************************************************!*\
|
|
270
306
|
!*** ./src/javascripts/domains/forms/actions.js ***!
|
|
271
307
|
\**************************************************/
|
|
@@ -306,10 +342,6 @@
|
|
|
306
342
|
!*** ./node_modules/fast-safe-stringify/index.js ***!
|
|
307
343
|
\***************************************************/
|
|
308
344
|
|
|
309
|
-
/*!***************************************************!*\
|
|
310
|
-
!*** ./node_modules/phoenix/assets/js/phoenix.js ***!
|
|
311
|
-
\***************************************************/
|
|
312
|
-
|
|
313
345
|
/*!***************************************************!*\
|
|
314
346
|
!*** ./node_modules/superagent/lib/agent-base.js ***!
|
|
315
347
|
\***************************************************/
|
|
@@ -326,6 +358,10 @@
|
|
|
326
358
|
!*** ./src/javascripts/domains/forms/provider.js ***!
|
|
327
359
|
\***************************************************/
|
|
328
360
|
|
|
361
|
+
/*!***************************************************!*\
|
|
362
|
+
!*** ./src/javascripts/domains/i18n/selectors.js ***!
|
|
363
|
+
\***************************************************/
|
|
364
|
+
|
|
329
365
|
/*!***************************************************!*\
|
|
330
366
|
!*** ./src/javascripts/domains/redux/provider.js ***!
|
|
331
367
|
\***************************************************/
|
|
@@ -366,6 +402,10 @@
|
|
|
366
402
|
!*** ./src/javascripts/domains/interrupt/index.js ***!
|
|
367
403
|
\****************************************************/
|
|
368
404
|
|
|
405
|
+
/*!****************************************************!*\
|
|
406
|
+
!*** ./src/javascripts/domains/interrupt/utils.js ***!
|
|
407
|
+
\****************************************************/
|
|
408
|
+
|
|
369
409
|
/*!****************************************************!*\
|
|
370
410
|
!*** ./src/javascripts/lib/redux-helpers/index.js ***!
|
|
371
411
|
\****************************************************/
|
|
@@ -426,6 +466,10 @@
|
|
|
426
466
|
!*** ./src/javascripts/domains/translations/index.js ***!
|
|
427
467
|
\*******************************************************/
|
|
428
468
|
|
|
469
|
+
/*!*******************************************************!*\
|
|
470
|
+
!*** ./src/javascripts/domains/translations/utils.js ***!
|
|
471
|
+
\*******************************************************/
|
|
472
|
+
|
|
429
473
|
/*!*******************************************************!*\
|
|
430
474
|
!*** ./src/javascripts/ui/hooks/file-upload-hooks.js ***!
|
|
431
475
|
\*******************************************************/
|
|
@@ -470,6 +514,10 @@
|
|
|
470
514
|
!*** ./src/javascripts/ui/hooks/seamly-state-hooks.js ***!
|
|
471
515
|
\********************************************************/
|
|
472
516
|
|
|
517
|
+
/*!*********************************************************!*\
|
|
518
|
+
!*** ./node_modules/phoenix/priv/static/phoenix.esm.js ***!
|
|
519
|
+
\*********************************************************/
|
|
520
|
+
|
|
473
521
|
/*!*********************************************************!*\
|
|
474
522
|
!*** ./src/javascripts/domains/interrupt/middleware.js ***!
|
|
475
523
|
\*********************************************************/
|
|
@@ -530,6 +578,10 @@
|
|
|
530
578
|
!*** ./src/javascripts/ui/hooks/use-seamly-visibility.js ***!
|
|
531
579
|
\***********************************************************/
|
|
532
580
|
|
|
581
|
+
/*!************************************************************!*\
|
|
582
|
+
!*** ./node_modules/@ultraq/array-utils/array-utils.es.js ***!
|
|
583
|
+
\************************************************************/
|
|
584
|
+
|
|
533
585
|
/*!************************************************************!*\
|
|
534
586
|
!*** ./src/javascripts/api/errors/seamly-general-error.js ***!
|
|
535
587
|
\************************************************************/
|
|
@@ -538,6 +590,10 @@
|
|
|
538
590
|
!*** ./src/javascripts/api/errors/seamly-offline-error.js ***!
|
|
539
591
|
\************************************************************/
|
|
540
592
|
|
|
593
|
+
/*!************************************************************!*\
|
|
594
|
+
!*** ./src/javascripts/domains/translations/middleware.js ***!
|
|
595
|
+
\************************************************************/
|
|
596
|
+
|
|
541
597
|
/*!************************************************************!*\
|
|
542
598
|
!*** ./src/javascripts/lib/external-api/initialize-api.js ***!
|
|
543
599
|
\************************************************************/
|
|
@@ -662,6 +718,10 @@
|
|
|
662
718
|
!*** ./node_modules/@babel/runtime/helpers/esm/objectSpread2.js ***!
|
|
663
719
|
\******************************************************************/
|
|
664
720
|
|
|
721
|
+
/*!******************************************************************!*\
|
|
722
|
+
!*** ./node_modules/@ultraq/function-utils/function-utils.es.js ***!
|
|
723
|
+
\******************************************************************/
|
|
724
|
+
|
|
665
725
|
/*!******************************************************************!*\
|
|
666
726
|
!*** ./src/javascripts/api/errors/seamly-configuration-error.js ***!
|
|
667
727
|
\******************************************************************/
|
|
@@ -946,6 +1006,10 @@
|
|
|
946
1006
|
!*** ./node_modules/raw-loader/dist/cjs.js!./src/icons/icon_chevron_right-16.svg ***!
|
|
947
1007
|
\***********************************************************************************/
|
|
948
1008
|
|
|
1009
|
+
/*!************************************************************************************!*\
|
|
1010
|
+
!*** ./node_modules/@ultraq/icu-message-formatter/lib/icu-message-formatter.es.js ***!
|
|
1011
|
+
\************************************************************************************/
|
|
1012
|
+
|
|
949
1013
|
/*!************************************************************************************!*\
|
|
950
1014
|
!*** ./node_modules/raw-loader/dist/cjs.js!./src/icons/icon_newtranslation-16.svg ***!
|
|
951
1015
|
\************************************************************************************/
|
|
@@ -997,3 +1061,39 @@
|
|
|
997
1061
|
/*!******************************************************************************************************!*\
|
|
998
1062
|
!*** ./src/javascripts/ui/components/conversation/event/carousel-component/components/pagination.js ***!
|
|
999
1063
|
\******************************************************************************************************/
|
|
1064
|
+
|
|
1065
|
+
/*!***********************************************************************************************************!*\
|
|
1066
|
+
!*** ./node_modules/@ultraq/icu-message-formatter/node_modules/@babel/runtime/helpers/esm/createClass.js ***!
|
|
1067
|
+
\***********************************************************************************************************/
|
|
1068
|
+
|
|
1069
|
+
/*!*************************************************************************************************************!*\
|
|
1070
|
+
!*** ./node_modules/@ultraq/icu-message-formatter/node_modules/@babel/runtime/helpers/esm/slicedToArray.js ***!
|
|
1071
|
+
\*************************************************************************************************************/
|
|
1072
|
+
|
|
1073
|
+
/*!**************************************************************************************************************!*\
|
|
1074
|
+
!*** ./node_modules/@ultraq/icu-message-formatter/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js ***!
|
|
1075
|
+
\**************************************************************************************************************/
|
|
1076
|
+
|
|
1077
|
+
/*!**************************************************************************************************************!*\
|
|
1078
|
+
!*** ./node_modules/@ultraq/icu-message-formatter/node_modules/@babel/runtime/helpers/esm/classCallCheck.js ***!
|
|
1079
|
+
\**************************************************************************************************************/
|
|
1080
|
+
|
|
1081
|
+
/*!**************************************************************************************************************!*\
|
|
1082
|
+
!*** ./node_modules/@ultraq/icu-message-formatter/node_modules/@babel/runtime/helpers/esm/defineProperty.js ***!
|
|
1083
|
+
\**************************************************************************************************************/
|
|
1084
|
+
|
|
1085
|
+
/*!***************************************************************************************************************!*\
|
|
1086
|
+
!*** ./node_modules/@ultraq/icu-message-formatter/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js ***!
|
|
1087
|
+
\***************************************************************************************************************/
|
|
1088
|
+
|
|
1089
|
+
/*!****************************************************************************************************************!*\
|
|
1090
|
+
!*** ./node_modules/@ultraq/icu-message-formatter/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js ***!
|
|
1091
|
+
\****************************************************************************************************************/
|
|
1092
|
+
|
|
1093
|
+
/*!********************************************************************************************************************!*\
|
|
1094
|
+
!*** ./node_modules/@ultraq/icu-message-formatter/node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.js ***!
|
|
1095
|
+
\********************************************************************************************************************/
|
|
1096
|
+
|
|
1097
|
+
/*!**************************************************************************************************************************!*\
|
|
1098
|
+
!*** ./node_modules/@ultraq/icu-message-formatter/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js ***!
|
|
1099
|
+
\**************************************************************************************************************************/
|