@seamly/web-ui 21.0.9 → 22.0.0

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.
Files changed (141) hide show
  1. package/build/dist/lib/components.js +9228 -7777
  2. package/build/dist/lib/components.js.map +1 -0
  3. package/build/dist/lib/components.min.js +2 -1
  4. package/build/dist/lib/components.min.js.LICENSE.txt +2 -2
  5. package/build/dist/lib/components.min.js.map +1 -0
  6. package/build/dist/lib/config.js +2 -1
  7. package/build/dist/lib/config.js.map +1 -0
  8. package/build/dist/lib/config.min.js +2 -1
  9. package/build/dist/lib/config.min.js.map +1 -0
  10. package/build/dist/lib/contexts.js +2 -1
  11. package/build/dist/lib/contexts.js.map +1 -0
  12. package/build/dist/lib/contexts.min.js +2 -1
  13. package/build/dist/lib/contexts.min.js.map +1 -0
  14. package/build/dist/lib/deprecated-view.css +1 -1
  15. package/build/dist/lib/deprecated-view.js +1 -1
  16. package/build/dist/lib/hooks.js +6999 -5996
  17. package/build/dist/lib/hooks.js.map +1 -0
  18. package/build/dist/lib/hooks.min.js +2 -1
  19. package/build/dist/lib/hooks.min.js.map +1 -0
  20. package/build/dist/lib/index.debug.js +940 -370
  21. package/build/dist/lib/index.debug.js.map +1 -0
  22. package/build/dist/lib/index.debug.min.js +2 -1
  23. package/build/dist/lib/index.debug.min.js.LICENSE.txt +334 -110
  24. package/build/dist/lib/index.debug.min.js.map +1 -0
  25. package/build/dist/lib/index.js +2810 -5472
  26. package/build/dist/lib/index.js.map +1 -0
  27. package/build/dist/lib/index.min.js +2 -1
  28. package/build/dist/lib/index.min.js.LICENSE.txt +2 -2
  29. package/build/dist/lib/index.min.js.map +1 -0
  30. package/build/dist/lib/sounds/beep.mp3 +0 -0
  31. package/build/dist/lib/standalone.js +10575 -13540
  32. package/build/dist/lib/standalone.js.map +1 -0
  33. package/build/dist/lib/standalone.min.js +2 -1
  34. package/build/dist/lib/standalone.min.js.LICENSE.txt +1 -1
  35. package/build/dist/lib/standalone.min.js.map +1 -0
  36. package/build/dist/lib/storage.js +2 -1
  37. package/build/dist/lib/storage.js.map +1 -0
  38. package/build/dist/lib/storage.min.js +2 -1
  39. package/build/dist/lib/storage.min.js.map +1 -0
  40. package/build/dist/lib/style-guide.js +1701 -5859
  41. package/build/dist/lib/style-guide.js.map +1 -0
  42. package/build/dist/lib/style-guide.min.js +2 -1
  43. package/build/dist/lib/style-guide.min.js.LICENSE.txt +2 -2
  44. package/build/dist/lib/style-guide.min.js.map +1 -0
  45. package/build/dist/lib/styles-default-implementation.css +1 -1
  46. package/build/dist/lib/styles-default-implementation.js +1 -1
  47. package/build/dist/lib/styles.css +1 -1
  48. package/build/dist/lib/styles.js +1 -1
  49. package/build/dist/lib/utils.js +11536 -14530
  50. package/build/dist/lib/utils.js.map +1 -0
  51. package/build/dist/lib/utils.min.js +2 -1
  52. package/build/dist/lib/utils.min.js.LICENSE.txt +1 -6
  53. package/build/dist/lib/utils.min.js.map +1 -0
  54. package/package.json +58 -48
  55. package/src/javascripts/api/conversation-connector.ts +2 -0
  56. package/src/javascripts/api/errors/seamly-api-error.ts +15 -0
  57. package/src/javascripts/api/index.ts +168 -94
  58. package/src/javascripts/config.ts +1 -1
  59. package/src/javascripts/config.types.ts +18 -11
  60. package/src/javascripts/domains/config/selectors.ts +1 -1
  61. package/src/javascripts/domains/config/slice.ts +12 -0
  62. package/src/javascripts/domains/forms/forms.types.ts +1 -0
  63. package/src/javascripts/domains/forms/hooks.ts +10 -2
  64. package/src/javascripts/domains/store/selectors.ts +23 -10
  65. package/src/javascripts/domains/store/slice.ts +63 -11
  66. package/src/javascripts/domains/store/store.types.ts +41 -1
  67. package/src/javascripts/domains/translations/components/options-button.tsx +1 -4
  68. package/src/javascripts/domains/translations/hooks.ts +11 -4
  69. package/src/javascripts/index.ts +2 -0
  70. package/src/javascripts/lib/url-helpers.ts +24 -0
  71. package/src/javascripts/schema.ts +10 -0
  72. package/src/javascripts/style-guide/states.js +109 -0
  73. package/src/javascripts/ui/components/conversation/conversation.tsx +2 -0
  74. package/src/javascripts/ui/components/conversation/event/chat-scroll/chat-scroll-provider.tsx +2 -0
  75. package/src/javascripts/ui/components/conversation/event/choice-prompt.js +1 -1
  76. package/src/javascripts/ui/components/conversation/event/text.js +1 -1
  77. package/src/javascripts/ui/components/conversation/event/upload.js +50 -9
  78. package/src/javascripts/ui/components/conversation/use-chat-scroll.ts +3 -2
  79. package/src/javascripts/ui/components/core/seamly-event-subscriber.ts +7 -1
  80. package/src/javascripts/ui/components/core/seamly-file-upload.tsx +156 -0
  81. package/src/javascripts/ui/components/entry/abort-transaction-button/abort-transaction-button.tsx +45 -0
  82. package/src/javascripts/ui/components/entry/text-entry/hooks.ts +108 -0
  83. package/src/javascripts/ui/components/entry/text-entry/index.js +7 -4
  84. package/src/javascripts/ui/components/entry/text-entry/{text-entry-form.js → text-entry-form.tsx} +8 -22
  85. package/src/javascripts/ui/components/form-controls/{input.js → input.tsx} +13 -2
  86. package/src/javascripts/ui/components/form-controls/{wrapper.js → wrapper.tsx} +8 -4
  87. package/src/javascripts/ui/components/view/{index.js → index.tsx} +53 -4
  88. package/src/javascripts/ui/components/view/window-view/{index.js → index.tsx} +14 -2
  89. package/src/javascripts/ui/components/widgets/{in-out-transition.js → in-out-transition.tsx} +67 -28
  90. package/src/javascripts/ui/hooks/{seamly-api-hooks.js → seamly-api-hooks.ts} +1 -1
  91. package/src/javascripts/ui/hooks/sounds/beep.mp3 +0 -0
  92. package/src/javascripts/ui/hooks/use-click-outside.ts +5 -3
  93. package/src/javascripts/ui/hooks/use-notifications.ts +114 -0
  94. package/src/javascripts/ui/hooks/use-timeout.ts +20 -0
  95. package/src/stylesheets/3-chat/_chat.scss +3 -5
  96. package/src/stylesheets/4-base/_formelements.scss +0 -36
  97. package/src/stylesheets/5-components/_abort-transaction.scss +10 -0
  98. package/src/stylesheets/5-components/_buttons.scss +18 -3
  99. package/src/stylesheets/5-components/_character-limit.scss +2 -2
  100. package/src/stylesheets/5-components/_chat-status.scss +26 -37
  101. package/src/stylesheets/5-components/_choice-prompt.scss +9 -10
  102. package/src/stylesheets/5-components/_conversation.scss +9 -62
  103. package/src/stylesheets/5-components/_disclaimer.scss +11 -3
  104. package/src/stylesheets/5-components/_error.scss +3 -2
  105. package/src/stylesheets/5-components/_idle.scss +3 -8
  106. package/src/stylesheets/5-components/_input.scss +34 -13
  107. package/src/stylesheets/5-components/_interrupt.scss +3 -10
  108. package/src/stylesheets/5-components/_loader.scss +1 -2
  109. package/src/stylesheets/5-components/_message-author.scss +2 -4
  110. package/src/stylesheets/5-components/_message-body.scss +33 -10
  111. package/src/stylesheets/5-components/_message-card.scss +2 -10
  112. package/src/stylesheets/5-components/_message-carousel.scss +4 -4
  113. package/src/stylesheets/5-components/_message-cta.scss +0 -6
  114. package/src/stylesheets/5-components/_message.scss +1 -0
  115. package/src/stylesheets/5-components/_modal.scss +2 -5
  116. package/src/stylesheets/5-components/_options.scss +17 -22
  117. package/src/stylesheets/5-components/_pre-chat-messages.scss +3 -1
  118. package/src/stylesheets/5-components/_prompt.scss +3 -7
  119. package/src/stylesheets/5-components/_skip-link.scss +2 -1
  120. package/src/stylesheets/5-components/_suggestions.scss +2 -2
  121. package/src/stylesheets/5-components/_translation-options.scss +5 -2
  122. package/src/stylesheets/5-components/_unread-messages.scss +33 -0
  123. package/src/stylesheets/5-components/_upload.scss +20 -27
  124. package/src/stylesheets/6-default-implementation/_hover.scss +14 -17
  125. package/src/stylesheets/7-deprecated/1-settings/_config.scss +17 -0
  126. package/src/stylesheets/7-deprecated/3-app/_app.scss +2 -1
  127. package/src/stylesheets/7-deprecated/5-components/_card.scss +1 -0
  128. package/src/stylesheets/7-deprecated/5-components/_chat-status.scss +66 -20
  129. package/src/stylesheets/7-deprecated/5-components/_conversation.scss +1 -4
  130. package/src/stylesheets/7-deprecated/5-components/_input.scss +6 -1
  131. package/src/stylesheets/7-deprecated/5-components/_interrupt.scss +1 -4
  132. package/src/stylesheets/7-deprecated/5-components/_message.scss +49 -12
  133. package/src/stylesheets/7-deprecated/5-components/_translation-options.scss +30 -37
  134. package/src/stylesheets/7-deprecated/5-components/_unread-messages.scss +38 -0
  135. package/src/stylesheets/deprecated-view.scss +1 -0
  136. package/src/stylesheets/styles.scss +2 -0
  137. package/webpack/config.common.js +6 -1
  138. package/webpack/config.package.js +18 -0
  139. package/webpack/defaults.js +1 -1
  140. package/src/javascripts/ui/components/core/seamly-file-upload.js +0 -86
  141. package/src/javascripts/ui/components/entry/text-entry/hooks.js +0 -46
