@seamly/web-ui 20.8.1 → 21.0.1-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 (225) hide show
  1. package/build/dist/lib/components.js +14855 -20
  2. package/build/dist/lib/components.min.js +2 -1
  3. package/build/dist/lib/components.min.js.LICENSE.txt +48 -0
  4. package/build/dist/lib/config.js +9 -3
  5. package/build/dist/lib/config.min.js +1 -1
  6. package/build/dist/lib/contexts.js +14 -5
  7. package/build/dist/lib/contexts.min.js +1 -1
  8. package/build/dist/lib/deprecated-view.js +1 -1
  9. package/build/dist/lib/hooks.js +8446 -20
  10. package/build/dist/lib/hooks.min.js +2 -1
  11. package/build/dist/lib/hooks.min.js.LICENSE.txt +38 -0
  12. package/build/dist/lib/index.debug.js +585 -584
  13. package/build/dist/lib/index.debug.min.js +1 -1
  14. package/build/dist/lib/index.debug.min.js.LICENSE.txt +110 -110
  15. package/build/dist/lib/index.js +20279 -26454
  16. package/build/dist/lib/index.min.js +1 -1
  17. package/build/dist/lib/index.min.js.LICENSE.txt +6 -1
  18. package/build/dist/lib/standalone.js +27823 -34681
  19. package/build/dist/lib/standalone.min.js +1 -1
  20. package/build/dist/lib/standalone.min.js.LICENSE.txt +1 -1
  21. package/build/dist/lib/storage.js +6 -15
  22. package/build/dist/lib/style-guide.js +23181 -7921
  23. package/build/dist/lib/style-guide.min.js +1 -1
  24. package/build/dist/lib/style-guide.min.js.LICENSE.txt +10 -0
  25. package/build/dist/lib/styles-default-implementation.js +1 -1
  26. package/build/dist/lib/styles.js +1 -1
  27. package/build/dist/lib/utils.js +22149 -17
  28. package/build/dist/lib/utils.min.js +2 -1
  29. package/build/dist/lib/utils.min.js.LICENSE.txt +48 -0
  30. package/package.json +54 -52
  31. package/src/icons/icon_check-16.svg +14 -0
  32. package/src/icons/icon_check-32.svg +14 -0
  33. package/src/javascripts/api/conversation-connector.ts +149 -0
  34. package/src/javascripts/api/errors/seamly-base-error.js +19 -0
  35. package/src/javascripts/api/errors/seamly-unavailable-error.js +5 -7
  36. package/src/javascripts/api/{index.js → index.ts} +163 -116
  37. package/src/javascripts/config.types.ts +5 -4
  38. package/src/javascripts/domains/app/actions.ts +47 -46
  39. package/src/javascripts/domains/app/hooks.js +1 -1
  40. package/src/javascripts/domains/config/actions.ts +2 -8
  41. package/src/javascripts/domains/config/hooks.ts +1 -1
  42. package/src/javascripts/domains/config/selectors.ts +6 -6
  43. package/src/javascripts/domains/config/slice.ts +3 -3
  44. package/src/javascripts/domains/errors/index.ts +66 -0
  45. package/src/javascripts/domains/forms/context.ts +1 -1
  46. package/src/javascripts/domains/forms/forms.types.ts +3 -3
  47. package/src/javascripts/domains/forms/hooks.ts +10 -10
  48. package/src/javascripts/domains/forms/provider.tsx +9 -9
  49. package/src/javascripts/domains/i18n/actions.ts +11 -5
  50. package/src/javascripts/domains/i18n/hooks.ts +11 -8
  51. package/src/javascripts/domains/i18n/selectors.ts +10 -4
  52. package/src/javascripts/domains/i18n/slice.ts +0 -1
  53. package/src/javascripts/domains/interrupt/hooks.ts +1 -1
  54. package/src/javascripts/domains/interrupt/middleware.ts +1 -1
  55. package/src/javascripts/domains/store/index.ts +1 -1
  56. package/src/javascripts/domains/store/selectors.ts +16 -0
  57. package/src/javascripts/domains/store/slice.ts +47 -41
  58. package/src/javascripts/domains/store/store.types.ts +38 -10
  59. package/src/javascripts/domains/translations/components/{options-button.js → options-button.tsx} +30 -20
  60. package/src/javascripts/domains/translations/components/options-dialog/index.tsx +33 -0
  61. package/src/javascripts/domains/translations/components/options-dialog/translation-option.tsx +42 -0
  62. package/src/javascripts/domains/translations/components/options-dialog/translation-options.tsx +81 -0
  63. package/src/javascripts/domains/translations/components/translation-status.tsx +15 -0
  64. package/src/javascripts/domains/translations/hooks.ts +77 -11
  65. package/src/javascripts/domains/translations/slice.ts +20 -9
  66. package/src/javascripts/domains/translations/translations.types.ts +4 -2
  67. package/src/javascripts/domains/visibility/actions.ts +6 -10
  68. package/src/javascripts/domains/visibility/hooks.ts +33 -14
  69. package/src/javascripts/domains/visibility/selectors.ts +3 -2
  70. package/src/javascripts/domains/visibility/slice.ts +2 -6
  71. package/src/javascripts/index.ts +18 -22
  72. package/src/javascripts/lib/engine/{index.js → index.tsx} +25 -7
  73. package/src/javascripts/lib/url-helpers.ts +112 -0
  74. package/src/javascripts/package/components.js +15 -1
  75. package/src/javascripts/package/config.js +1 -1
  76. package/src/javascripts/package/contexts.js +5 -3
  77. package/src/javascripts/package/hooks.js +19 -1
  78. package/src/javascripts/package/utils.js +13 -3
  79. package/src/javascripts/schema.ts +28 -0
  80. package/src/javascripts/style-guide/components/app.js +16 -12
  81. package/src/javascripts/style-guide/components/links.js +6 -6
  82. package/src/javascripts/style-guide/components/static-core.js +14 -9
  83. package/src/javascripts/style-guide/components/view.js +2 -2
  84. package/src/javascripts/style-guide/states.js +132 -36
  85. package/src/javascripts/style-guide/style-guide-engine.js +2 -1
  86. package/src/javascripts/style-guide/style-guide-external-api.js +1 -1
  87. package/src/javascripts/ui/components/app-options/index.js +25 -6
  88. package/src/javascripts/ui/components/chat-app.js +1 -1
  89. package/src/javascripts/ui/components/chat-status/chat-status-action.tsx +30 -0
  90. package/src/javascripts/ui/components/chat-status/index.tsx +61 -0
  91. package/src/javascripts/ui/components/conversation/component-filter.js +9 -9
  92. package/src/javascripts/ui/components/conversation/{conversation.js → conversation.tsx} +32 -41
  93. package/src/javascripts/ui/components/conversation/event/card-component.js +2 -2
  94. package/src/javascripts/ui/components/conversation/event/card-message.js +1 -1
  95. package/src/javascripts/ui/components/conversation/event/carousel-component/components/controls.js +2 -2
  96. package/src/javascripts/ui/components/conversation/event/carousel-component/index.js +4 -4
  97. package/src/javascripts/ui/components/conversation/event/carousel-message/components/slide.js +2 -2
  98. package/src/javascripts/ui/components/conversation/event/carousel-message/index.js +1 -1
  99. package/src/javascripts/ui/components/conversation/event/chat-scroll/chat-scroll-context.ts +12 -0
  100. package/src/javascripts/ui/components/conversation/event/chat-scroll/chat-scroll-provider.tsx +46 -0
  101. package/src/javascripts/ui/components/conversation/event/chat-scroll/unread-messages-button.tsx +30 -0
  102. package/src/javascripts/ui/components/conversation/event/choice-prompt.js +12 -8
  103. package/src/javascripts/ui/components/conversation/event/conversation-suggestions.js +6 -6
  104. package/src/javascripts/ui/components/conversation/event/cta.js +2 -2
  105. package/src/javascripts/ui/components/conversation/event/divider/index.js +0 -1
  106. package/src/javascripts/ui/components/conversation/event/divider/variants/default.js +1 -1
  107. package/src/javascripts/ui/components/conversation/event/divider/variants/new-translation.js +17 -22
  108. package/src/javascripts/ui/components/conversation/event/divider/variants/time-indicator.js +2 -2
  109. package/src/javascripts/ui/components/conversation/event/event-participant.js +1 -1
  110. package/src/javascripts/ui/components/conversation/event/event.tsx +66 -0
  111. package/src/javascripts/ui/components/conversation/event/hooks/use-event-link-click-handler.js +1 -1
  112. package/src/javascripts/ui/components/conversation/event/hooks/use-formatted-date.js +1 -1
  113. package/src/javascripts/ui/components/conversation/event/image-lightbox.js +1 -1
  114. package/src/javascripts/ui/components/conversation/event/image.js +2 -2
  115. package/src/javascripts/ui/components/conversation/event/splash.js +1 -1
  116. package/src/javascripts/ui/components/conversation/event/translation.js +1 -1
  117. package/src/javascripts/ui/components/conversation/event/upload.js +2 -2
  118. package/src/javascripts/ui/components/conversation/event/video.js +2 -2
  119. package/src/javascripts/ui/components/conversation/event-divider.js +1 -1
  120. package/src/javascripts/ui/components/conversation/message-container.js +1 -1
  121. package/src/javascripts/ui/components/conversation/use-chat-scroll.ts +108 -0
  122. package/src/javascripts/ui/components/core/{seamly-activity-monitor.js → seamly-activity-monitor.tsx} +12 -5
  123. package/src/javascripts/ui/components/core/seamly-api-context.ts +7 -0
  124. package/src/javascripts/ui/components/core/seamly-chat.tsx +8 -0
  125. package/src/javascripts/ui/components/core/{seamly-core.js → seamly-core.tsx} +27 -14
  126. package/src/javascripts/ui/components/core/seamly-event-subscriber.ts +340 -0
  127. package/src/javascripts/ui/components/core/seamly-file-upload.js +2 -2
  128. package/src/javascripts/ui/components/core/seamly-idle-detach-counter.js +1 -1
  129. package/src/javascripts/ui/components/core/seamly-instance-functions-loader.js +24 -11
  130. package/src/javascripts/ui/components/core/seamly-live-region.js +4 -4
  131. package/src/javascripts/ui/components/core/seamly-new-notifications.js +3 -3
  132. package/src/javascripts/ui/components/core/seamly-read-state.js +2 -33
  133. package/src/javascripts/ui/components/entry/deprecated-toggle-button.js +4 -4
  134. package/src/javascripts/ui/components/entry/entry-container.js +8 -8
  135. package/src/javascripts/ui/components/entry/text-entry/hooks.js +3 -3
  136. package/src/javascripts/ui/components/entry/text-entry/index.js +3 -3
  137. package/src/javascripts/ui/components/entry/text-entry/text-entry-form.js +4 -4
  138. package/src/javascripts/ui/components/entry/upload/file-upload-form.js +3 -3
  139. package/src/javascripts/ui/components/entry/upload/index.js +5 -5
  140. package/src/javascripts/ui/components/entry/upload-toggle.js +6 -6
  141. package/src/javascripts/ui/components/faq/faq.js +14 -14
  142. package/src/javascripts/ui/components/form-controls/error.js +2 -2
  143. package/src/javascripts/ui/components/form-controls/file-input.js +3 -3
  144. package/src/javascripts/ui/components/layout/agent-info.js +3 -3
  145. package/src/javascripts/ui/components/layout/chat-frame.js +20 -12
  146. package/src/javascripts/ui/components/layout/chat.js +5 -5
  147. package/src/javascripts/ui/components/layout/deprecated-app-frame.js +6 -6
  148. package/src/javascripts/ui/components/layout/deprecated-chat-frame.js +34 -0
  149. package/src/javascripts/ui/components/layout/header.js +2 -2
  150. package/src/javascripts/ui/components/layout/icon.js +11 -9
  151. package/src/javascripts/ui/components/layout/interrupt.js +7 -5
  152. package/src/javascripts/ui/components/layout/pre-chat-messages.js +1 -1
  153. package/src/javascripts/ui/components/layout/privacy-disclaimer.js +2 -2
  154. package/src/javascripts/ui/components/options/options-button.js +5 -5
  155. package/src/javascripts/ui/components/options/{options-frame.js → options-frame.tsx} +52 -18
  156. package/src/javascripts/ui/components/options/transcript/index.js +9 -10
  157. package/src/javascripts/ui/components/options/transcript/transcript-form.js +2 -2
  158. package/src/javascripts/ui/components/suggestions/index.js +8 -8
  159. package/src/javascripts/ui/components/suggestions/suggestions-item.js +1 -1
  160. package/src/javascripts/{domains/translations/components/chat-status.js → ui/components/translation-chat-status/index.tsx} +13 -14
  161. package/src/javascripts/ui/components/translation-proposal/index.tsx +36 -0
  162. package/src/javascripts/ui/components/view/app-view.js +2 -7
  163. package/src/javascripts/ui/components/view/deprecated-view.js +8 -10
  164. package/src/javascripts/ui/components/view/index.js +6 -6
  165. package/src/javascripts/ui/components/view/inline-view.js +4 -8
  166. package/src/javascripts/ui/components/view/window-view/collapse-button.js +2 -2
  167. package/src/javascripts/ui/components/view/window-view/index.js +11 -17
  168. package/src/javascripts/ui/components/view/window-view/window-open-button.js +6 -6
  169. package/src/javascripts/ui/components/warnings/idle-detach-warning.js +3 -3
  170. package/src/javascripts/ui/components/warnings/prompt.js +1 -1
  171. package/src/javascripts/ui/components/warnings/resume-conversation-prompt.js +4 -4
  172. package/src/javascripts/ui/components/widgets/in-out-transition.js +20 -18
  173. package/src/javascripts/ui/components/widgets/lightbox.js +3 -3
  174. package/src/javascripts/ui/components/widgets/modal.js +2 -2
  175. package/src/javascripts/ui/components/widgets/upload-progress.js +2 -2
  176. package/src/javascripts/ui/hooks/file-upload-hooks.js +1 -1
  177. package/src/javascripts/ui/hooks/focus-helper-hooks.js +1 -1
  178. package/src/javascripts/ui/hooks/seamly-entry-hooks.js +6 -6
  179. package/src/javascripts/ui/hooks/seamly-hooks.js +11 -10
  180. package/src/javascripts/ui/hooks/seamly-option-hooks.js +6 -6
  181. package/src/javascripts/ui/hooks/{seamly-state-hooks.js → seamly-state-hooks.ts} +9 -6
  182. package/src/javascripts/ui/hooks/use-click-outside.ts +29 -0
  183. package/src/javascripts/ui/hooks/use-event-component-mapping.js +11 -10
  184. package/src/javascripts/ui/hooks/use-interval.js +1 -1
  185. package/src/javascripts/ui/hooks/use-seamly-actions.ts +29 -29
  186. package/src/javascripts/ui/hooks/use-seamly-chat.js +14 -24
  187. package/src/javascripts/ui/hooks/use-seamly-commands.js +20 -15
  188. package/src/javascripts/ui/hooks/use-seamly-idle-detach-countdown.js +8 -8
  189. package/src/javascripts/ui/hooks/use-seamly-resume-conversation-prompt.js +2 -2
  190. package/src/javascripts/ui/hooks/use-single-file-upload.js +1 -1
  191. package/src/javascripts/ui/hooks/utility-hooks.js +1 -1
  192. package/src/javascripts/ui/utils/general-utils.js +0 -23
  193. package/src/javascripts/ui/utils/seamly-utils.ts +10 -1
  194. package/src/javascripts/ui/utils/seamly-utils.types.ts +9 -0
  195. package/src/stylesheets/1-settings/_config.scss +1 -1
  196. package/src/stylesheets/3-chat/_chat.scss +24 -9
  197. package/src/stylesheets/5-components/_chat-status.scss +72 -16
  198. package/src/stylesheets/5-components/_conversation.scss +35 -1
  199. package/src/stylesheets/5-components/_disclaimer.scss +0 -5
  200. package/src/stylesheets/5-components/_options.scss +16 -6
  201. package/src/stylesheets/5-components/_translation-options.scss +51 -0
  202. package/src/stylesheets/6-default-implementation/_scrollbar.scss +1 -1
  203. package/src/stylesheets/7-deprecated/3-app/_app.scss +19 -4
  204. package/src/stylesheets/7-deprecated/5-components/_chat-status.scss +5 -0
  205. package/src/stylesheets/7-deprecated/5-components/_options.scss +1 -4
  206. package/src/stylesheets/7-deprecated/5-components/_translation-options.scss +49 -0
  207. package/src/stylesheets/deprecated-view.scss +1 -0
  208. package/src/stylesheets/styles.scss +1 -0
  209. package/webpack/config.common.js +4 -4
  210. package/webpack/config.package.js +10 -16
  211. package/webpack/config.site.js +4 -1
  212. package/webpack/config.test.js +2 -1
  213. package/build/dist/lib/deprecated-view.css +0 -1
  214. package/build/dist/lib/styles-default-implementation.css +0 -1
  215. package/build/dist/lib/styles.css +0 -1
  216. package/src/.DS_Store +0 -0
  217. package/src/javascripts/api/event-producer.js +0 -20
  218. package/src/javascripts/api/producer.js +0 -136
  219. package/src/javascripts/domains/errors/index.js +0 -37
  220. package/src/javascripts/domains/translations/components/options-dialog/form.js +0 -70
  221. package/src/javascripts/domains/translations/components/options-dialog/index.js +0 -87
  222. package/src/javascripts/ui/components/chat-status/index.js +0 -38
  223. package/src/javascripts/ui/components/conversation/event/event.js +0 -36
  224. package/src/javascripts/ui/components/core/seamly-api-context.js +0 -5
  225. package/src/javascripts/ui/components/core/seamly-event-subscriber.js +0 -279
