@seamly/web-ui 21.0.8 → 22.0.0-beta.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.
Files changed (163) hide show
  1. package/build/dist/lib/components.js +9295 -7845
  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 +6839 -5731
  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 +964 -383
  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 +336 -108
  24. package/build/dist/lib/index.debug.min.js.map +1 -0
  25. package/build/dist/lib/index.js +2991 -5659
  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 +9454 -12449
  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 +1828 -6015
  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 +11601 -14586
  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/i18n/slice.ts +2 -0
  65. package/src/javascripts/domains/interrupt/hooks.ts +15 -7
  66. package/src/javascripts/domains/interrupt/selectors.ts +4 -0
  67. package/src/javascripts/domains/interrupt/slice.ts +2 -2
  68. package/src/javascripts/domains/store/selectors.ts +23 -10
  69. package/src/javascripts/domains/store/slice.ts +63 -11
  70. package/src/javascripts/domains/store/store.types.ts +39 -1
  71. package/src/javascripts/domains/translations/components/options-button.tsx +1 -4
  72. package/src/javascripts/domains/translations/components/translation-status.tsx +4 -3
  73. package/src/javascripts/domains/translations/hooks.ts +11 -4
  74. package/src/javascripts/domains/translations/slice.ts +2 -0
  75. package/src/javascripts/index.ts +2 -0
  76. package/src/javascripts/lib/url-helpers.ts +24 -0
  77. package/src/javascripts/schema.ts +10 -0
  78. package/src/javascripts/style-guide/states.js +65 -0
  79. package/src/javascripts/ui/components/app-options/index.js +4 -3
  80. package/src/javascripts/ui/components/conversation/conversation.tsx +2 -0
  81. package/src/javascripts/ui/components/conversation/event/chat-scroll/chat-scroll-provider.tsx +2 -0
  82. package/src/javascripts/ui/components/conversation/event/choice-prompt.js +1 -1
  83. package/src/javascripts/ui/components/conversation/event/text.js +1 -1
  84. package/src/javascripts/ui/components/conversation/event/upload.js +50 -9
  85. package/src/javascripts/ui/components/conversation/use-chat-scroll.ts +3 -2
  86. package/src/javascripts/ui/components/core/seamly-event-subscriber.ts +16 -14
  87. package/src/javascripts/ui/components/core/seamly-file-upload.tsx +156 -0
  88. package/src/javascripts/ui/components/core/seamly-instance-functions-loader.js +5 -5
  89. package/src/javascripts/ui/components/entry/abort-transaction-button/abort-transaction-button.tsx +45 -0
  90. package/src/javascripts/ui/components/entry/deprecated-toggle-button.js +4 -3
  91. package/src/javascripts/ui/components/entry/text-entry/hooks.ts +108 -0
  92. package/src/javascripts/ui/components/entry/text-entry/index.js +7 -4
  93. package/src/javascripts/ui/components/entry/text-entry/{text-entry-form.js → text-entry-form.tsx} +8 -22
  94. package/src/javascripts/ui/components/faq/faq.js +5 -4
  95. package/src/javascripts/ui/components/form-controls/{input.js → input.tsx} +13 -2
  96. package/src/javascripts/ui/components/form-controls/{wrapper.js → wrapper.tsx} +8 -4
  97. package/src/javascripts/ui/components/layout/agent-info.js +4 -3
  98. package/src/javascripts/ui/components/layout/chat-frame.js +7 -8
  99. package/src/javascripts/ui/components/layout/deprecated-chat-frame.js +7 -8
  100. package/src/javascripts/ui/components/layout/interrupt.js +6 -15
  101. package/src/javascripts/ui/components/layout/pre-chat-messages.js +4 -3
  102. package/src/javascripts/ui/components/suggestions/index.js +5 -4
  103. package/src/javascripts/ui/components/translation-chat-status/index.tsx +4 -3
  104. package/src/javascripts/ui/components/view/app-view.js +1 -2
  105. package/src/javascripts/ui/components/view/deprecated-view.js +1 -2
  106. package/src/javascripts/ui/components/view/{index.js → index.tsx} +53 -4
  107. package/src/javascripts/ui/components/view/inline-view.js +1 -11
  108. package/src/javascripts/ui/components/view/window-view/{index.js → index.tsx} +15 -11
  109. package/src/javascripts/ui/components/view/window-view/window-open-button.js +4 -3
  110. package/src/javascripts/ui/components/widgets/{in-out-transition.js → in-out-transition.tsx} +67 -28
  111. package/src/javascripts/ui/hooks/sounds/beep.mp3 +0 -0
  112. package/src/javascripts/ui/hooks/use-click-outside.ts +5 -3
  113. package/src/javascripts/ui/hooks/use-notifications.ts +114 -0
  114. package/src/javascripts/ui/hooks/{use-seamly-chat.js → use-seamly-chat.ts} +5 -1
  115. package/src/javascripts/ui/hooks/use-session-expired-command.ts +17 -0
  116. package/src/javascripts/ui/hooks/use-timeout.ts +20 -0
  117. package/src/stylesheets/3-chat/_chat.scss +3 -5
  118. package/src/stylesheets/4-base/_formelements.scss +0 -36
  119. package/src/stylesheets/5-components/_abort-transaction.scss +10 -0
  120. package/src/stylesheets/5-components/_buttons.scss +18 -3
  121. package/src/stylesheets/5-components/_character-limit.scss +2 -2
  122. package/src/stylesheets/5-components/_chat-status.scss +26 -37
  123. package/src/stylesheets/5-components/_choice-prompt.scss +9 -10
  124. package/src/stylesheets/5-components/_conversation.scss +9 -62
  125. package/src/stylesheets/5-components/_disclaimer.scss +11 -3
  126. package/src/stylesheets/5-components/_error.scss +3 -2
  127. package/src/stylesheets/5-components/_idle.scss +3 -8
  128. package/src/stylesheets/5-components/_input.scss +34 -13
  129. package/src/stylesheets/5-components/_interrupt.scss +3 -10
  130. package/src/stylesheets/5-components/_loader.scss +1 -2
  131. package/src/stylesheets/5-components/_message-author.scss +2 -4
  132. package/src/stylesheets/5-components/_message-body.scss +33 -10
  133. package/src/stylesheets/5-components/_message-card.scss +2 -10
  134. package/src/stylesheets/5-components/_message-carousel.scss +4 -4
  135. package/src/stylesheets/5-components/_message-cta.scss +0 -6
  136. package/src/stylesheets/5-components/_message.scss +1 -0
  137. package/src/stylesheets/5-components/_modal.scss +2 -5
  138. package/src/stylesheets/5-components/_options.scss +17 -22
  139. package/src/stylesheets/5-components/_pre-chat-messages.scss +3 -1
  140. package/src/stylesheets/5-components/_prompt.scss +3 -7
  141. package/src/stylesheets/5-components/_skip-link.scss +2 -1
  142. package/src/stylesheets/5-components/_suggestions.scss +2 -2
  143. package/src/stylesheets/5-components/_translation-options.scss +5 -2
  144. package/src/stylesheets/5-components/_unread-messages.scss +33 -0
  145. package/src/stylesheets/5-components/_upload.scss +20 -27
  146. package/src/stylesheets/6-default-implementation/_hover.scss +14 -17
  147. package/src/stylesheets/7-deprecated/1-settings/_config.scss +17 -0
  148. package/src/stylesheets/7-deprecated/3-app/_app.scss +2 -1
  149. package/src/stylesheets/7-deprecated/5-components/_card.scss +1 -0
  150. package/src/stylesheets/7-deprecated/5-components/_chat-status.scss +66 -20
  151. package/src/stylesheets/7-deprecated/5-components/_conversation.scss +1 -4
  152. package/src/stylesheets/7-deprecated/5-components/_input.scss +6 -1
  153. package/src/stylesheets/7-deprecated/5-components/_interrupt.scss +1 -4
  154. package/src/stylesheets/7-deprecated/5-components/_message.scss +49 -12
  155. package/src/stylesheets/7-deprecated/5-components/_translation-options.scss +30 -37
  156. package/src/stylesheets/7-deprecated/5-components/_unread-messages.scss +38 -0
  157. package/src/stylesheets/deprecated-view.scss +1 -0
  158. package/src/stylesheets/styles.scss +2 -0
  159. package/webpack/config.common.js +6 -1
  160. package/webpack/config.package.js +18 -0
  161. package/webpack/defaults.js +1 -1
  162. package/src/javascripts/ui/components/core/seamly-file-upload.js +0 -86
  163. 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
  /*!*****************************************************!*\
@@ -343,27 +331,31 @@
343
331
  \*****************************************************/