@@ -1,7 +1,3 @@
1
- /*!************************!*\
2
- !*** semver (ignored) ***!
3
- \************************/
4
-
5
1
  /*!*************************!*\
6
2
  !*** external "preact" ***!
7
3
  \*************************/
@@ -10,10 +6,6 @@
10
6
  !*** external "preact/hooks" ***!
11
7
  \*******************************/
12
8
 
13
- /*!********************************!*\
14
- !*** ./util.inspect (ignored) ***!
15
- \********************************/
16
-
17
9
  /*!********************************!*\
18
10
  !*** external "preact/compat" ***!
19
11
  \********************************/
@@ -38,18 +30,6 @@
38
30
  !*** external "preact/jsx-runtime" ***!
39
31
  \*************************************/
40
32
 
41
- /*!**************************************!*\
42
- !*** ./node_modules/qs/lib/index.js ***!
43
- \**************************************/
44
-
45
- /*!**************************************!*\
46
- !*** ./node_modules/qs/lib/parse.js ***!
47
- \**************************************/
48
-
49
- /*!**************************************!*\
50
- !*** ./node_modules/qs/lib/utils.js ***!
51
- \**************************************/
52
-
53
33
  /*!**************************************!*\
54
34
  !*** ./src/javascripts/api/index.ts ***!
55
35
  \**************************************/
@@ -58,14 +38,6 @@
58
38
  !*** ./src/javascripts/lib/debug.js ***!
59
39
  \**************************************/
60
40
 