@@ -43,7 +43,19 @@
43
43
  \*************************************/
44
44
 
45
45
  /*!**************************************!*\
46
- !*** ./src/javascripts/api/index.js ***!
46
+ !*** ./node_modules/qs/lib/index.js ***!
47
+ \**************************************/
48
+
49
+ /*!**************************************!*\
50
+ !*** ./node_modules/qs/lib/parse.js ***!
51
+ \**************************************/
52
+
53
+ /*!**************************************!*\
54
+ !*** ./node_modules/qs/lib/utils.js ***!
55
+ \**************************************/
56
+
57
+ /*!**************************************!*\
58
+ !*** ./src/javascripts/api/index.ts ***!
47
59
  \**************************************/
48
60
 
49
61
  /*!**************************************!*\
@@ -54,9 +66,9 @@
54
66
  !*** ./node_modules/has/src/index.js ***!
55
67
  \***************************************/
56
68
 
57
- /*!***************************************!*\
58
- !*** ./node_modules/xstream/index.js ***!
59
- \***************************************/
69
+ /*!****************************************!*\
70
+ !*** ./node_modules/qs/lib/formats.js ***!
71
+ \****************************************/
60
72
 
61
73
  /*!****************************************!*\
62
74
  !*** ./node_modules/react-is/index.js ***!
@@ -70,20 +82,12 @@
70
82
  !*** ./node_modules/call-bind/index.js ***!
71
83
  \*****************************************/