344
332
 
345
333
  /*!*****************************************************!*\
346
- !*** ./src/javascripts/ui/components/view/index.js ***!
334
+ !*** ./src/javascripts/ui/hooks/use-seamly-chat.ts ***!
347
335
  \*****************************************************/
348
336
 
349
- /*!*****************************************************!*\
350
- !*** ./src/javascripts/ui/hooks/use-seamly-chat.js ***!
351
- \*****************************************************/
337
+ /*!******************************************************!*\
338
+ !*** ./node_modules/core-js/internals/a-callable.js ***!
339
+ \******************************************************/
352
340
 
353
341
  /*!******************************************************!*\
354
- !*** ./node_modules/function-bind/implementation.js ***!
342
+ !*** ./node_modules/core-js/internals/get-method.js ***!
355
343
  \******************************************************/
356
344
 
357
345
  /*!******************************************************!*\
358
- !*** ./node_modules/phoenix/priv/static/phoenix.mjs ***!
346
+ !*** ./node_modules/core-js/internals/math-trunc.js ***!
359
347
  \******************************************************/
360
348
 
361
349
  /*!******************************************************!*\
362
- !*** ./node_modules/react-redux/es/utils/warning.js ***!
350
+ !*** ./node_modules/core-js/internals/shared-key.js ***!
351
+ \******************************************************/
352
+
353
+ /*!******************************************************!*\
354
+ !*** ./node_modules/phoenix/priv/static/phoenix.mjs ***!
363
355
  \******************************************************/