61
- /*!***************************************!*\
62
- !*** ./node_modules/has/src/index.js ***!
63
- \***************************************/
64
-
65
- /*!****************************************!*\
66
- !*** ./node_modules/qs/lib/formats.js ***!
67
- \****************************************/
68
-
69
41
  /*!****************************************!*\
70
42
  !*** ./node_modules/react-is/index.js ***!
71
43
  \****************************************/
@@ -74,58 +46,30 @@
74
46
  !*** ./node_modules/redux/es/redux.js ***!
75
47
  \****************************************/
76
48
 
77
- /*!*****************************************!*\
78
- !*** ./node_modules/call-bind/index.js ***!
79
- \*****************************************/
80
-
81
49
  /*!******************************************!*\
82
50
  !*** ./node_modules/debug/src/common.js ***!
83
51
  \******************************************/
84
52
 
85
53
  /*!******************************************!*\
86
- !*** ./node_modules/qs/lib/stringify.js ***!
54
+ !*** ./src/javascripts/package/hooks.js ***!
87
55
  \******************************************/
88
56
 
89
57
  /*!*******************************************!*\
90
58
  !*** ./node_modules/debug/src/browser.js ***!
91
59
  \*******************************************/
92
60
 
93
- /*!*******************************************!*\
94
- !*** ./node_modules/has-symbols/index.js ***!
95
- \*******************************************/
96
-
97
- /*!*******************************************!*\
98
- !*** ./node_modules/has-symbols/shams.js ***!
99
- \*******************************************/
100
-
101
61
  /*!*******************************************!*\
102
62
  !*** ./node_modules/reselect/es/index.js ***!
103
63
  \*******************************************/
104
64
 
105
- /*!********************************************!*\
106
- !*** ./node_modules/side-channel/index.js ***!
107
- \********************************************/
108
-
109
65
  /*!********************************************!*\
110
66
  !*** ./src/javascripts/lib/store/index.js ***!
111
67
  \********************************************/
112
68
 
113
69
  /*!*********************************************!*\
114
- !*** ./node_modules/call-bind/callBound.js ***!
115
- \*********************************************/
116
-
117
- /*!*********************************************!*\
118
- !*** ./node_modules/function-bind/index.js ***!
119
- \*********************************************/
120
-
121
- /*!*********************************************!*\
122
- !*** ./node_modules/get-intrinsic/index.js ***!
70
+ !*** ./node_modules/core-js/es/array/at.js ***!
123
71
  \*********************************************/
124
72
 
125
- /*!**********************************************!*\
126
- !*** ./node_modules/object-inspect/index.js ***!
127
- \**********************************************/
128
-
129
73
  /*!**********************************************!*\
130
74
  !*** ./node_modules/react-redux/es/index.js ***!
131
75
  \**********************************************/
@@ -138,10 +82,6 @@
138
82
  !*** ./node_modules/redux-thunk/es/index.js ***!
139
83
  \**********************************************/
140
84
 
141
- /*!**********************************************!*\
142
- !*** ./node_modules/superagent/lib/utils.js ***!
143
- \**********************************************/
144
-
145
85
  /*!**********************************************!*\
146
86
  !*** ./src/javascripts/domains/app/hooks.js ***!
147
87
  \**********************************************/
@@ -155,11 +95,11 @@
155
95
  \**********************************************/
156
96
 
157
97
  /*!***********************************************!*\
158
- !*** ./node_modules/immer/dist/immer.esm.mjs ***!
98
+ !*** ./node_modules/core-js/internals/uid.js ***!
159
99
  \***********************************************/
160
100
 
161
101
  /*!***********************************************!*\
162
- !*** ./node_modules/superagent/lib/client.js ***!
102
+ !*** ./node_modules/immer/dist/immer.esm.mjs ***!
163
103
  \***********************************************/
164
104
 
165
105
  /*!***********************************************!*\
@@ -170,6 +110,10 @@
170
110
  !*** ./src/javascripts/domains/i18n/slice.ts ***!
171
111
  \***********************************************/
172
112
 
113
+ /*!************************************************!*\
114
+ !*** ./node_modules/core-js/internals/html.js ***!
115
+ \************************************************/
116
+
173
117
  /*!************************************************!*\
174
118
  !*** ./node_modules/react-redux/es/exports.js ***!
175
119
  \************************************************/
@@ -203,7 +147,7 @@
203
147
  \************************************************/
204
148
 
205
149
  /*!*************************************************!*\
206
- !*** ./node_modules/component-emitter/index.js ***!
150
+ !*** ./node_modules/core-js/internals/fails.js ***!
207
151
  \*************************************************/
208
152
 
209
153
  /*!*************************************************!*\
@@ -230,10 +174,26 @@
230
174
  !*** ./src/javascripts/lib/split-url-params.js ***!
231
175
  \*************************************************/
232
176
 
177
+ /*!*************************************************!*\
178
+ !*** ./src/javascripts/ui/hooks/use-timeout.ts ***!
179
+ \*************************************************/
180
+
233
181
  /*!*************************************************!*\
234
182
  !*** ./src/javascripts/ui/utils/validations.js ***!
235
183
  \*************************************************/
236
184
 
185
+ /*!**************************************************!*\
186
+ !*** ./node_modules/core-js/internals/export.js ***!
187
+ \**************************************************/
188
+
189
+ /*!**************************************************!*\
190
+ !*** ./node_modules/core-js/internals/global.js ***!
191
+ \**************************************************/
192
+
193
+ /*!**************************************************!*\
194
+ !*** ./node_modules/core-js/internals/shared.js ***!
195
+ \**************************************************/
196
+
237
197
  /*!**************************************************!*\
238
198
  !*** ./src/javascripts/domains/app/selectors.ts ***!
239
199
  \**************************************************/
@@ -250,6 +210,10 @@
250
210
  !*** ./src/javascripts/ui/hooks/seamly-hooks.js ***!
251
211
  \**************************************************/
252
212
 
213
+ /*!**************************************************!*\
214
+ !*** ./src/javascripts/ui/hooks/sounds/beep.mp3 ***!
215
+ \**************************************************/
216
+
253
217
  /*!**************************************************!*\
254
218
  !*** ./src/javascripts/ui/hooks/use-interval.js ***!
255
219
  \**************************************************/