72
84
 
73
- /*!*****************************************!*\
74
- !*** ./node_modules/globalthis/shim.js ***!
75
- \*****************************************/
76
-
77
- /*!*****************************************!*\
78
- !*** ./src/javascripts/api/producer.js ***!
79
- \*****************************************/
80
-
81
85
  /*!******************************************!*\
82
86
  !*** ./node_modules/debug/src/common.js ***!
83
87
  \******************************************/
84
88
 
85
89
  /*!******************************************!*\
86
- !*** ./node_modules/globalthis/index.js ***!
90
+ !*** ./node_modules/qs/lib/stringify.js ***!
87
91
  \******************************************/
88
92
 
89
93
  /*!*******************************************!*\
@@ -98,10 +102,6 @@
98
102
  !*** ./node_modules/has-symbols/shams.js ***!
99
103
  \*******************************************/
100
104
 
101
- /*!*******************************************!*\
102
- !*** ./node_modules/object-keys/index.js ***!
103
- \*******************************************/
104
-
105
105
  /*!*******************************************!*\
106
106
  !*** ./node_modules/reselect/es/index.js ***!
107
107
  \*******************************************/
@@ -126,14 +126,6 @@
126
126
  !*** ./node_modules/get-intrinsic/index.js ***!
127
127
  \*********************************************/