364
356
 
365
357
  /*!******************************************************!*\
366
- !*** ./node_modules/superagent/lib/response-base.js ***!
358
+ !*** ./node_modules/react-redux/es/utils/warning.js ***!
367
359
  \******************************************************/
368
360
 
369
361
  /*!******************************************************!*\
@@ -374,10 +366,34 @@
374
366
  !*** ./src/javascripts/ui/components/layout/icon.js ***!
375
367
  \******************************************************/
376
368
 
369
+ /*!******************************************************!*\
370
+ !*** ./src/javascripts/ui/components/view/index.tsx ***!
371
+ \******************************************************/
372
+
377
373
  /*!******************************************************!*\
378
374
  !*** ./src/javascripts/ui/hooks/seamly-api-hooks.js ***!
379
375
  \******************************************************/
380
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,13 +855,17 @@
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
  /*!*****************************************************************!*\
718
862
  !*** ./src/javascripts/ui/components/entry/text-entry/index.js ***!
719
863
  \*****************************************************************/
720
864
 
865
+ /*!*****************************************************************!*\
866
+ !*** ./src/javascripts/ui/components/form-controls/wrapper.tsx ***!
867
+ \*****************************************************************/
868
+
721
869
  /*!*****************************************************************!*\
722
870
  !*** ./src/javascripts/ui/components/options/options-button.js ***!
723
871
  \*****************************************************************/
@@ -727,11 +875,11 @@
727
875
  \*****************************************************************/
728
876
 
729
877
  /*!*****************************************************************!*\
730
- !*** ./src/javascripts/ui/components/view/window-view/index.js ***!
878
+ !*** ./src/javascripts/ui/hooks/use-event-component-mapping.js ***!
731
879
  \*****************************************************************/
732
880
 
733
881
  /*!*****************************************************************!*\
734
- !*** ./src/javascripts/ui/hooks/use-event-component-mapping.js ***!
882
+ !*** ./src/javascripts/ui/hooks/use-session-expired-command.ts ***!
735
883
  \*****************************************************************/
736
884
 
737
885
  /*!******************************************************************!*\
@@ -750,6 +898,22 @@
750
898
  !*** ./node_modules/@ultraq/function-utils/function-utils.es.js ***!
751
899
  \******************************************************************/
752
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
+
753
917
  /*!******************************************************************!*\
754
918
  !*** ./node_modules/react-redux/es/connect/invalidArgFactory.js ***!
755
919
  \******************************************************************/
@@ -771,15 +935,15 @@
771
935
  \******************************************************************/
772
936
 
773
937
  /*!******************************************************************!*\
774
- !*** ./src/javascripts/ui/components/core/seamly-file-upload.js ***!
938
+ !*** ./src/javascripts/ui/components/core/seamly-initializer.js ***!
775
939
  \******************************************************************/
776
940
 
777
941
  /*!******************************************************************!*\
778
- !*** ./src/javascripts/ui/components/core/seamly-initializer.js ***!
942
+ !*** ./src/javascripts/ui/components/core/seamly-live-region.js ***!
779
943
  \******************************************************************/
780
944
 