@@ -259,11 +223,7 @@
259
223
  \**************************************************/
260
224
 
261
225
  /*!***************************************************!*\
262
- !*** ./node_modules/fast-safe-stringify/index.js ***!
263
- \***************************************************/
264
-
265
- /*!***************************************************!*\
266
- !*** ./node_modules/superagent/lib/agent-base.js ***!
226
+ !*** ./node_modules/core-js/internals/is-pure.js ***!
267
227
  \***************************************************/
268
228
 
269
229
  /*!***************************************************!*\
@@ -290,6 +250,10 @@
290
250
  !*** ./src/javascripts/ui/utils/general-utils.js ***!
291
251
  \***************************************************/
292
252
 
253
+ /*!****************************************************!*\
254
+ !*** ./node_modules/core-js/internals/own-keys.js ***!
255
+ \****************************************************/
256
+
293
257
  /*!****************************************************!*\
294
258
  !*** ./node_modules/react-redux/es/utils/batch.js ***!
295
259
  \****************************************************/
@@ -319,11 +283,35 @@
319
283
  \****************************************************/
320
284
 
321
285
  /*!*****************************************************!*\
322
- !*** ./node_modules/debug/node_modules/ms/index.js ***!
286
+ !*** ./node_modules/core-js/internals/an-object.js ***!
287
+ \*****************************************************/
288
+
289
+ /*!*****************************************************!*\
290
+ !*** ./node_modules/core-js/internals/is-forced.js ***!
291
+ \*****************************************************/
292
+
293
+ /*!*****************************************************!*\
294
+ !*** ./node_modules/core-js/internals/is-object.js ***!
295
+ \*****************************************************/
296
+
297
+ /*!*****************************************************!*\
298
+ !*** ./node_modules/core-js/internals/is-symbol.js ***!
299
+ \*****************************************************/
300
+
301
+ /*!*****************************************************!*\
302
+ !*** ./node_modules/core-js/internals/to-length.js ***!
323
303
  \*****************************************************/
324
304
 
325
305
  /*!*****************************************************!*\
326
- !*** ./node_modules/superagent/lib/request-base.js ***!
306
+ !*** ./node_modules/core-js/internals/to-object.js ***!
307
+ \*****************************************************/
308
+
309
+ /*!*****************************************************!*\
310
+ !*** ./node_modules/core-js/modules/es.array.at.js ***!
311
+ \*****************************************************/
312
+
313
+ /*!*****************************************************!*\
314
+ !*** ./node_modules/debug/node_modules/ms/index.js ***!
327
315
  \*****************************************************/
328
316
 
329
317
  /*!*****************************************************!*\
@@ -342,28 +330,32 @@
342
330
  !*** ./src/javascripts/domains/visibility/utils.js ***!
343
331
  \*****************************************************/
344
332
 
345
- /*!*****************************************************!*\
346
- !*** ./src/javascripts/ui/components/view/index.js ***!
347
- \*****************************************************/
348
-
349
333
  /*!*****************************************************!*\
350
334
  !*** ./src/javascripts/ui/hooks/use-seamly-chat.ts ***!
351
335
  \*****************************************************/
352
336
 
353
337
  /*!******************************************************!*\
354
- !*** ./node_modules/function-bind/implementation.js ***!
338
+ !*** ./node_modules/core-js/internals/a-callable.js ***!
355
339
  \******************************************************/
356
340
 
357
341
  /*!******************************************************!*\
358
- !*** ./node_modules/phoenix/priv/static/phoenix.mjs ***!
342
+ !*** ./node_modules/core-js/internals/get-method.js ***!
359
343
  \******************************************************/
360
344
 
361
345
  /*!******************************************************!*\
362
- !*** ./node_modules/react-redux/es/utils/warning.js ***!
346
+ !*** ./node_modules/core-js/internals/math-trunc.js ***!
347
+ \******************************************************/
348
+
349
+ /*!******************************************************!*\
350
+ !*** ./node_modules/core-js/internals/shared-key.js ***!
363
351
  \******************************************************/
364
352
 
365
353
  /*!******************************************************!*\
366
- !*** ./node_modules/superagent/lib/response-base.js ***!
354
+ !*** ./node_modules/phoenix/priv/static/phoenix.mjs ***!
355
+ \******************************************************/
356
+
357
+ /*!******************************************************!*\
358
+ !*** ./node_modules/react-redux/es/utils/warning.js ***!
367
359
  \******************************************************/
368
360
 
369
361
  /*!******************************************************!*\
@@ -375,9 +367,33 @@
375
367
  \******************************************************/
376
368
 
377
369
  /*!******************************************************!*\
378
- !*** ./src/javascripts/ui/hooks/seamly-api-hooks.js ***!
370
+ !*** ./src/javascripts/ui/components/view/index.tsx ***!
379
371
  \******************************************************/
380
372
 
373
+ /*!******************************************************!*\
374
+ !*** ./src/javascripts/ui/hooks/seamly-api-hooks.ts ***!
375
+ \******************************************************/
376
+
377
+ /*!*******************************************************!*\
378
+ !*** ./node_modules/core-js/internals/classof-raw.js ***!
379
+ \*******************************************************/
380
+
381
+ /*!*******************************************************!*\
382
+ !*** ./node_modules/core-js/internals/descriptors.js ***!
383
+ \*******************************************************/
384
+
385
+ /*!*******************************************************!*\
386
+ !*** ./node_modules/core-js/internals/hidden-keys.js ***!
387
+ \*******************************************************/
388
+
389
+ /*!*******************************************************!*\
390
+ !*** ./node_modules/core-js/internals/is-callable.js ***!
391
+ \*******************************************************/
392
+
393
+ /*!*******************************************************!*\
394
+ !*** ./node_modules/core-js/internals/object-keys.js ***!
395
+ \*******************************************************/
396
+
381
397
  /*!*******************************************************!*\
382
398
  !*** ./node_modules/react-redux/es/hooks/useStore.js ***!
383
399
  \*******************************************************/
@@ -414,10 +430,38 @@
414
430
  !*** ./src/javascripts/ui/hooks/use-click-outside.ts ***!
415
431
  \*******************************************************/