128
128
 
129
- /*!*********************************************!*\
130
- !*** ./node_modules/globalthis/polyfill.js ***!
131
- \*********************************************/
132
-
133
- /*!*********************************************!*\
134
- !*** ./src/javascripts/lib/engine/index.js ***!
135
- \*********************************************/
136
-
137
129
  /*!**********************************************!*\
138
130
  !*** ./node_modules/object-inspect/index.js ***!
139
131
  \**********************************************/
@@ -162,6 +154,10 @@
162
154
  !*** ./src/javascripts/domains/app/slice.ts ***!
163
155
  \**********************************************/
164
156
 
157
+ /*!**********************************************!*\
158
+ !*** ./src/javascripts/lib/engine/index.tsx ***!
159
+ \**********************************************/
160
+
165
161
  /*!***********************************************!*\
166
162
  !*** ./node_modules/immer/dist/immer.esm.mjs ***!
167
163
  \***********************************************/
@@ -170,10 +166,6 @@
170
166
  !*** ./node_modules/superagent/lib/client.js ***!
171
167
  \***********************************************/
172
168
 
173
- /*!***********************************************!*\
174
- !*** ./src/javascripts/api/event-producer.js ***!
175
- \***********************************************/
176
-
177
169
  /*!***********************************************!*\
178
170
  !*** ./src/javascripts/domains/i18n/hooks.ts ***!
179
171
  \***********************************************/