781
945
  /*!******************************************************************!*\
782
- !*** ./src/javascripts/ui/components/core/seamly-live-region.js ***!
946
+ !*** ./src/javascripts/ui/components/view/window-view/index.tsx ***!
783
947
  \******************************************************************/
784
948
 
785
949
  /*!******************************************************************!*\
@@ -798,6 +962,14 @@
798
962
  !*** ./node_modules/@babel/runtime/helpers/esm/defineProperty.js ***!
799
963
  \*******************************************************************/
800
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
+
801
973
  /*!*******************************************************************!*\
802
974
  !*** ./node_modules/react-redux/es/connect/mapDispatchToProps.js ***!
803
975
  \*******************************************************************/
@@ -818,6 +990,10 @@
818
990
  !*** ./src/javascripts/ui/components/conversation/event/video.js ***!
819
991
  \*******************************************************************/
820
992
 
993
+ /*!*******************************************************************!*\
994
+ !*** ./src/javascripts/ui/components/core/seamly-file-upload.tsx ***!
995
+ \*******************************************************************/
996
+
821
997
  /*!*******************************************************************!*\
822
998
  !*** ./src/javascripts/ui/components/form-controls/file-input.js ***!
823
999
  \*******************************************************************/
@@ -834,6 +1010,18 @@
834
1010
  !*** ./node_modules/@babel/runtime/helpers/esm/nonIterableRest.js ***!
835
1011
  \********************************************************************/
836
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
+
837
1025
  /*!********************************************************************!*\
838
1026
  !*** ./node_modules/use-sync-external-store/shim/with-selector.js ***!
839
1027
  \********************************************************************/
@@ -858,10 +1046,6 @@
858
1046
  !*** ./src/javascripts/ui/components/layout/privacy-disclaimer.js ***!
859
1047
  \********************************************************************/
860
1048
 
861
- /*!********************************************************************!*\
862
- !*** ./src/javascripts/ui/components/widgets/in-out-transition.js ***!
863
- \********************************************************************/
864
-
865
1049
  /*!*********************************************************************!*\
866
1050
  !*** ./node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js ***!
867
1051
  \*********************************************************************/
@@ -874,6 +1058,14 @@
874
1058
  !*** ./src/javascripts/ui/components/conversation/event-divider.js ***!
875
1059
  \*********************************************************************/
876
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
+
877
1069
  /*!**********************************************************************!*\
878
1070
  !*** ./src/javascripts/ui/components/layout/deprecated-app-frame.js ***!
879
1071
  \**********************************************************************/
@@ -886,6 +1078,10 @@
886
1078
  !*** ./src/javascripts/ui/hooks/use-seamly-idle-detach-countdown.js ***!
887
1079
  \**********************************************************************/
888
1080
 
1081
+ /*!***********************************************************************!*\
1082
+ !*** ./node_modules/core-js/internals/copy-constructor-properties.js ***!
1083
+ \***********************************************************************/
1084
+
889
1085
  /*!***********************************************************************!*\
890
1086
  !*** ./src/javascripts/ui/components/conversation/use-chat-scroll.ts ***!
891
1087
  \***********************************************************************/
@@ -914,6 +1110,10 @@
914
1110
  !*** ./src/javascripts/ui/hooks/use-seamly-activity-event-handler.js ***!
915
1111
  \***********************************************************************/
916
1112
 
1113
+ /*!************************************************************************!*\
1114
+ !*** ./node_modules/core-js/internals/symbol-constructor-detection.js ***!
1115
+ \************************************************************************/
1116
+
917
1117
  /*!************************************************************************!*\
918
1118
  !*** ./node_modules/react-redux/es/utils/useIsomorphicLayoutEffect.js ***!
919
1119
  \************************************************************************/
@@ -938,6 +1138,14 @@
938
1138
  !*** ./node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.js ***!
939
1139
  \*************************************************************************/
940
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
+
941
1149
  /*!*************************************************************************!*\
942
1150
  !*** ./src/javascripts/ui/components/conversation/component-context.js ***!
943
1151
  \*************************************************************************/
@@ -962,6 +1170,10 @@
962
1170
  !*** ./src/javascripts/ui/components/translation-chat-status/index.tsx ***!
963
1171
  \*************************************************************************/
964
1172
 
1173
+ /*!**************************************************************************!*\
1174
+ !*** ./node_modules/core-js/internals/create-non-enumerable-property.js ***!
1175
+ \**************************************************************************/
1176
+
965
1177
  /*!**************************************************************************!*\
966
1178
  !*** ./node_modules/raw-loader/dist/cjs.js!./src/icons/icon_close-8.svg ***!
967
1179
  \**************************************************************************/