416
432
 
433
+ /*!*******************************************************!*\
434
+ !*** ./src/javascripts/ui/hooks/use-notifications.ts ***!
435
+ \*******************************************************/
436
+
437
+ /*!********************************************************!*\
438
+ !*** ./node_modules/core-js/internals/document-all.js ***!
439
+ \********************************************************/
440
+
441
+ /*!********************************************************!*\
442
+ !*** ./node_modules/core-js/internals/entry-unbind.js ***!
443
+ \********************************************************/
444
+
445
+ /*!********************************************************!*\
446
+ !*** ./node_modules/core-js/internals/get-built-in.js ***!
447
+ \********************************************************/
448
+
449
+ /*!********************************************************!*\
450
+ !*** ./node_modules/core-js/internals/shared-store.js ***!
451
+ \********************************************************/
452
+
453
+ /*!********************************************************!*\
454
+ !*** ./node_modules/core-js/internals/to-primitive.js ***!
455
+ \********************************************************/
456
+
417
457
  /*!********************************************************!*\
418
458
  !*** ./node_modules/focus-trap/dist/focus-trap.esm.js ***!
419
459
  \********************************************************/
420
460
 
461
+ /*!********************************************************!*\
462
+ !*** ./src/javascripts/api/errors/seamly-api-error.ts ***!
463
+ \********************************************************/
464
+
421
465
  /*!********************************************************!*\
422
466
  !*** ./src/javascripts/domains/interrupt/selectors.ts ***!
423
467
  \********************************************************/
@@ -450,6 +494,30 @@
450
494
  !*** ./src/javascripts/ui/hooks/use-seamly-actions.ts ***!
451
495
  \********************************************************/
452
496
 
497
+ /*!*********************************************************!*\
498
+ !*** ./node_modules/core-js/internals/enum-bug-keys.js ***!
499
+ \*********************************************************/
500
+
501
+ /*!*********************************************************!*\
502
+ !*** ./node_modules/core-js/internals/function-call.js ***!
503
+ \*********************************************************/
504
+
505
+ /*!*********************************************************!*\
506
+ !*** ./node_modules/core-js/internals/function-name.js ***!
507
+ \*********************************************************/
508
+
509
+ /*!*********************************************************!*\
510
+ !*** ./node_modules/core-js/internals/make-built-in.js ***!
511
+ \*********************************************************/
512
+
513
+ /*!*********************************************************!*\
514
+ !*** ./node_modules/core-js/internals/object-create.js ***!
515
+ \*********************************************************/
516
+
517
+ /*!*********************************************************!*\
518
+ !*** ./node_modules/core-js/internals/try-to-string.js ***!
519
+ \*********************************************************/
520
+
453
521
  /*!*********************************************************!*\
454
522
  !*** ./src/javascripts/api/errors/seamly-base-error.js ***!
455
523
  \*********************************************************/
@@ -474,6 +542,26 @@
474
542
  !*** ./src/javascripts/ui/hooks/use-seamly-commands.js ***!
475
543
  \*********************************************************/
476
544
 
545
+ /*!**********************************************************!*\
546
+ !*** ./node_modules/core-js/internals/array-includes.js ***!
547
+ \**********************************************************/
548
+
549
+ /*!**********************************************************!*\
550
+ !*** ./node_modules/core-js/internals/ie8-dom-define.js ***!
551
+ \**********************************************************/
552
+
553
+ /*!**********************************************************!*\
554
+ !*** ./node_modules/core-js/internals/indexed-object.js ***!
555
+ \**********************************************************/
556
+
557
+ /*!**********************************************************!*\
558
+ !*** ./node_modules/core-js/internals/inspect-source.js ***!
559
+ \**********************************************************/
560
+
561
+ /*!**********************************************************!*\
562
+ !*** ./node_modules/core-js/internals/internal-state.js ***!
563
+ \**********************************************************/
564
+
477
565
  /*!**********************************************************!*\
478
566
  !*** ./node_modules/preact/compat/dist/compat.module.js ***!
479
567
  \**********************************************************/
@@ -498,6 +586,14 @@
498
586
  !*** ./node_modules/@babel/runtime/helpers/esm/typeof.js ***!
499
587
  \***********************************************************/
500
588
 
589
+ /*!***********************************************************!*\
590
+ !*** ./node_modules/core-js/internals/define-built-in.js ***!
591
+ \***********************************************************/
592
+
593
+ /*!***********************************************************!*\
594
+ !*** ./node_modules/core-js/internals/to-property-key.js ***!
595
+ \***********************************************************/
596
+
501
597
  /*!***********************************************************!*\
502
598
  !*** ./node_modules/react-is/cjs/react-is.development.js ***!
503
599
  \***********************************************************/
@@ -546,6 +642,10 @@
546
642
  !*** ./node_modules/@ultraq/array-utils/array-utils.es.js ***!
547
643
  \************************************************************/
548
644
 
645
+ /*!************************************************************!*\
646
+ !*** ./node_modules/core-js/internals/has-own-property.js ***!
647
+ \************************************************************/
648
+
549
649
  /*!************************************************************!*\
550
650
  !*** ./node_modules/react-redux/es/components/Provider.js ***!
551
651
  \************************************************************/
@@ -606,6 +706,30 @@
606
706
  !*** ./src/javascripts/ui/hooks/use-single-file-upload.js ***!
607
707
  \************************************************************/
608
708
 
709
+ /*!*************************************************************!*\
710
+ !*** ./node_modules/core-js/internals/engine-user-agent.js ***!
711
+ \*************************************************************/
712
+
713
+ /*!*************************************************************!*\
714
+ !*** ./node_modules/core-js/internals/engine-v8-version.js ***!
715
+ \*************************************************************/
716
+
717
+ /*!*************************************************************!*\
718
+ !*** ./node_modules/core-js/internals/to-absolute-index.js ***!
719
+ \*************************************************************/
720
+
721
+ /*!*************************************************************!*\
722
+ !*** ./node_modules/core-js/internals/to-indexed-object.js ***!
723
+ \*************************************************************/
724
+
725
+ /*!*************************************************************!*\
726
+ !*** ./node_modules/core-js/internals/use-symbol-as-uid.js ***!
727
+ \*************************************************************/
728
+
729
+ /*!*************************************************************!*\
730
+ !*** ./node_modules/core-js/internals/well-known-symbol.js ***!
731
+ \*************************************************************/
732
+
609
733
  /*!*************************************************************!*\
610
734
  !*** ./src/javascripts/ui/components/chat-status/index.tsx ***!
611
735
  \*************************************************************/