@@ -218,14 +210,6 @@
218
210
  !*** ./node_modules/component-emitter/index.js ***!
219
211
  \*************************************************/
220
212
 
221
- /*!*************************************************!*\
222
- !*** ./node_modules/define-properties/index.js ***!
223
- \*************************************************/
224
-
225
- /*!*************************************************!*\
226
- !*** ./node_modules/object-keys/isArguments.js ***!
227
- \*************************************************/
228
-
229
213
  /*!*************************************************!*\
230
214
  !*** ./node_modules/tabbable/dist/index.esm.js ***!
231
215
  \*************************************************/
@@ -239,7 +223,7 @@
239
223
  \*************************************************/
240
224
 
241
225
  /*!*************************************************!*\
242
- !*** ./src/javascripts/domains/errors/index.js ***!
226
+ !*** ./src/javascripts/domains/errors/index.ts ***!
243
227
  \*************************************************/
244
228
 
245
229
  /*!*************************************************!*\
@@ -310,10 +294,6 @@
310
294
  !*** ./src/javascripts/ui/utils/general-utils.js ***!
311
295
  \***************************************************/
312
296
 
313
- /*!****************************************************!*\
314
- !*** ./node_modules/object-keys/implementation.js ***!
315
- \****************************************************/
316
-
317
297
  /*!****************************************************!*\
318
298
  !*** ./node_modules/react-redux/es/utils/batch.js ***!
319
299
  \****************************************************/
@@ -322,10 +302,6 @@
322
302
  !*** ./node_modules/reselect/es/defaultMemoize.js ***!
323
303
  \****************************************************/
324
304
 
325
- /*!****************************************************!*\
326
- !*** ./node_modules/symbol-observable/ponyfill.js ***!
327
- \****************************************************/
328
-
329
305
  /*!****************************************************!*\
330
306
  !*** ./src/javascripts/domains/forms/provider.tsx ***!
331
307
  \****************************************************/
@@ -342,6 +318,10 @@
342
318
  !*** ./src/javascripts/domains/interrupt/slice.ts ***!
343
319
  \****************************************************/
344
320
 
321
+ /*!****************************************************!*\
322
+ !*** ./src/javascripts/domains/store/selectors.ts ***!
323
+ \****************************************************/
324
+
345
325
  /*!*****************************************************!*\
346
326
  !*** ./node_modules/superagent/lib/request-base.js ***!
347
327
  \*****************************************************/
@@ -402,6 +382,10 @@
402
382
  !*** ./node_modules/react-redux/es/hooks/useStore.js ***!
403
383
  \*******************************************************/
404
384
 
385
+ /*!*******************************************************!*\
386
+ !*** ./src/javascripts/api/conversation-connector.ts ***!
387
+ \*******************************************************/
388
+
405
389
  /*!*******************************************************!*\
406
390
  !*** ./src/javascripts/domains/options/middleware.js ***!
407
391
  \*******************************************************/
@@ -426,16 +410,12 @@
426
410
  !*** ./src/javascripts/ui/hooks/live-region-hooks.js ***!
427
411
  \*******************************************************/
428
412
 
429
- /*!********************************************************!*\
430
- !*** ./node_modules/focus-trap/dist/focus-trap.esm.js ***!
431
- \********************************************************/
432
-
433
- /*!********************************************************!*\
434
- !*** ./node_modules/has-property-descriptors/index.js ***!
435
- \********************************************************/
413
+ /*!*******************************************************!*\
414
+ !*** ./src/javascripts/ui/hooks/use-click-outside.ts ***!
415
+ \*******************************************************/
436
416
 
437
417
  /*!********************************************************!*\
438
- !*** ./node_modules/symbol-observable/lib/ponyfill.js ***!
418
+ !*** ./node_modules/focus-trap/dist/focus-trap.esm.js ***!
439
419
  \********************************************************/
440
420
 
441
421
  /*!********************************************************!*\
@@ -463,7 +443,7 @@
463
443
  \********************************************************/
464
444
 
465
445
  /*!********************************************************!*\
466
- !*** ./src/javascripts/ui/hooks/seamly-state-hooks.js ***!
446
+ !*** ./src/javascripts/ui/hooks/seamly-state-hooks.ts ***!
467
447
  \********************************************************/
468
448
 
469
449
  /*!********************************************************!*\
@@ -514,10 +494,6 @@
514
494
  !*** ./src/javascripts/ui/components/warnings/prompt.js ***!
515
495
  \**********************************************************/
516
496
 
517
- /*!***********************************************************!*\
518
- !*** ./node_modules/globalthis/implementation.browser.js ***!
519
- \***********************************************************/
520
-
521
497
  /*!***********************************************************!*\
522
498
  !*** ./node_modules/react-is/cjs/react-is.development.js ***!
523
499
  \***********************************************************/
@@ -546,10 +522,6 @@
546
522
  !*** ./src/javascripts/domains/translations/selectors.ts ***!