@@ -994,6 +1206,10 @@
994
1206
  !*** ./src/javascripts/ui/components/core/seamly-live-region-context.js ***!
995
1207
  \**************************************************************************/
996
1208
 
1209
+ /*!***************************************************************************!*\
1210
+ !*** ./node_modules/core-js/internals/object-get-own-property-symbols.js ***!
1211
+ \***************************************************************************/
1212
+
997
1213
  /*!***************************************************************************!*\
998
1214
  !*** ./node_modules/raw-loader/dist/cjs.js!./src/icons/avatar_bot-32.svg ***!
999
1215
  \***************************************************************************/
@@ -1022,10 +1238,6 @@
1022
1238
  !*** ./src/javascripts/ui/components/conversation/event/divider/index.js ***!
1023
1239
  \***************************************************************************/
1024
1240
 
1025
- /*!***************************************************************************!*\
1026
- !*** ./src/javascripts/ui/components/entry/text-entry/text-entry-form.js ***!
1027
- \***************************************************************************/
1028
-
1029
1241
  /*!***************************************************************************!*\
1030
1242
  !*** ./src/javascripts/ui/components/view/window-view/collapse-button.js ***!
1031
1243
  \***************************************************************************/
@@ -1050,6 +1262,14 @@
1050
1262
  !*** ./src/javascripts/ui/components/conversation/event/image-lightbox.js ***!
1051
1263
  \****************************************************************************/
1052
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
+
1053
1273
  /*!*****************************************************************************!*\
1054
1274
  !*** ./node_modules/raw-loader/dist/cjs.js!./src/icons/icon_balloon-32.svg ***!
1055
1275
  \*****************************************************************************/
@@ -1070,6 +1290,10 @@
1070
1290
  !*** ./src/javascripts/ui/components/options/transcript/transcript-form.js ***!
1071
1291
  \*****************************************************************************/
1072
1292
 
1293
+ /*!******************************************************************************!*\
1294
+ !*** ./node_modules/core-js/internals/object-get-own-property-descriptor.js ***!
1295
+ \******************************************************************************/
1296
+
1073
1297
  /*!******************************************************************************!*\
1074
1298
  !*** ./node_modules/raw-loader/dist/cjs.js!./src/icons/icon_download-16.svg ***!
1075
1299
  \******************************************************************************/
@@ -1150,10 +1374,6 @@
1150
1374
  !*** ./node_modules/raw-loader/dist/cjs.js!./src/icons/icon_newtranslation-32.svg ***!
1151
1375
  \************************************************************************************/
1152
1376
 
1153
- /*!************************************************************************************!*\
1154
- !*** ./node_modules/react-redux/node_modules/react-is/cjs/react-is.development.js ***!
1155
- \************************************************************************************/
1156
-
1157
1377
  /*!************************************************************************************!*\
1158
1378
  !*** ./src/javascripts/ui/components/conversation/event/carousel-message/index.js ***!
1159
1379
  \************************************************************************************/
@@ -1202,6 +1422,10 @@
1202
1422
  !*** ./src/javascripts/ui/components/conversation/event/chat-scroll/chat-scroll-provider.tsx ***!
1203
1423
  \***********************************************************************************************/
1204
1424
 
1425
+ /*!************************************************************************************************!*\
1426
+ !*** ./node_modules/hoist-non-react-statics/node_modules/react-is/cjs/react-is.development.js ***!
1427
+ \************************************************************************************************/
1428
+
1205
1429
  /*!************************************************************************************************!*\
1206
1430
  !*** ./src/javascripts/domains/translations/components/options-dialog/translation-options.tsx ***!
1207
1431
  \************************************************************************************************/
@@ -1214,6 +1438,10 @@
1214
1438
  !*** ./src/javascripts/ui/components/conversation/event/chat-scroll/unread-messages-button.tsx ***!
1215
1439
  \*************************************************************************************************/
1216
1440
 
1441
+ /*!***************************************************************************************************!*\
1442
+ !*** ./src/javascripts/ui/components/entry/abort-transaction-button/abort-transaction-button.tsx ***!
1443
+ \***************************************************************************************************/
1444
+
1217
1445
  /*!****************************************************************************************************!*\
1218
1446
  !*** ./src/javascripts/ui/components/conversation/event/carousel-component/components/controls.js ***!
1219
1447
  \****************************************************************************************************/