@@ -618,6 +742,10 @@
618
742
  !*** ./src/javascripts/ui/components/form-controls/form.js ***!
619
743
  \*************************************************************/
620
744
 
745
+ /*!**************************************************************!*\
746
+ !*** ./node_modules/core-js/internals/add-to-unscopables.js ***!
747
+ \**************************************************************/
748
+
621
749
  /*!**************************************************************!*\
622
750
  !*** ./node_modules/react-redux/es/hooks/useReduxContext.js ***!
623
751
  \**************************************************************/
@@ -634,10 +762,6 @@
634
762
  !*** ./src/javascripts/ui/components/form-controls/error.js ***!
635
763
  \**************************************************************/
636
764
 
637
- /*!**************************************************************!*\
638
- !*** ./src/javascripts/ui/components/form-controls/input.js ***!
639
- \**************************************************************/
640
-
641
765
  /*!***************************************************************!*\
642
766
  !*** ./node_modules/minivents/dist/minivents.commonjs.min.js ***!
643
767
  \***************************************************************/
@@ -646,6 +770,10 @@
646
770
  !*** ./node_modules/react-redux/es/connect/wrapMapToProps.js ***!
647
771
  \***************************************************************/
648
772
 
773
+ /*!***************************************************************!*\
774
+ !*** ./src/javascripts/ui/components/form-controls/input.tsx ***!
775
+ \***************************************************************/
776
+
649
777
  /*!***************************************************************!*\
650
778
  !*** ./src/javascripts/ui/components/view/deprecated-view.js ***!
651
779
  \***************************************************************/
@@ -658,6 +786,22 @@
658
786
  !*** ./node_modules/@babel/runtime/helpers/esm/toPrimitive.js ***!
659
787
  \****************************************************************/
660
788
 
789
+ /*!****************************************************************!*\
790
+ !*** ./node_modules/core-js/internals/function-bind-native.js ***!
791
+ \****************************************************************/
792
+
793
+ /*!****************************************************************!*\
794
+ !*** ./node_modules/core-js/internals/is-null-or-undefined.js ***!
795
+ \****************************************************************/
796
+
797
+ /*!****************************************************************!*\
798
+ !*** ./node_modules/core-js/internals/length-of-array-like.js ***!
799
+ \****************************************************************/
800
+
801
+ /*!****************************************************************!*\
802
+ !*** ./node_modules/core-js/internals/object-keys-internal.js ***!
803
+ \****************************************************************/
804
+
661
805
  /*!****************************************************************!*\
662
806
  !*** ./node_modules/react-redux/es/connect/mapStateToProps.js ***!
663
807
  \****************************************************************/
@@ -682,20 +826,20 @@
682
826
  !*** ./src/javascripts/ui/components/entry/entry-container.js ***!
683
827
  \****************************************************************/
684
828
 
685
- /*!****************************************************************!*\
686
- !*** ./src/javascripts/ui/components/form-controls/wrapper.js ***!
687
- \****************************************************************/
688
-
689
829
  /*!*****************************************************************!*\
690
830
  !*** ./node_modules/@reduxjs/toolkit/dist/redux-toolkit.esm.js ***!
691
831
  \*****************************************************************/
692
832
 
693
833
  /*!*****************************************************************!*\
694
- !*** ./node_modules/react-redux/es/utils/bindActionCreators.js ***!
834
+ !*** ./node_modules/core-js/internals/function-uncurry-this.js ***!
695
835
  \*****************************************************************/
696
836
 
697
837
  /*!*****************************************************************!*\
698
- !*** ./node_modules/react-redux/node_modules/react-is/index.js ***!
838
+ !*** ./node_modules/core-js/internals/ordinary-to-primitive.js ***!
839
+ \*****************************************************************/
840
+
841
+ /*!*****************************************************************!*\
842
+ !*** ./node_modules/react-redux/es/utils/bindActionCreators.js ***!
699
843
  \*****************************************************************/
700
844
 
701
845
  /*!*****************************************************************!*\
@@ -711,7 +855,7 @@
711
855
  \*****************************************************************/
712
856
 
713
857
  /*!*****************************************************************!*\
714
- !*** ./src/javascripts/ui/components/entry/text-entry/hooks.js ***!
858
+ !*** ./src/javascripts/ui/components/entry/text-entry/hooks.ts ***!
715
859
  \*****************************************************************/
716
860
 
717
861
  /*!*****************************************************************!*\
@@ -719,15 +863,15 @@
719
863
  \*****************************************************************/
720
864
 
721
865
  /*!*****************************************************************!*\
722
- !*** ./src/javascripts/ui/components/options/options-button.js ***!
866
+ !*** ./src/javascripts/ui/components/form-controls/wrapper.tsx ***!
723
867
  \*****************************************************************/
724
868
 
725
869
  /*!*****************************************************************!*\
726
- !*** ./src/javascripts/ui/components/options/options-frame.tsx ***!
870
+ !*** ./src/javascripts/ui/components/options/options-button.js ***!
727
871
  \*****************************************************************/
728
872
 
729
873
  /*!*****************************************************************!*\
730
- !*** ./src/javascripts/ui/components/view/window-view/index.js ***!
874
+ !*** ./src/javascripts/ui/components/options/options-frame.tsx ***!
731
875
  \*****************************************************************/
732
876
 
733
877
  /*!*****************************************************************!*\
@@ -754,6 +898,22 @@
754
898
  !*** ./node_modules/@ultraq/function-utils/function-utils.es.js ***!
755
899
  \******************************************************************/
756
900
 