547
523
  \***********************************************************/
548
524
 
549
- /*!***********************************************************!*\
550
- !*** ./src/javascripts/ui/components/core/seamly-core.js ***!
551
- \***********************************************************/
552
-
553
525
  /*!***********************************************************!*\
554
526
  !*** ./src/javascripts/ui/components/layout/interrupt.js ***!
555
527
  \***********************************************************/
@@ -603,7 +575,11 @@
603
575
  \************************************************************/
604
576
 
605
577
  /*!************************************************************!*\
606
- !*** ./src/javascripts/ui/components/chat-status/index.js ***!
578
+ !*** ./src/javascripts/ui/components/core/seamly-chat.tsx ***!
579
+ \************************************************************/
580
+
581
+ /*!************************************************************!*\
582
+ !*** ./src/javascripts/ui/components/core/seamly-core.tsx ***!
607
583
  \************************************************************/
608
584
 
609
585
  /*!************************************************************!*\
@@ -626,6 +602,10 @@
626
602
  !*** ./src/javascripts/ui/hooks/use-single-file-upload.js ***!
627
603
  \************************************************************/
628
604
 
605
+ /*!*************************************************************!*\
606
+ !*** ./src/javascripts/ui/components/chat-status/index.tsx ***!
607
+ \*************************************************************/
608
+
629
609
  /*!*************************************************************!*\
630
610
  !*** ./src/javascripts/ui/components/entry/upload/index.js ***!
631
611
  \*************************************************************/
@@ -638,18 +618,6 @@
638
618
  !*** ./node_modules/react-redux/es/hooks/useReduxContext.js ***!
639
619
  \**************************************************************/
640
620
 
641
- /*!**************************************************************!*\
642
- !*** ./node_modules/superagent/node_modules/qs/lib/index.js ***!
643
- \**************************************************************/
644
-
645
- /*!**************************************************************!*\
646
- !*** ./node_modules/superagent/node_modules/qs/lib/parse.js ***!
647
- \**************************************************************/
648
-
649
- /*!**************************************************************!*\
650
- !*** ./node_modules/superagent/node_modules/qs/lib/utils.js ***!
651
- \**************************************************************/
652
-
653
621
  /*!**************************************************************!*\
654
622
  !*** ./src/javascripts/ui/components/conversation/loader.js ***!
655
623
  \**************************************************************/
@@ -674,10 +642,6 @@
674
642
  !*** ./node_modules/react-redux/es/connect/wrapMapToProps.js ***!
675
643
  \***************************************************************/
676
644
 
677
- /*!***************************************************************!*\
678
- !*** ./src/javascripts/ui/components/form-controls/select.js ***!
679
- \***************************************************************/
680
-
681
645
  /*!***************************************************************!*\
682
646
  !*** ./src/javascripts/ui/components/view/deprecated-view.js ***!
683
647
  \***************************************************************/
@@ -698,10 +662,6 @@
698
662
  !*** ./node_modules/react-redux/es/utils/verifyPlainObject.js ***!
699
663
  \****************************************************************/
700
664
 
701
- /*!****************************************************************!*\
702
- !*** ./node_modules/superagent/node_modules/qs/lib/formats.js ***!
703
- \****************************************************************/
704
-
705
665
  /*!****************************************************************!*\
706
666
  !*** ./src/javascripts/api/errors/seamly-unavailable-error.js ***!
707
667
  \****************************************************************/
@@ -718,10 +678,6 @@
718
678
  !*** ./src/javascripts/ui/components/form-controls/wrapper.js ***!
719
679
  \****************************************************************/
720
680
 
721
- /*!****************************************************************!*\
722
- !*** ./src/javascripts/ui/components/options/options-frame.js ***!
723
- \****************************************************************/
724
-
725
681
  /*!*****************************************************************!*\
726
682
  !*** ./node_modules/@reduxjs/toolkit/dist/redux-toolkit.esm.js ***!
727
683
  \*****************************************************************/
@@ -758,6 +714,10 @@
758
714
  !*** ./src/javascripts/ui/components/options/options-button.js ***!
759
715
  \*****************************************************************/
760
716
 
717
+ /*!*****************************************************************!*\
718
+ !*** ./src/javascripts/ui/components/options/options-frame.tsx ***!
719
+ \*****************************************************************/
720
+
761
721
  /*!*****************************************************************!*\
762
722
  !*** ./src/javascripts/ui/components/view/window-view/index.js ***!
763
723
  \*****************************************************************/
@@ -786,10 +746,6 @@
786
746
  !*** ./node_modules/react-redux/es/utils/reactBatchedUpdates.js ***!
787
747
  \******************************************************************/
788
748
 
789
- /*!******************************************************************!*\
790
- !*** ./node_modules/superagent/node_modules/qs/lib/stringify.js ***!
791
- \******************************************************************/
792
-
793
749
  /*!******************************************************************!*\
794
750
  !*** ./src/javascripts/api/errors/seamly-configuration-error.js ***!
795
751
  \******************************************************************/
@@ -799,7 +755,7 @@
799
755
  \******************************************************************/
800
756
 
801
757
  /*!******************************************************************!*\
802
- !*** ./src/javascripts/ui/components/core/seamly-api-context.js ***!
758
+ !*** ./src/javascripts/ui/components/core/seamly-api-context.ts ***!
803
759
  \******************************************************************/
804
760
 