901
+ /*!******************************************************************!*\
902
+ !*** ./node_modules/core-js/internals/define-global-property.js ***!
903
+ \******************************************************************/
904
+
905
+ /*!******************************************************************!*\
906
+ !*** ./node_modules/core-js/internals/object-define-property.js ***!
907
+ \******************************************************************/
908
+
909
+ /*!******************************************************************!*\
910
+ !*** ./node_modules/core-js/internals/object-is-prototype-of.js ***!
911
+ \******************************************************************/
912
+
913
+ /*!******************************************************************!*\
914
+ !*** ./node_modules/core-js/internals/to-integer-or-infinity.js ***!
915
+ \******************************************************************/
916
+
757
917
  /*!******************************************************************!*\
758
918
  !*** ./node_modules/react-redux/es/connect/invalidArgFactory.js ***!
759
919
  \******************************************************************/
@@ -775,15 +935,15 @@
775
935
  \******************************************************************/
776
936
 
777
937
  /*!******************************************************************!*\
778
- !*** ./src/javascripts/ui/components/core/seamly-file-upload.js ***!
938
+ !*** ./src/javascripts/ui/components/core/seamly-initializer.js ***!
779
939
  \******************************************************************/
780
940
 
781
941
  /*!******************************************************************!*\
782
- !*** ./src/javascripts/ui/components/core/seamly-initializer.js ***!
942
+ !*** ./src/javascripts/ui/components/core/seamly-live-region.js ***!
783
943
  \******************************************************************/
784
944
 
785
945
  /*!******************************************************************!*\
786
- !*** ./src/javascripts/ui/components/core/seamly-live-region.js ***!
946
+ !*** ./src/javascripts/ui/components/view/window-view/index.tsx ***!
787
947
  \******************************************************************/
788
948
 
789
949
  /*!******************************************************************!*\
@@ -802,6 +962,14 @@
802
962
  !*** ./node_modules/@babel/runtime/helpers/esm/defineProperty.js ***!
803
963
  \*******************************************************************/
804
964
 
965
+ /*!*******************************************************************!*\
966
+ !*** ./node_modules/core-js/internals/document-create-element.js ***!
967
+ \*******************************************************************/
968
+
969
+ /*!*******************************************************************!*\
970
+ !*** ./node_modules/core-js/internals/v8-prototype-define-bug.js ***!
971
+ \*******************************************************************/
972
+
805
973
  /*!*******************************************************************!*\
806
974
  !*** ./node_modules/react-redux/es/connect/mapDispatchToProps.js ***!
807
975
  \*******************************************************************/
@@ -822,6 +990,10 @@
822
990
  !*** ./src/javascripts/ui/components/conversation/event/video.js ***!
823
991
  \*******************************************************************/
824
992
 
993
+ /*!*******************************************************************!*\
994
+ !*** ./src/javascripts/ui/components/core/seamly-file-upload.tsx ***!
995
+ \*******************************************************************/
996
+
825
997
  /*!*******************************************************************!*\
826
998
  !*** ./src/javascripts/ui/components/form-controls/file-input.js ***!
827
999
  \*******************************************************************/
@@ -838,6 +1010,18 @@
838
1010
  !*** ./node_modules/@babel/runtime/helpers/esm/nonIterableRest.js ***!
839
1011
  \********************************************************************/
840
1012
 
1013
+ /*!********************************************************************!*\
1014
+ !*** ./node_modules/core-js/internals/object-define-properties.js ***!
1015
+ \********************************************************************/
1016
+
1017
+ /*!********************************************************************!*\
1018
+ !*** ./node_modules/core-js/internals/require-object-coercible.js ***!
1019
+ \********************************************************************/
1020
+
1021
+ /*!********************************************************************!*\
1022
+ !*** ./node_modules/core-js/internals/weak-map-basic-detection.js ***!
1023
+ \********************************************************************/
1024
+
841
1025
  /*!********************************************************************!*\
842
1026
  !*** ./node_modules/use-sync-external-store/shim/with-selector.js ***!
843
1027
  \********************************************************************/
@@ -862,10 +1046,6 @@
862
1046
  !*** ./src/javascripts/ui/components/layout/privacy-disclaimer.js ***!
863
1047
  \********************************************************************/
864
1048
 
865
- /*!********************************************************************!*\
866
- !*** ./src/javascripts/ui/components/widgets/in-out-transition.js ***!
867
- \********************************************************************/
868
-
869
1049
  /*!*********************************************************************!*\
870
1050
  !*** ./node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js ***!
871
1051
  \*********************************************************************/
@@ -878,6 +1058,14 @@
878
1058
  !*** ./src/javascripts/ui/components/conversation/event-divider.js ***!
879
1059
  \*********************************************************************/
880
1060
 
1061
+ /*!*********************************************************************!*\
1062
+ !*** ./src/javascripts/ui/components/widgets/in-out-transition.tsx ***!
1063
+ \*********************************************************************/
1064
+
1065
+ /*!**********************************************************************!*\
1066
+ !*** ./node_modules/core-js/internals/create-property-descriptor.js ***!
1067
+ \**********************************************************************/
1068
+
881
1069
  /*!**********************************************************************!*\
882
1070
  !*** ./src/javascripts/ui/components/layout/deprecated-app-frame.js ***!
883
1071
  \**********************************************************************/
@@ -890,6 +1078,10 @@
890
1078
  !*** ./src/javascripts/ui/hooks/use-seamly-idle-detach-countdown.js ***!
891
1079
  \**********************************************************************/
892
1080
 
1081
+ /*!***********************************************************************!*\
1082
+ !*** ./node_modules/core-js/internals/copy-constructor-properties.js ***!
1083
+ \***********************************************************************/
1084
+
893
1085
  /*!***********************************************************************!*\
894
1086
  !*** ./src/javascripts/ui/components/conversation/use-chat-scroll.ts ***!
895
1087
  \***********************************************************************/
@@ -918,6 +1110,10 @@
918
1110
  !*** ./src/javascripts/ui/hooks/use-seamly-activity-event-handler.js ***!
919
1111
  \***********************************************************************/
920
1112
 
1113
+ /*!************************************************************************!*\
1114
+ !*** ./node_modules/core-js/internals/symbol-constructor-detection.js ***!
1115
+ \************************************************************************/
1116
+
921
1117
  /*!************************************************************************!*\
922
1118
  !*** ./node_modules/react-redux/es/utils/useIsomorphicLayoutEffect.js ***!
923
1119
  \************************************************************************/
@@ -942,6 +1138,14 @@
942
1138
  !*** ./node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.js ***!
943
1139
  \*************************************************************************/
944
1140
 
1141
+ /*!*************************************************************************!*\
1142
+ !*** ./node_modules/core-js/internals/object-get-own-property-names.js ***!
1143
+ \*************************************************************************/
1144
+
1145
+ /*!*************************************************************************!*\
1146
+ !*** ./node_modules/core-js/internals/object-property-is-enumerable.js ***!
1147
+ \*************************************************************************/
1148
+
945
1149
  /*!*************************************************************************!*\
946
1150
  !*** ./src/javascripts/ui/components/conversation/component-context.js ***!
947
1151
  \*************************************************************************/
@@ -966,6 +1170,10 @@
966
1170
  !*** ./src/javascripts/ui/components/translation-chat-status/index.tsx ***!
967
1171
  \*************************************************************************/
968
1172
 
1173
+ /*!**************************************************************************!*\
1174
+ !*** ./node_modules/core-js/internals/create-non-enumerable-property.js ***!
1175
+ \**************************************************************************/
1176
+
969
1177
  /*!**************************************************************************!*\
970
1178
  !*** ./node_modules/raw-loader/dist/cjs.js!./src/icons/icon_close-8.svg ***!
971
1179
  \**************************************************************************/
@@ -998,6 +1206,10 @@
998
1206
  !*** ./src/javascripts/ui/components/core/seamly-live-region-context.js ***!
999
1207
  \**************************************************************************/
1000
1208
 
1209
+ /*!***************************************************************************!*\
1210
+ !*** ./node_modules/core-js/internals/object-get-own-property-symbols.js ***!
1211
+ \***************************************************************************/
1212
+
1001
1213
  /*!***************************************************************************!*\
1002
1214
  !*** ./node_modules/raw-loader/dist/cjs.js!./src/icons/avatar_bot-32.svg ***!
1003
1215
  \***************************************************************************/
@@ -1026,10 +1238,6 @@
1026
1238
  !*** ./src/javascripts/ui/components/conversation/event/divider/index.js ***!
1027
1239
  \***************************************************************************/
1028
1240
 
1029
- /*!***************************************************************************!*\
1030
- !*** ./src/javascripts/ui/components/entry/text-entry/text-entry-form.js ***!
1031
- \***************************************************************************/
1032
-
1033
1241
  /*!***************************************************************************!*\
1034
1242
  !*** ./src/javascripts/ui/components/view/window-view/collapse-button.js ***!
1035
1243
  \***************************************************************************/
@@ -1054,6 +1262,14 @@
1054
1262
  !*** ./src/javascripts/ui/components/conversation/event/image-lightbox.js ***!
1055
1263
  \****************************************************************************/
1056
1264
 
1265
+ /*!****************************************************************************!*\
1266
+ !*** ./src/javascripts/ui/components/entry/text-entry/text-entry-form.tsx ***!
1267
+ \****************************************************************************/
1268
+
1269
+ /*!*****************************************************************************!*\
1270
+ !*** ./node_modules/hoist-non-react-statics/node_modules/react-is/index.js ***!
1271
+ \*****************************************************************************/
1272
+
1057
1273
  /*!*****************************************************************************!*\
1058
1274
  !*** ./node_modules/raw-loader/dist/cjs.js!./src/icons/icon_balloon-32.svg ***!
1059
1275
  \*****************************************************************************/
@@ -1074,6 +1290,10 @@
1074
1290
  !*** ./src/javascripts/ui/components/options/transcript/transcript-form.js ***!
1075
1291
  \*****************************************************************************/
1076
1292
 
1293
+ /*!******************************************************************************!*\
1294
+ !*** ./node_modules/core-js/internals/object-get-own-property-descriptor.js ***!
1295
+ \******************************************************************************/
1296
+
1077
1297
  /*!******************************************************************************!*\
1078
1298
  !*** ./node_modules/raw-loader/dist/cjs.js!./src/icons/icon_download-16.svg ***!
1079
1299
  \******************************************************************************/
@@ -1154,10 +1374,6 @@
1154
1374
  !*** ./node_modules/raw-loader/dist/cjs.js!./src/icons/icon_newtranslation-32.svg ***!
1155
1375
  \************************************************************************************/
1156
1376
 
1157
- /*!************************************************************************************!*\
1158
- !*** ./node_modules/react-redux/node_modules/react-is/cjs/react-is.development.js ***!
1159
- \************************************************************************************/
1160
-
1161
1377
  /*!************************************************************************************!*\
1162
1378
  !*** ./src/javascripts/ui/components/conversation/event/carousel-message/index.js ***!
1163
1379
  \************************************************************************************/
@@ -1206,6 +1422,10 @@
1206
1422
  !*** ./src/javascripts/ui/components/conversation/event/chat-scroll/chat-scroll-provider.tsx ***!
1207
1423
  \***********************************************************************************************/
1208
1424
 
1425
+ /*!************************************************************************************************!*\
1426
+ !*** ./node_modules/hoist-non-react-statics/node_modules/react-is/cjs/react-is.development.js ***!
1427
+ \************************************************************************************************/
1428
+
1209
1429
  /*!************************************************************************************************!*\
1210
1430
  !*** ./src/javascripts/domains/translations/components/options-dialog/translation-options.tsx ***!
1211
1431
  \************************************************************************************************/
@@ -1218,6 +1438,10 @@
1218
1438
  !*** ./src/javascripts/ui/components/conversation/event/chat-scroll/unread-messages-button.tsx ***!
1219
1439
  \*************************************************************************************************/
1220
1440
 
1441
+ /*!***************************************************************************************************!*\
1442
+ !*** ./src/javascripts/ui/components/entry/abort-transaction-button/abort-transaction-button.tsx ***!
1443
+ \***************************************************************************************************/
1444
+
1221
1445
  /*!****************************************************************************************************!*\
1222
1446
  !*** ./src/javascripts/ui/components/conversation/event/carousel-component/components/controls.js ***!
1223
1447
  \****************************************************************************************************/