805
761
  /*!******************************************************************!*\
@@ -842,10 +798,6 @@
842
798
  !*** ./node_modules/react-redux/es/utils/useSyncExternalStore.js ***!
843
799
  \*******************************************************************/
844
800
 
845
- /*!*******************************************************************!*\
846
- !*** ./src/javascripts/ui/components/conversation/event/event.js ***!
847
- \*******************************************************************/
848
-
849
801
  /*!*******************************************************************!*\
850
802
  !*** ./src/javascripts/ui/components/conversation/event/image.js ***!
851
803
  \*******************************************************************/
@@ -879,7 +831,7 @@
879
831
  \********************************************************************/
880
832
 
881
833
  /*!********************************************************************!*\
882
- !*** ./src/javascripts/ui/components/conversation/conversation.js ***!
834
+ !*** ./src/javascripts/ui/components/conversation/event/event.tsx ***!
883
835
  \********************************************************************/
884
836
 
885
837
  /*!********************************************************************!*\
@@ -902,6 +854,10 @@
902
854
  !*** ./node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js ***!
903
855
  \*********************************************************************/
904
856
 
857
+ /*!*********************************************************************!*\
858
+ !*** ./src/javascripts/ui/components/conversation/conversation.tsx ***!
859
+ \*********************************************************************/
860
+
905
861
  /*!*********************************************************************!*\
906
862
  !*** ./src/javascripts/ui/components/conversation/event-divider.js ***!
907
863
  \*********************************************************************/
@@ -910,16 +866,24 @@
910
866
  !*** ./src/javascripts/ui/components/layout/deprecated-app-frame.js ***!
911
867
  \**********************************************************************/
912
868
 
869
+ /*!**********************************************************************!*\
870
+ !*** ./src/javascripts/ui/components/translation-proposal/index.tsx ***!
871
+ \**********************************************************************/
872
+
913
873
  /*!**********************************************************************!*\
914
874
  !*** ./src/javascripts/ui/hooks/use-seamly-idle-detach-countdown.js ***!
915
875
  \**********************************************************************/
916
876
 
917
877
  /*!***********************************************************************!*\
918
- !*** ./src/javascripts/ui/components/core/seamly-activity-monitor.js ***!
878
+ !*** ./src/javascripts/ui/components/conversation/use-chat-scroll.ts ***!
919
879
  \***********************************************************************/
920
880
 
921
881
  /*!***********************************************************************!*\
922
- !*** ./src/javascripts/ui/components/core/seamly-event-subscriber.js ***!
882
+ !*** ./src/javascripts/ui/components/core/seamly-event-subscriber.ts ***!
883
+ \***********************************************************************/
884
+
885
+ /*!***********************************************************************!*\
886
+ !*** ./src/javascripts/ui/components/layout/deprecated-chat-frame.js ***!
923
887
  \***********************************************************************/
924
888
 
925
889
  /*!***********************************************************************!*\
@@ -943,11 +907,11 @@
943
907
  \************************************************************************/
944
908
 
945
909
  /*!************************************************************************!*\
946
- !*** ./src/javascripts/domains/translations/components/chat-status.js ***!
910
+ !*** ./src/javascripts/ui/components/conversation/component-filter.js ***!
947
911
  \************************************************************************/
948
912
 
949
913
  /*!************************************************************************!*\
950
- !*** ./src/javascripts/ui/components/conversation/component-filter.js ***!
914
+ !*** ./src/javascripts/ui/components/core/seamly-activity-monitor.tsx ***!
951
915
  \************************************************************************/
952
916
 
953
917
  /*!************************************************************************!*\
@@ -982,6 +946,10 @@
982
946
  !*** ./src/javascripts/ui/components/entry/deprecated-toggle-button.js ***!
983
947
  \*************************************************************************/
984
948
 
949
+ /*!*************************************************************************!*\
950
+ !*** ./src/javascripts/ui/components/translation-chat-status/index.tsx ***!
951
+ \*************************************************************************/
952
+
985
953
  /*!**************************************************************************!*\
986
954
  !*** ./node_modules/raw-loader/dist/cjs.js!./src/icons/icon_close-8.svg ***!
987
955
  \**************************************************************************/
@@ -994,6 +962,10 @@
994
962
  !*** ./node_modules/raw-loader/dist/cjs.js!./src/icons/icon_send-32.svg ***!
995
963
  \**************************************************************************/
996
964
 
965
+ /*!**************************************************************************!*\
966
+ !*** ./src/javascripts/ui/components/chat-status/chat-status-action.tsx ***!
967
+ \**************************************************************************/
968
+
997
969
  /*!**************************************************************************!*\
998
970
  !*** ./src/javascripts/ui/components/conversation/event/card-message.js ***!
999
971
  \**************************************************************************/
@@ -1015,15 +987,19 @@
1015
987
  \***************************************************************************/
1016
988
 
1017
989
  /*!***************************************************************************!*\
1018
- !*** ./node_modules/raw-loader/dist/cjs.js!./src/icons/icon_close-16.svg ***!
990
+ !*** ./node_modules/raw-loader/dist/cjs.js!./src/icons/icon_check-16.svg ***!
1019
991
  \***************************************************************************/
1020
992
 
1021
993
  /*!***************************************************************************!*\
1022
- !*** ./node_modules/raw-loader/dist/cjs.js!./src/icons/icon_error-16.svg ***!
994
+ !*** ./node_modules/raw-loader/dist/cjs.js!./src/icons/icon_check-32.svg ***!
1023
995
  \***************************************************************************/
1024
996
 
1025
997
  /*!***************************************************************************!*\
1026
- !*** ./src/javascripts/domains/translations/components/options-button.js ***!
998
+ !*** ./node_modules/raw-loader/dist/cjs.js!./src/icons/icon_close-16.svg ***!
999
+ \***************************************************************************/
1000
+
1001
+ /*!***************************************************************************!*\
1002
+ !*** ./node_modules/raw-loader/dist/cjs.js!./src/icons/icon_error-16.svg ***!
1027
1003
  \***************************************************************************/
1028
1004
 
1029
1005
  /*!***************************************************************************!*\
@@ -1050,6 +1026,10 @@
1050
1026
  !*** ./node_modules/raw-loader/dist/cjs.js!./src/icons/icon_upload-32.svg ***!
1051
1027
  \****************************************************************************/
1052
1028
 
1029
+ /*!****************************************************************************!*\
1030
+ !*** ./src/javascripts/domains/translations/components/options-button.tsx ***!
1031
+ \****************************************************************************/
1032
+
1053
1033
  /*!****************************************************************************!*\
1054
1034
  !*** ./src/javascripts/ui/components/conversation/event/card-component.js ***!
1055
1035
  \****************************************************************************/
@@ -1107,7 +1087,7 @@
1107
1087
  \********************************************************************************/
1108
1088
 
1109
1089
  /*!********************************************************************************!*\
1110
- !*** ./src/javascripts/domains/translations/components/options-dialog/form.js ***!
1090
+ !*** ./src/javascripts/domains/translations/components/translation-status.tsx ***!
1111
1091
  \********************************************************************************/
1112
1092
 
1113
1093
  /*!********************************************************************************!*\
@@ -1126,10 +1106,6 @@
1126
1106
  !*** ./node_modules/raw-loader/dist/cjs.js!./src/icons/icon_chevron_down-8.svg ***!
1127
1107
  \*********************************************************************************/
1128
1108
 
1129
- /*!*********************************************************************************!*\
1130
- !*** ./src/javascripts/domains/translations/components/options-dialog/index.js ***!
1131
- \*********************************************************************************/
1132
-
1133
1109
  /*!**********************************************************************************!*\
1134
1110
  !*** ./node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js ***!
1135
1111
  \**********************************************************************************/
@@ -1142,6 +1118,10 @@
1142
1118
  !*** ./node_modules/raw-loader/dist/cjs.js!./src/icons/icon_chevron_right-8.svg ***!
1143
1119
  \**********************************************************************************/
1144
1120
 
1121
+ /*!**********************************************************************************!*\
1122
+ !*** ./src/javascripts/domains/translations/components/options-dialog/index.tsx ***!
1123
+ \**********************************************************************************/
1124
+
1145
1125
  /*!***********************************************************************************!*\
1146
1126
  !*** ./node_modules/raw-loader/dist/cjs.js!./src/icons/icon_chevron_right-16.svg ***!
1147
1127
  \***********************************************************************************/
@@ -1182,6 +1162,10 @@
1182
1162
  !*** ./src/javascripts/ui/components/conversation/event/hooks/use-formatted-date.js ***!
1183
1163
  \**************************************************************************************/
1184
1164
 
1165
+ /*!*********************************************************************************************!*\
1166
+ !*** ./src/javascripts/ui/components/conversation/event/chat-scroll/chat-scroll-context.ts ***!
1167
+ \*********************************************************************************************/
1168
+
1185
1169
  /*!*********************************************************************************************!*\
1186
1170
  !*** ./src/javascripts/ui/components/conversation/event/divider/variants/time-indicator.js ***!
1187
1171
  \*********************************************************************************************/
@@ -1194,14 +1178,30 @@
1194
1178
  !*** ./src/javascripts/ui/components/conversation/event/divider/variants/new-translation.js ***!
1195
1179
  \**********************************************************************************************/
1196
1180
 
1181
+ /*!***********************************************************************************************!*\
1182
+ !*** ./src/javascripts/domains/translations/components/options-dialog/translation-option.tsx ***!
1183
+ \***********************************************************************************************/
1184
+
1197
1185
  /*!***********************************************************************************************!*\
1198
1186
  !*** ./src/javascripts/ui/components/conversation/event/carousel-message/components/slide.js ***!
1199
1187
  \***********************************************************************************************/
1200
1188
 
1189
+ /*!***********************************************************************************************!*\
1190
+ !*** ./src/javascripts/ui/components/conversation/event/chat-scroll/chat-scroll-provider.tsx ***!
1191
+ \***********************************************************************************************/
1192
+
1193
+ /*!************************************************************************************************!*\
1194
+ !*** ./src/javascripts/domains/translations/components/options-dialog/translation-options.tsx ***!
1195
+ \************************************************************************************************/
1196
+
1201
1197
  /*!************************************************************************************************!*\
1202
1198
  !*** ./src/javascripts/ui/components/conversation/event/hooks/use-event-link-click-handler.js ***!
1203
1199
  \************************************************************************************************/
1204
1200
 
1201
+ /*!*************************************************************************************************!*\
1202
+ !*** ./src/javascripts/ui/components/conversation/event/chat-scroll/unread-messages-button.tsx ***!
1203
+ \*************************************************************************************************/
1204
+
1205
1205
  /*!****************************************************************************************************!*\
1206
1206
  !*** ./src/javascripts/ui/components/conversation/event/carousel-component/components/controls.js ***!
1207
1207
  \****************************************************************************************************/