@memori.ai/memori-react 1.0.0-alpha.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 (1117) hide show
  1. package/LICENSE +18 -0
  2. package/README.md +55 -0
  3. package/dist/components/Auth/Auth.css +57 -0
  4. package/dist/components/Auth/Auth.d.ts +16 -0
  5. package/dist/components/Auth/Auth.js +70 -0
  6. package/dist/components/Auth/Auth.js.map +1 -0
  7. package/dist/components/Auth/Auth.stories.d.ts +8 -0
  8. package/dist/components/Auth/Auth.stories.js +60 -0
  9. package/dist/components/Auth/Auth.stories.js.map +1 -0
  10. package/dist/components/Auth/Auth.test.d.ts +1 -0
  11. package/dist/components/Auth/Auth.test.js +23 -0
  12. package/dist/components/Auth/Auth.test.js.map +1 -0
  13. package/dist/components/Avatar/Avatar.css +151 -0
  14. package/dist/components/Avatar/Avatar.d.ts +19 -0
  15. package/dist/components/Avatar/Avatar.js +80 -0
  16. package/dist/components/Avatar/Avatar.js.map +1 -0
  17. package/dist/components/Avatar/Avatar.stories.d.ts +8 -0
  18. package/dist/components/Avatar/Avatar.stories.js +92 -0
  19. package/dist/components/Avatar/Avatar.stories.js.map +1 -0
  20. package/dist/components/Avatar/Avatar.test.d.ts +1 -0
  21. package/dist/components/Avatar/Avatar.test.js +38 -0
  22. package/dist/components/Avatar/Avatar.test.js.map +1 -0
  23. package/dist/components/AvatarView/AvatarView.stories.d.ts +9 -0
  24. package/dist/components/AvatarView/AvatarView.stories.js +94 -0
  25. package/dist/components/AvatarView/AvatarView.stories.js.map +1 -0
  26. package/dist/components/AvatarView/components/avatar.d.ts +10 -0
  27. package/dist/components/AvatarView/components/avatar.js +38 -0
  28. package/dist/components/AvatarView/components/avatar.js.map +1 -0
  29. package/dist/components/AvatarView/components/loader.d.ts +6 -0
  30. package/dist/components/AvatarView/components/loader.js +15 -0
  31. package/dist/components/AvatarView/components/loader.js.map +1 -0
  32. package/dist/components/AvatarView/index.d.ts +13 -0
  33. package/dist/components/AvatarView/index.js +24 -0
  34. package/dist/components/AvatarView/index.js.map +1 -0
  35. package/dist/components/AvatarView/utils/useEyeBlink.d.ts +2 -0
  36. package/dist/components/AvatarView/utils/useEyeBlink.js +40 -0
  37. package/dist/components/AvatarView/utils/useEyeBlink.js.map +1 -0
  38. package/dist/components/AvatarView/utils/useHeadMovement.d.ts +2 -0
  39. package/dist/components/AvatarView/utils/useHeadMovement.js +53 -0
  40. package/dist/components/AvatarView/utils/useHeadMovement.js.map +1 -0
  41. package/dist/components/AvatarView/utils/useMouthSpeaking.d.ts +2 -0
  42. package/dist/components/AvatarView/utils/useMouthSpeaking.js +58 -0
  43. package/dist/components/AvatarView/utils/useMouthSpeaking.js.map +1 -0
  44. package/dist/components/AvatarView/utils/utils.d.ts +13 -0
  45. package/dist/components/AvatarView/utils/utils.js +42 -0
  46. package/dist/components/AvatarView/utils/utils.js.map +1 -0
  47. package/dist/components/Blob/Blob.css +249 -0
  48. package/dist/components/Blob/Blob.d.ts +7 -0
  49. package/dist/components/Blob/Blob.js +17 -0
  50. package/dist/components/Blob/Blob.js.map +1 -0
  51. package/dist/components/Blob/Blob.stories.d.ts +6 -0
  52. package/dist/components/Blob/Blob.stories.js +30 -0
  53. package/dist/components/Blob/Blob.stories.js.map +1 -0
  54. package/dist/components/Blob/Blob.test.d.ts +1 -0
  55. package/dist/components/Blob/Blob.test.js +15 -0
  56. package/dist/components/Blob/Blob.test.js.map +1 -0
  57. package/dist/components/BlockedMemoriBadge/BlockedMemoriBadge.css +40 -0
  58. package/dist/components/BlockedMemoriBadge/BlockedMemoriBadge.d.ts +11 -0
  59. package/dist/components/BlockedMemoriBadge/BlockedMemoriBadge.js +39 -0
  60. package/dist/components/BlockedMemoriBadge/BlockedMemoriBadge.js.map +1 -0
  61. package/dist/components/BlockedMemoriBadge/BlockedMemoriBadge.stories.d.ts +8 -0
  62. package/dist/components/BlockedMemoriBadge/BlockedMemoriBadge.stories.js +40 -0
  63. package/dist/components/BlockedMemoriBadge/BlockedMemoriBadge.stories.js.map +1 -0
  64. package/dist/components/BlockedMemoriBadge/BlockedMemoriBadge.test.d.ts +1 -0
  65. package/dist/components/BlockedMemoriBadge/BlockedMemoriBadge.test.js +23 -0
  66. package/dist/components/BlockedMemoriBadge/BlockedMemoriBadge.test.js.map +1 -0
  67. package/dist/components/ChangeMode/ChangeMode.css +22 -0
  68. package/dist/components/ChangeMode/ChangeMode.d.ts +8 -0
  69. package/dist/components/ChangeMode/ChangeMode.js +17 -0
  70. package/dist/components/ChangeMode/ChangeMode.js.map +1 -0
  71. package/dist/components/ChangeMode/ChangeMode.stories.d.ts +6 -0
  72. package/dist/components/ChangeMode/ChangeMode.stories.js +34 -0
  73. package/dist/components/ChangeMode/ChangeMode.stories.js.map +1 -0
  74. package/dist/components/ChangeMode/ChangeMode.test.d.ts +1 -0
  75. package/dist/components/ChangeMode/ChangeMode.test.js +15 -0
  76. package/dist/components/ChangeMode/ChangeMode.test.js.map +1 -0
  77. package/dist/components/Chat/Chat.css +117 -0
  78. package/dist/components/Chat/Chat.d.ts +35 -0
  79. package/dist/components/Chat/Chat.js +125 -0
  80. package/dist/components/Chat/Chat.js.map +1 -0
  81. package/dist/components/Chat/Chat.stories.d.ts +13 -0
  82. package/dist/components/Chat/Chat.stories.js +162 -0
  83. package/dist/components/Chat/Chat.stories.js.map +1 -0
  84. package/dist/components/Chat/Chat.test.d.ts +1 -0
  85. package/dist/components/Chat/Chat.test.js +52 -0
  86. package/dist/components/Chat/Chat.test.js.map +1 -0
  87. package/dist/components/ChatBubble/ChatBubble.css +159 -0
  88. package/dist/components/ChatBubble/ChatBubble.d.ts +11 -0
  89. package/dist/components/ChatBubble/ChatBubble.js +41 -0
  90. package/dist/components/ChatBubble/ChatBubble.js.map +1 -0
  91. package/dist/components/ChatBubble/ChatBubble.stories.d.ts +6 -0
  92. package/dist/components/ChatBubble/ChatBubble.stories.js +56 -0
  93. package/dist/components/ChatBubble/ChatBubble.stories.js.map +1 -0
  94. package/dist/components/ChatBubble/ChatBubble.test.d.ts +1 -0
  95. package/dist/components/ChatBubble/ChatBubble.test.js +26 -0
  96. package/dist/components/ChatBubble/ChatBubble.test.js.map +1 -0
  97. package/dist/components/ChatInputs/ChatInputs.css +21 -0
  98. package/dist/components/ChatInputs/ChatInputs.d.ts +19 -0
  99. package/dist/components/ChatInputs/ChatInputs.js +21 -0
  100. package/dist/components/ChatInputs/ChatInputs.js.map +1 -0
  101. package/dist/components/ChatInputs/ChatInputs.stories.d.ts +9 -0
  102. package/dist/components/ChatInputs/ChatInputs.stories.js +90 -0
  103. package/dist/components/ChatInputs/ChatInputs.stories.js.map +1 -0
  104. package/dist/components/ChatInputs/ChatInputs.test.d.ts +1 -0
  105. package/dist/components/ChatInputs/ChatInputs.test.js +30 -0
  106. package/dist/components/ChatInputs/ChatInputs.test.js.map +1 -0
  107. package/dist/components/ChatTextArea/ChatTextArea.css +88 -0
  108. package/dist/components/ChatTextArea/ChatTextArea.d.ts +12 -0
  109. package/dist/components/ChatTextArea/ChatTextArea.js +28 -0
  110. package/dist/components/ChatTextArea/ChatTextArea.js.map +1 -0
  111. package/dist/components/ChatTextArea/ChatTextArea.stories.d.ts +7 -0
  112. package/dist/components/ChatTextArea/ChatTextArea.stories.js +42 -0
  113. package/dist/components/ChatTextArea/ChatTextArea.stories.js.map +1 -0
  114. package/dist/components/ChatTextArea/ChatTextArea.test.d.ts +1 -0
  115. package/dist/components/ChatTextArea/ChatTextArea.test.js +24 -0
  116. package/dist/components/ChatTextArea/ChatTextArea.test.js.map +1 -0
  117. package/dist/components/CustomGLBModelViewer/ModelViewer.css +11 -0
  118. package/dist/components/CustomGLBModelViewer/ModelViewer.d.ts +9 -0
  119. package/dist/components/CustomGLBModelViewer/ModelViewer.js +21 -0
  120. package/dist/components/CustomGLBModelViewer/ModelViewer.js.map +1 -0
  121. package/dist/components/CustomGLBModelViewer/ModelViewer.stories.d.ts +5 -0
  122. package/dist/components/CustomGLBModelViewer/ModelViewer.stories.js +45 -0
  123. package/dist/components/CustomGLBModelViewer/ModelViewer.stories.js.map +1 -0
  124. package/dist/components/CustomGLBModelViewer/ModelViewer.test.d.ts +1 -0
  125. package/dist/components/CustomGLBModelViewer/ModelViewer.test.js +11 -0
  126. package/dist/components/CustomGLBModelViewer/ModelViewer.test.js.map +1 -0
  127. package/dist/components/ErrorBoundary/ErrorBoundary.d.ts +9 -0
  128. package/dist/components/ErrorBoundary/ErrorBoundary.js +36 -0
  129. package/dist/components/ErrorBoundary/ErrorBoundary.js.map +1 -0
  130. package/dist/components/ExportHistoryButton/ExportHistoryButton.css +22 -0
  131. package/dist/components/ExportHistoryButton/ExportHistoryButton.d.ts +15 -0
  132. package/dist/components/ExportHistoryButton/ExportHistoryButton.js +45 -0
  133. package/dist/components/ExportHistoryButton/ExportHistoryButton.js.map +1 -0
  134. package/dist/components/ExportHistoryButton/ExportHistoryButton.stories.d.ts +8 -0
  135. package/dist/components/ExportHistoryButton/ExportHistoryButton.stories.js +56 -0
  136. package/dist/components/ExportHistoryButton/ExportHistoryButton.stories.js.map +1 -0
  137. package/dist/components/ExportHistoryButton/ExportHistoryButton.test.d.ts +1 -0
  138. package/dist/components/ExportHistoryButton/ExportHistoryButton.test.js +37 -0
  139. package/dist/components/ExportHistoryButton/ExportHistoryButton.test.js.map +1 -0
  140. package/dist/components/Header/Header.css +58 -0
  141. package/dist/components/Header/Header.d.ts +18 -0
  142. package/dist/components/Header/Header.js +27 -0
  143. package/dist/components/Header/Header.js.map +1 -0
  144. package/dist/components/Header/Header.stories.d.ts +10 -0
  145. package/dist/components/Header/Header.stories.js +101 -0
  146. package/dist/components/Header/Header.stories.js.map +1 -0
  147. package/dist/components/Header/Header.test.d.ts +1 -0
  148. package/dist/components/Header/Header.test.js +39 -0
  149. package/dist/components/Header/Header.test.js.map +1 -0
  150. package/dist/components/MediaWidget/LinkItemWidget.css +35 -0
  151. package/dist/components/MediaWidget/LinkItemWidget.d.ts +27 -0
  152. package/dist/components/MediaWidget/LinkItemWidget.js +71 -0
  153. package/dist/components/MediaWidget/LinkItemWidget.js.map +1 -0
  154. package/dist/components/MediaWidget/LinkItemWidget.stories.d.ts +5 -0
  155. package/dist/components/MediaWidget/LinkItemWidget.stories.js +58 -0
  156. package/dist/components/MediaWidget/LinkItemWidget.stories.js.map +1 -0
  157. package/dist/components/MediaWidget/LinkItemWidget.test.d.ts +1 -0
  158. package/dist/components/MediaWidget/LinkItemWidget.test.js +29 -0
  159. package/dist/components/MediaWidget/LinkItemWidget.test.js.map +1 -0
  160. package/dist/components/MediaWidget/MediaItemWidget.css +62 -0
  161. package/dist/components/MediaWidget/MediaItemWidget.d.ts +17 -0
  162. package/dist/components/MediaWidget/MediaItemWidget.js +144 -0
  163. package/dist/components/MediaWidget/MediaItemWidget.js.map +1 -0
  164. package/dist/components/MediaWidget/MediaItemWidget.stories.d.ts +6 -0
  165. package/dist/components/MediaWidget/MediaItemWidget.stories.js +86 -0
  166. package/dist/components/MediaWidget/MediaItemWidget.stories.js.map +1 -0
  167. package/dist/components/MediaWidget/MediaItemWidget.test.d.ts +1 -0
  168. package/dist/components/MediaWidget/MediaItemWidget.test.js +90 -0
  169. package/dist/components/MediaWidget/MediaItemWidget.test.js.map +1 -0
  170. package/dist/components/MediaWidget/MediaWidget.css +121 -0
  171. package/dist/components/MediaWidget/MediaWidget.d.ts +14 -0
  172. package/dist/components/MediaWidget/MediaWidget.js +29 -0
  173. package/dist/components/MediaWidget/MediaWidget.js.map +1 -0
  174. package/dist/components/MediaWidget/MediaWidget.stories.d.ts +8 -0
  175. package/dist/components/MediaWidget/MediaWidget.stories.js +103 -0
  176. package/dist/components/MediaWidget/MediaWidget.stories.js.map +1 -0
  177. package/dist/components/MediaWidget/MediaWidget.test.d.ts +1 -0
  178. package/dist/components/MediaWidget/MediaWidget.test.js +34 -0
  179. package/dist/components/MediaWidget/MediaWidget.test.js.map +1 -0
  180. package/dist/components/MemoriWidget/MemoriWidget.css +199 -0
  181. package/dist/components/MemoriWidget/MemoriWidget.d.ts +43 -0
  182. package/dist/components/MemoriWidget/MemoriWidget.js +1371 -0
  183. package/dist/components/MemoriWidget/MemoriWidget.js.map +1 -0
  184. package/dist/components/MemoriWidget/MemoriWidget.stories.d.ts +9 -0
  185. package/dist/components/MemoriWidget/MemoriWidget.stories.js +67 -0
  186. package/dist/components/MemoriWidget/MemoriWidget.stories.js.map +1 -0
  187. package/dist/components/PositionDrawer/PositionDrawer.d.ts +3 -0
  188. package/dist/components/PositionDrawer/PositionDrawer.js +8 -0
  189. package/dist/components/PositionDrawer/PositionDrawer.js.map +1 -0
  190. package/dist/components/SendOnEnterMenu/SendOnEnterMenu.css +47 -0
  191. package/dist/components/SendOnEnterMenu/SendOnEnterMenu.d.ts +8 -0
  192. package/dist/components/SendOnEnterMenu/SendOnEnterMenu.js +23 -0
  193. package/dist/components/SendOnEnterMenu/SendOnEnterMenu.js.map +1 -0
  194. package/dist/components/SendOnEnterMenu/SendOnEnterMenu.stories.d.ts +6 -0
  195. package/dist/components/SendOnEnterMenu/SendOnEnterMenu.stories.js +40 -0
  196. package/dist/components/SendOnEnterMenu/SendOnEnterMenu.stories.js.map +1 -0
  197. package/dist/components/SendOnEnterMenu/SendOnEnterMenu.test.d.ts +1 -0
  198. package/dist/components/SendOnEnterMenu/SendOnEnterMenu.test.js +15 -0
  199. package/dist/components/SendOnEnterMenu/SendOnEnterMenu.test.js.map +1 -0
  200. package/dist/components/ShareButton/ShareButton.css +57 -0
  201. package/dist/components/ShareButton/ShareButton.d.ts +13 -0
  202. package/dist/components/ShareButton/ShareButton.js +112 -0
  203. package/dist/components/ShareButton/ShareButton.js.map +1 -0
  204. package/dist/components/ShareButton/ShareButton.stories.d.ts +7 -0
  205. package/dist/components/ShareButton/ShareButton.stories.js +47 -0
  206. package/dist/components/ShareButton/ShareButton.stories.js.map +1 -0
  207. package/dist/components/ShareButton/ShareButton.test.d.ts +1 -0
  208. package/dist/components/ShareButton/ShareButton.test.js +31 -0
  209. package/dist/components/ShareButton/ShareButton.test.js.map +1 -0
  210. package/dist/components/Snippet/Snippet.css +35 -0
  211. package/dist/components/Snippet/Snippet.d.ts +10 -0
  212. package/dist/components/Snippet/Snippet.js +40 -0
  213. package/dist/components/Snippet/Snippet.js.map +1 -0
  214. package/dist/components/Snippet/Snippet.stories.d.ts +73 -0
  215. package/dist/components/Snippet/Snippet.stories.js +247 -0
  216. package/dist/components/Snippet/Snippet.stories.js.map +1 -0
  217. package/dist/components/Snippet/Snippet.test.d.ts +1 -0
  218. package/dist/components/Snippet/Snippet.test.js +114 -0
  219. package/dist/components/Snippet/Snippet.test.js.map +1 -0
  220. package/dist/components/StartPanel/StartPanel.css +121 -0
  221. package/dist/components/StartPanel/StartPanel.d.ts +23 -0
  222. package/dist/components/StartPanel/StartPanel.js +95 -0
  223. package/dist/components/StartPanel/StartPanel.js.map +1 -0
  224. package/dist/components/StartPanel/StartPanel.stories.d.ts +10 -0
  225. package/dist/components/StartPanel/StartPanel.stories.js +163 -0
  226. package/dist/components/StartPanel/StartPanel.stories.js.map +1 -0
  227. package/dist/components/StartPanel/StartPanel.test.d.ts +1 -0
  228. package/dist/components/StartPanel/StartPanel.test.js +44 -0
  229. package/dist/components/StartPanel/StartPanel.test.js.map +1 -0
  230. package/dist/components/UploadMenu/UploadMenu.css +46 -0
  231. package/dist/components/UploadMenu/UploadMenu.d.ts +9 -0
  232. package/dist/components/UploadMenu/UploadMenu.js +24 -0
  233. package/dist/components/UploadMenu/UploadMenu.js.map +1 -0
  234. package/dist/components/UploadMenu/UploadMenu.stories.d.ts +6 -0
  235. package/dist/components/UploadMenu/UploadMenu.stories.js +41 -0
  236. package/dist/components/UploadMenu/UploadMenu.stories.js.map +1 -0
  237. package/dist/components/UploadMenu/UploadMenu.test.d.ts +1 -0
  238. package/dist/components/UploadMenu/UploadMenu.test.js +23 -0
  239. package/dist/components/UploadMenu/UploadMenu.test.js.map +1 -0
  240. package/dist/components/icons/Close.d.ts +6 -0
  241. package/dist/components/icons/Close.js +8 -0
  242. package/dist/components/icons/Close.js.map +1 -0
  243. package/dist/components/icons/Copy.d.ts +6 -0
  244. package/dist/components/icons/Copy.js +8 -0
  245. package/dist/components/icons/Copy.js.map +1 -0
  246. package/dist/components/icons/Download.d.ts +6 -0
  247. package/dist/components/icons/Download.js +8 -0
  248. package/dist/components/icons/Download.js.map +1 -0
  249. package/dist/components/icons/Edit.d.ts +6 -0
  250. package/dist/components/icons/Edit.js +8 -0
  251. package/dist/components/icons/Edit.js.map +1 -0
  252. package/dist/components/icons/Expand.d.ts +6 -0
  253. package/dist/components/icons/Expand.js +8 -0
  254. package/dist/components/icons/Expand.js.map +1 -0
  255. package/dist/components/icons/Eye.d.ts +6 -0
  256. package/dist/components/icons/Eye.js +8 -0
  257. package/dist/components/icons/Eye.js.map +1 -0
  258. package/dist/components/icons/EyeInvisible.d.ts +6 -0
  259. package/dist/components/icons/EyeInvisible.js +9 -0
  260. package/dist/components/icons/EyeInvisible.js.map +1 -0
  261. package/dist/components/icons/Facebook.d.ts +6 -0
  262. package/dist/components/icons/Facebook.js +8 -0
  263. package/dist/components/icons/Facebook.js.map +1 -0
  264. package/dist/components/icons/File.d.ts +6 -0
  265. package/dist/components/icons/File.js +8 -0
  266. package/dist/components/icons/File.js.map +1 -0
  267. package/dist/components/icons/FileExcel.d.ts +6 -0
  268. package/dist/components/icons/FileExcel.js +8 -0
  269. package/dist/components/icons/FileExcel.js.map +1 -0
  270. package/dist/components/icons/FilePdf.d.ts +6 -0
  271. package/dist/components/icons/FilePdf.js +8 -0
  272. package/dist/components/icons/FilePdf.js.map +1 -0
  273. package/dist/components/icons/FileWord.d.ts +6 -0
  274. package/dist/components/icons/FileWord.js +8 -0
  275. package/dist/components/icons/FileWord.js.map +1 -0
  276. package/dist/components/icons/Fullscreen.d.ts +6 -0
  277. package/dist/components/icons/Fullscreen.js +8 -0
  278. package/dist/components/icons/Fullscreen.js.map +1 -0
  279. package/dist/components/icons/FullscreenExit.d.ts +6 -0
  280. package/dist/components/icons/FullscreenExit.js +8 -0
  281. package/dist/components/icons/FullscreenExit.js.map +1 -0
  282. package/dist/components/icons/Link.d.ts +6 -0
  283. package/dist/components/icons/Link.js +8 -0
  284. package/dist/components/icons/Link.js.map +1 -0
  285. package/dist/components/icons/Linkedin.d.ts +6 -0
  286. package/dist/components/icons/Linkedin.js +8 -0
  287. package/dist/components/icons/Linkedin.js.map +1 -0
  288. package/dist/components/icons/Loading.d.ts +8 -0
  289. package/dist/components/icons/Loading.js +12 -0
  290. package/dist/components/icons/Loading.js.map +1 -0
  291. package/dist/components/icons/Mail.d.ts +6 -0
  292. package/dist/components/icons/Mail.js +8 -0
  293. package/dist/components/icons/Mail.js.map +1 -0
  294. package/dist/components/icons/MapMarker.d.ts +6 -0
  295. package/dist/components/icons/MapMarker.js +8 -0
  296. package/dist/components/icons/MapMarker.js.map +1 -0
  297. package/dist/components/icons/Message.d.ts +6 -0
  298. package/dist/components/icons/Message.js +8 -0
  299. package/dist/components/icons/Message.js.map +1 -0
  300. package/dist/components/icons/Minus.d.ts +6 -0
  301. package/dist/components/icons/Minus.js +8 -0
  302. package/dist/components/icons/Minus.js.map +1 -0
  303. package/dist/components/icons/MinusCircle.d.ts +6 -0
  304. package/dist/components/icons/MinusCircle.js +9 -0
  305. package/dist/components/icons/MinusCircle.js.map +1 -0
  306. package/dist/components/icons/PaperClip.d.ts +6 -0
  307. package/dist/components/icons/PaperClip.js +8 -0
  308. package/dist/components/icons/PaperClip.js.map +1 -0
  309. package/dist/components/icons/Picture.d.ts +6 -0
  310. package/dist/components/icons/Picture.js +8 -0
  311. package/dist/components/icons/Picture.js.map +1 -0
  312. package/dist/components/icons/Plus.d.ts +6 -0
  313. package/dist/components/icons/Plus.js +9 -0
  314. package/dist/components/icons/Plus.js.map +1 -0
  315. package/dist/components/icons/Send.d.ts +6 -0
  316. package/dist/components/icons/Send.js +8 -0
  317. package/dist/components/icons/Send.js.map +1 -0
  318. package/dist/components/icons/Setting.d.ts +6 -0
  319. package/dist/components/icons/Setting.js +8 -0
  320. package/dist/components/icons/Setting.js.map +1 -0
  321. package/dist/components/icons/Share.d.ts +6 -0
  322. package/dist/components/icons/Share.js +8 -0
  323. package/dist/components/icons/Share.js.map +1 -0
  324. package/dist/components/icons/Sound.d.ts +6 -0
  325. package/dist/components/icons/Sound.js +8 -0
  326. package/dist/components/icons/Sound.js.map +1 -0
  327. package/dist/components/icons/SoundDeactivated.d.ts +6 -0
  328. package/dist/components/icons/SoundDeactivated.js +8 -0
  329. package/dist/components/icons/SoundDeactivated.js.map +1 -0
  330. package/dist/components/icons/Telegram.d.ts +6 -0
  331. package/dist/components/icons/Telegram.js +8 -0
  332. package/dist/components/icons/Telegram.js.map +1 -0
  333. package/dist/components/icons/Translation.d.ts +6 -0
  334. package/dist/components/icons/Translation.js +9 -0
  335. package/dist/components/icons/Translation.js.map +1 -0
  336. package/dist/components/icons/Twitter.d.ts +6 -0
  337. package/dist/components/icons/Twitter.js +8 -0
  338. package/dist/components/icons/Twitter.js.map +1 -0
  339. package/dist/components/icons/User.d.ts +6 -0
  340. package/dist/components/icons/User.js +8 -0
  341. package/dist/components/icons/User.js.map +1 -0
  342. package/dist/components/icons/Warning.d.ts +6 -0
  343. package/dist/components/icons/Warning.js +8 -0
  344. package/dist/components/icons/Warning.js.map +1 -0
  345. package/dist/components/icons/WhatsApp.d.ts +6 -0
  346. package/dist/components/icons/WhatsApp.js +9 -0
  347. package/dist/components/icons/WhatsApp.js.map +1 -0
  348. package/dist/components/icons/icons.stories.d.ts +8 -0
  349. package/dist/components/icons/icons.stories.js +42 -0
  350. package/dist/components/icons/icons.stories.js.map +1 -0
  351. package/dist/components/icons/loading.css +14 -0
  352. package/dist/components/layouts/Default.d.ts +16 -0
  353. package/dist/components/layouts/Default.js +16 -0
  354. package/dist/components/layouts/Default.js.map +1 -0
  355. package/dist/components/ui/Button.css +138 -0
  356. package/dist/components/ui/Button.d.ts +22 -0
  357. package/dist/components/ui/Button.js +27 -0
  358. package/dist/components/ui/Button.js.map +1 -0
  359. package/dist/components/ui/Button.stories.d.ts +17 -0
  360. package/dist/components/ui/Button.stories.js +141 -0
  361. package/dist/components/ui/Button.stories.js.map +1 -0
  362. package/dist/components/ui/Button.test.d.ts +1 -0
  363. package/dist/components/ui/Button.test.js +64 -0
  364. package/dist/components/ui/Button.test.js.map +1 -0
  365. package/dist/components/ui/Card.css +60 -0
  366. package/dist/components/ui/Card.d.ts +13 -0
  367. package/dist/components/ui/Card.js +20 -0
  368. package/dist/components/ui/Card.js.map +1 -0
  369. package/dist/components/ui/Card.stories.d.ts +10 -0
  370. package/dist/components/ui/Card.stories.js +84 -0
  371. package/dist/components/ui/Card.stories.js.map +1 -0
  372. package/dist/components/ui/Card.test.d.ts +1 -0
  373. package/dist/components/ui/Card.test.js +40 -0
  374. package/dist/components/ui/Card.test.js.map +1 -0
  375. package/dist/components/ui/Checkbox.css +111 -0
  376. package/dist/components/ui/Checkbox.d.ts +9 -0
  377. package/dist/components/ui/Checkbox.js +15 -0
  378. package/dist/components/ui/Checkbox.js.map +1 -0
  379. package/dist/components/ui/Checkbox.stories.d.ts +8 -0
  380. package/dist/components/ui/Checkbox.stories.js +53 -0
  381. package/dist/components/ui/Checkbox.stories.js.map +1 -0
  382. package/dist/components/ui/Checkbox.test.d.ts +1 -0
  383. package/dist/components/ui/Checkbox.test.js +23 -0
  384. package/dist/components/ui/Checkbox.test.js.map +1 -0
  385. package/dist/components/ui/Drawer.css +138 -0
  386. package/dist/components/ui/Drawer.d.ts +19 -0
  387. package/dist/components/ui/Drawer.js +39 -0
  388. package/dist/components/ui/Drawer.js.map +1 -0
  389. package/dist/components/ui/Drawer.stories.d.ts +12 -0
  390. package/dist/components/ui/Drawer.stories.js +138 -0
  391. package/dist/components/ui/Drawer.stories.js.map +1 -0
  392. package/dist/components/ui/Drawer.test.d.ts +1 -0
  393. package/dist/components/ui/Drawer.test.js +64 -0
  394. package/dist/components/ui/Drawer.test.js.map +1 -0
  395. package/dist/components/ui/Message.d.ts +18 -0
  396. package/dist/components/ui/Message.js +14 -0
  397. package/dist/components/ui/Message.js.map +1 -0
  398. package/dist/components/ui/Modal.css +98 -0
  399. package/dist/components/ui/Modal.d.ts +17 -0
  400. package/dist/components/ui/Modal.js +35 -0
  401. package/dist/components/ui/Modal.js.map +1 -0
  402. package/dist/components/ui/Modal.stories.d.ts +12 -0
  403. package/dist/components/ui/Modal.stories.js +128 -0
  404. package/dist/components/ui/Modal.stories.js.map +1 -0
  405. package/dist/components/ui/Modal.test.d.ts +1 -0
  406. package/dist/components/ui/Modal.test.js +60 -0
  407. package/dist/components/ui/Modal.test.js.map +1 -0
  408. package/dist/components/ui/Spin.css +29 -0
  409. package/dist/components/ui/Spin.d.ts +10 -0
  410. package/dist/components/ui/Spin.js +16 -0
  411. package/dist/components/ui/Spin.js.map +1 -0
  412. package/dist/components/ui/Spin.stories.d.ts +7 -0
  413. package/dist/components/ui/Spin.stories.js +54 -0
  414. package/dist/components/ui/Spin.stories.js.map +1 -0
  415. package/dist/components/ui/Spin.test.d.ts +1 -0
  416. package/dist/components/ui/Spin.test.js +32 -0
  417. package/dist/components/ui/Spin.test.js.map +1 -0
  418. package/dist/components/ui/Tooltip.css +78 -0
  419. package/dist/components/ui/Tooltip.d.ts +12 -0
  420. package/dist/components/ui/Tooltip.js +15 -0
  421. package/dist/components/ui/Tooltip.js.map +1 -0
  422. package/dist/components/ui/Tooltip.stories.d.ts +8 -0
  423. package/dist/components/ui/Tooltip.stories.js +49 -0
  424. package/dist/components/ui/Tooltip.stories.js.map +1 -0
  425. package/dist/components/ui/Tooltip.test.d.ts +1 -0
  426. package/dist/components/ui/Tooltip.test.js +26 -0
  427. package/dist/components/ui/Tooltip.test.js.map +1 -0
  428. package/dist/helpers/configuration.d.ts +5 -0
  429. package/dist/helpers/configuration.js +28 -0
  430. package/dist/helpers/configuration.js.map +1 -0
  431. package/dist/helpers/constants.d.ts +19 -0
  432. package/dist/helpers/constants.js +112 -0
  433. package/dist/helpers/constants.js.map +1 -0
  434. package/dist/helpers/error.d.ts +2 -0
  435. package/dist/helpers/error.js +131 -0
  436. package/dist/helpers/error.js.map +1 -0
  437. package/dist/helpers/media.d.ts +8 -0
  438. package/dist/helpers/media.js +34 -0
  439. package/dist/helpers/media.js.map +1 -0
  440. package/dist/helpers/statistics.d.ts +13 -0
  441. package/dist/helpers/statistics.js +216 -0
  442. package/dist/helpers/statistics.js.map +1 -0
  443. package/dist/helpers/translations.d.ts +6 -0
  444. package/dist/helpers/translations.js +29 -0
  445. package/dist/helpers/translations.js.map +1 -0
  446. package/dist/helpers/utils.d.ts +23 -0
  447. package/dist/helpers/utils.js +129 -0
  448. package/dist/helpers/utils.js.map +1 -0
  449. package/dist/i18n.d.ts +2 -0
  450. package/dist/i18n.js +27 -0
  451. package/dist/i18n.js.map +1 -0
  452. package/dist/index.d.ts +29 -0
  453. package/dist/index.js +90 -0
  454. package/dist/index.js.map +1 -0
  455. package/dist/locales/en.json +189 -0
  456. package/dist/locales/it.json +189 -0
  457. package/dist/mocks/data.d.ts +9 -0
  458. package/dist/mocks/data.js +197 -0
  459. package/dist/mocks/data.js.map +1 -0
  460. package/esm/components/Auth/Auth.css +57 -0
  461. package/esm/components/Auth/Auth.d.ts +16 -0
  462. package/esm/components/Auth/Auth.js +65 -0
  463. package/esm/components/Auth/Auth.js.map +1 -0
  464. package/esm/components/Auth/Auth.stories.d.ts +8 -0
  465. package/esm/components/Auth/Auth.stories.js +56 -0
  466. package/esm/components/Auth/Auth.stories.js.map +1 -0
  467. package/esm/components/Auth/Auth.test.d.ts +1 -0
  468. package/esm/components/Auth/Auth.test.js +20 -0
  469. package/esm/components/Auth/Auth.test.js.map +1 -0
  470. package/esm/components/Avatar/Avatar.css +151 -0
  471. package/esm/components/Avatar/Avatar.d.ts +19 -0
  472. package/esm/components/Avatar/Avatar.js +77 -0
  473. package/esm/components/Avatar/Avatar.js.map +1 -0
  474. package/esm/components/Avatar/Avatar.stories.d.ts +8 -0
  475. package/esm/components/Avatar/Avatar.stories.js +88 -0
  476. package/esm/components/Avatar/Avatar.stories.js.map +1 -0
  477. package/esm/components/Avatar/Avatar.test.d.ts +1 -0
  478. package/esm/components/Avatar/Avatar.test.js +35 -0
  479. package/esm/components/Avatar/Avatar.test.js.map +1 -0
  480. package/esm/components/AvatarView/AvatarView.stories.d.ts +9 -0
  481. package/esm/components/AvatarView/AvatarView.stories.js +90 -0
  482. package/esm/components/AvatarView/AvatarView.stories.js.map +1 -0
  483. package/esm/components/AvatarView/components/avatar.d.ts +10 -0
  484. package/esm/components/AvatarView/components/avatar.js +34 -0
  485. package/esm/components/AvatarView/components/avatar.js.map +1 -0
  486. package/esm/components/AvatarView/components/loader.d.ts +6 -0
  487. package/esm/components/AvatarView/components/loader.js +12 -0
  488. package/esm/components/AvatarView/components/loader.js.map +1 -0
  489. package/esm/components/AvatarView/index.d.ts +13 -0
  490. package/esm/components/AvatarView/index.js +20 -0
  491. package/esm/components/AvatarView/index.js.map +1 -0
  492. package/esm/components/AvatarView/utils/useEyeBlink.d.ts +2 -0
  493. package/esm/components/AvatarView/utils/useEyeBlink.js +37 -0
  494. package/esm/components/AvatarView/utils/useEyeBlink.js.map +1 -0
  495. package/esm/components/AvatarView/utils/useHeadMovement.d.ts +2 -0
  496. package/esm/components/AvatarView/utils/useHeadMovement.js +50 -0
  497. package/esm/components/AvatarView/utils/useHeadMovement.js.map +1 -0
  498. package/esm/components/AvatarView/utils/useMouthSpeaking.d.ts +2 -0
  499. package/esm/components/AvatarView/utils/useMouthSpeaking.js +55 -0
  500. package/esm/components/AvatarView/utils/useMouthSpeaking.js.map +1 -0
  501. package/esm/components/AvatarView/utils/utils.d.ts +13 -0
  502. package/esm/components/AvatarView/utils/utils.js +33 -0
  503. package/esm/components/AvatarView/utils/utils.js.map +1 -0
  504. package/esm/components/Blob/Blob.css +249 -0
  505. package/esm/components/Blob/Blob.d.ts +7 -0
  506. package/esm/components/Blob/Blob.js +14 -0
  507. package/esm/components/Blob/Blob.js.map +1 -0
  508. package/esm/components/Blob/Blob.stories.d.ts +6 -0
  509. package/esm/components/Blob/Blob.stories.js +26 -0
  510. package/esm/components/Blob/Blob.stories.js.map +1 -0
  511. package/esm/components/Blob/Blob.test.d.ts +1 -0
  512. package/esm/components/Blob/Blob.test.js +12 -0
  513. package/esm/components/Blob/Blob.test.js.map +1 -0
  514. package/esm/components/BlockedMemoriBadge/BlockedMemoriBadge.css +40 -0
  515. package/esm/components/BlockedMemoriBadge/BlockedMemoriBadge.d.ts +11 -0
  516. package/esm/components/BlockedMemoriBadge/BlockedMemoriBadge.js +36 -0
  517. package/esm/components/BlockedMemoriBadge/BlockedMemoriBadge.js.map +1 -0
  518. package/esm/components/BlockedMemoriBadge/BlockedMemoriBadge.stories.d.ts +8 -0
  519. package/esm/components/BlockedMemoriBadge/BlockedMemoriBadge.stories.js +36 -0
  520. package/esm/components/BlockedMemoriBadge/BlockedMemoriBadge.stories.js.map +1 -0
  521. package/esm/components/BlockedMemoriBadge/BlockedMemoriBadge.test.d.ts +1 -0
  522. package/esm/components/BlockedMemoriBadge/BlockedMemoriBadge.test.js +20 -0
  523. package/esm/components/BlockedMemoriBadge/BlockedMemoriBadge.test.js.map +1 -0
  524. package/esm/components/ChangeMode/ChangeMode.css +22 -0
  525. package/esm/components/ChangeMode/ChangeMode.d.ts +8 -0
  526. package/esm/components/ChangeMode/ChangeMode.js +14 -0
  527. package/esm/components/ChangeMode/ChangeMode.js.map +1 -0
  528. package/esm/components/ChangeMode/ChangeMode.stories.d.ts +6 -0
  529. package/esm/components/ChangeMode/ChangeMode.stories.js +30 -0
  530. package/esm/components/ChangeMode/ChangeMode.stories.js.map +1 -0
  531. package/esm/components/ChangeMode/ChangeMode.test.d.ts +1 -0
  532. package/esm/components/ChangeMode/ChangeMode.test.js +12 -0
  533. package/esm/components/ChangeMode/ChangeMode.test.js.map +1 -0
  534. package/esm/components/Chat/Chat.css +117 -0
  535. package/esm/components/Chat/Chat.d.ts +35 -0
  536. package/esm/components/Chat/Chat.js +122 -0
  537. package/esm/components/Chat/Chat.js.map +1 -0
  538. package/esm/components/Chat/Chat.stories.d.ts +13 -0
  539. package/esm/components/Chat/Chat.stories.js +158 -0
  540. package/esm/components/Chat/Chat.stories.js.map +1 -0
  541. package/esm/components/Chat/Chat.test.d.ts +1 -0
  542. package/esm/components/Chat/Chat.test.js +49 -0
  543. package/esm/components/Chat/Chat.test.js.map +1 -0
  544. package/esm/components/ChatBubble/ChatBubble.css +159 -0
  545. package/esm/components/ChatBubble/ChatBubble.d.ts +11 -0
  546. package/esm/components/ChatBubble/ChatBubble.js +38 -0
  547. package/esm/components/ChatBubble/ChatBubble.js.map +1 -0
  548. package/esm/components/ChatBubble/ChatBubble.stories.d.ts +6 -0
  549. package/esm/components/ChatBubble/ChatBubble.stories.js +52 -0
  550. package/esm/components/ChatBubble/ChatBubble.stories.js.map +1 -0
  551. package/esm/components/ChatBubble/ChatBubble.test.d.ts +1 -0
  552. package/esm/components/ChatBubble/ChatBubble.test.js +23 -0
  553. package/esm/components/ChatBubble/ChatBubble.test.js.map +1 -0
  554. package/esm/components/ChatInputs/ChatInputs.css +21 -0
  555. package/esm/components/ChatInputs/ChatInputs.d.ts +19 -0
  556. package/esm/components/ChatInputs/ChatInputs.js +18 -0
  557. package/esm/components/ChatInputs/ChatInputs.js.map +1 -0
  558. package/esm/components/ChatInputs/ChatInputs.stories.d.ts +9 -0
  559. package/esm/components/ChatInputs/ChatInputs.stories.js +86 -0
  560. package/esm/components/ChatInputs/ChatInputs.stories.js.map +1 -0
  561. package/esm/components/ChatInputs/ChatInputs.test.d.ts +1 -0
  562. package/esm/components/ChatInputs/ChatInputs.test.js +27 -0
  563. package/esm/components/ChatInputs/ChatInputs.test.js.map +1 -0
  564. package/esm/components/ChatTextArea/ChatTextArea.css +88 -0
  565. package/esm/components/ChatTextArea/ChatTextArea.d.ts +12 -0
  566. package/esm/components/ChatTextArea/ChatTextArea.js +25 -0
  567. package/esm/components/ChatTextArea/ChatTextArea.js.map +1 -0
  568. package/esm/components/ChatTextArea/ChatTextArea.stories.d.ts +7 -0
  569. package/esm/components/ChatTextArea/ChatTextArea.stories.js +38 -0
  570. package/esm/components/ChatTextArea/ChatTextArea.stories.js.map +1 -0
  571. package/esm/components/ChatTextArea/ChatTextArea.test.d.ts +1 -0
  572. package/esm/components/ChatTextArea/ChatTextArea.test.js +21 -0
  573. package/esm/components/ChatTextArea/ChatTextArea.test.js.map +1 -0
  574. package/esm/components/CustomGLBModelViewer/ModelViewer.css +11 -0
  575. package/esm/components/CustomGLBModelViewer/ModelViewer.d.ts +9 -0
  576. package/esm/components/CustomGLBModelViewer/ModelViewer.js +18 -0
  577. package/esm/components/CustomGLBModelViewer/ModelViewer.js.map +1 -0
  578. package/esm/components/CustomGLBModelViewer/ModelViewer.stories.d.ts +5 -0
  579. package/esm/components/CustomGLBModelViewer/ModelViewer.stories.js +41 -0
  580. package/esm/components/CustomGLBModelViewer/ModelViewer.stories.js.map +1 -0
  581. package/esm/components/CustomGLBModelViewer/ModelViewer.test.d.ts +1 -0
  582. package/esm/components/CustomGLBModelViewer/ModelViewer.test.js +8 -0
  583. package/esm/components/CustomGLBModelViewer/ModelViewer.test.js.map +1 -0
  584. package/esm/components/ErrorBoundary/ErrorBoundary.d.ts +9 -0
  585. package/esm/components/ErrorBoundary/ErrorBoundary.js +33 -0
  586. package/esm/components/ErrorBoundary/ErrorBoundary.js.map +1 -0
  587. package/esm/components/ExportHistoryButton/ExportHistoryButton.css +22 -0
  588. package/esm/components/ExportHistoryButton/ExportHistoryButton.d.ts +15 -0
  589. package/esm/components/ExportHistoryButton/ExportHistoryButton.js +42 -0
  590. package/esm/components/ExportHistoryButton/ExportHistoryButton.js.map +1 -0
  591. package/esm/components/ExportHistoryButton/ExportHistoryButton.stories.d.ts +8 -0
  592. package/esm/components/ExportHistoryButton/ExportHistoryButton.stories.js +52 -0
  593. package/esm/components/ExportHistoryButton/ExportHistoryButton.stories.js.map +1 -0
  594. package/esm/components/ExportHistoryButton/ExportHistoryButton.test.d.ts +1 -0
  595. package/esm/components/ExportHistoryButton/ExportHistoryButton.test.js +34 -0
  596. package/esm/components/ExportHistoryButton/ExportHistoryButton.test.js.map +1 -0
  597. package/esm/components/Header/Header.css +58 -0
  598. package/esm/components/Header/Header.d.ts +18 -0
  599. package/esm/components/Header/Header.js +24 -0
  600. package/esm/components/Header/Header.js.map +1 -0
  601. package/esm/components/Header/Header.stories.d.ts +10 -0
  602. package/esm/components/Header/Header.stories.js +97 -0
  603. package/esm/components/Header/Header.stories.js.map +1 -0
  604. package/esm/components/Header/Header.test.d.ts +1 -0
  605. package/esm/components/Header/Header.test.js +36 -0
  606. package/esm/components/Header/Header.test.js.map +1 -0
  607. package/esm/components/MediaWidget/LinkItemWidget.css +35 -0
  608. package/esm/components/MediaWidget/LinkItemWidget.d.ts +27 -0
  609. package/esm/components/MediaWidget/LinkItemWidget.js +66 -0
  610. package/esm/components/MediaWidget/LinkItemWidget.js.map +1 -0
  611. package/esm/components/MediaWidget/LinkItemWidget.stories.d.ts +5 -0
  612. package/esm/components/MediaWidget/LinkItemWidget.stories.js +54 -0
  613. package/esm/components/MediaWidget/LinkItemWidget.stories.js.map +1 -0
  614. package/esm/components/MediaWidget/LinkItemWidget.test.d.ts +1 -0
  615. package/esm/components/MediaWidget/LinkItemWidget.test.js +26 -0
  616. package/esm/components/MediaWidget/LinkItemWidget.test.js.map +1 -0
  617. package/esm/components/MediaWidget/MediaItemWidget.css +62 -0
  618. package/esm/components/MediaWidget/MediaItemWidget.d.ts +17 -0
  619. package/esm/components/MediaWidget/MediaItemWidget.js +139 -0
  620. package/esm/components/MediaWidget/MediaItemWidget.js.map +1 -0
  621. package/esm/components/MediaWidget/MediaItemWidget.stories.d.ts +6 -0
  622. package/esm/components/MediaWidget/MediaItemWidget.stories.js +82 -0
  623. package/esm/components/MediaWidget/MediaItemWidget.stories.js.map +1 -0
  624. package/esm/components/MediaWidget/MediaItemWidget.test.d.ts +1 -0
  625. package/esm/components/MediaWidget/MediaItemWidget.test.js +87 -0
  626. package/esm/components/MediaWidget/MediaItemWidget.test.js.map +1 -0
  627. package/esm/components/MediaWidget/MediaWidget.css +121 -0
  628. package/esm/components/MediaWidget/MediaWidget.d.ts +14 -0
  629. package/esm/components/MediaWidget/MediaWidget.js +26 -0
  630. package/esm/components/MediaWidget/MediaWidget.js.map +1 -0
  631. package/esm/components/MediaWidget/MediaWidget.stories.d.ts +8 -0
  632. package/esm/components/MediaWidget/MediaWidget.stories.js +99 -0
  633. package/esm/components/MediaWidget/MediaWidget.stories.js.map +1 -0
  634. package/esm/components/MediaWidget/MediaWidget.test.d.ts +1 -0
  635. package/esm/components/MediaWidget/MediaWidget.test.js +31 -0
  636. package/esm/components/MediaWidget/MediaWidget.test.js.map +1 -0
  637. package/esm/components/MemoriWidget/MemoriWidget.css +199 -0
  638. package/esm/components/MemoriWidget/MemoriWidget.d.ts +43 -0
  639. package/esm/components/MemoriWidget/MemoriWidget.js +1368 -0
  640. package/esm/components/MemoriWidget/MemoriWidget.js.map +1 -0
  641. package/esm/components/MemoriWidget/MemoriWidget.stories.d.ts +9 -0
  642. package/esm/components/MemoriWidget/MemoriWidget.stories.js +63 -0
  643. package/esm/components/MemoriWidget/MemoriWidget.stories.js.map +1 -0
  644. package/esm/components/PositionDrawer/PositionDrawer.d.ts +3 -0
  645. package/esm/components/PositionDrawer/PositionDrawer.js +5 -0
  646. package/esm/components/PositionDrawer/PositionDrawer.js.map +1 -0
  647. package/esm/components/SendOnEnterMenu/SendOnEnterMenu.css +47 -0
  648. package/esm/components/SendOnEnterMenu/SendOnEnterMenu.d.ts +8 -0
  649. package/esm/components/SendOnEnterMenu/SendOnEnterMenu.js +20 -0
  650. package/esm/components/SendOnEnterMenu/SendOnEnterMenu.js.map +1 -0
  651. package/esm/components/SendOnEnterMenu/SendOnEnterMenu.stories.d.ts +6 -0
  652. package/esm/components/SendOnEnterMenu/SendOnEnterMenu.stories.js +36 -0
  653. package/esm/components/SendOnEnterMenu/SendOnEnterMenu.stories.js.map +1 -0
  654. package/esm/components/SendOnEnterMenu/SendOnEnterMenu.test.d.ts +1 -0
  655. package/esm/components/SendOnEnterMenu/SendOnEnterMenu.test.js +12 -0
  656. package/esm/components/SendOnEnterMenu/SendOnEnterMenu.test.js.map +1 -0
  657. package/esm/components/ShareButton/ShareButton.css +57 -0
  658. package/esm/components/ShareButton/ShareButton.d.ts +13 -0
  659. package/esm/components/ShareButton/ShareButton.js +109 -0
  660. package/esm/components/ShareButton/ShareButton.js.map +1 -0
  661. package/esm/components/ShareButton/ShareButton.stories.d.ts +7 -0
  662. package/esm/components/ShareButton/ShareButton.stories.js +43 -0
  663. package/esm/components/ShareButton/ShareButton.stories.js.map +1 -0
  664. package/esm/components/ShareButton/ShareButton.test.d.ts +1 -0
  665. package/esm/components/ShareButton/ShareButton.test.js +28 -0
  666. package/esm/components/ShareButton/ShareButton.test.js.map +1 -0
  667. package/esm/components/Snippet/Snippet.css +35 -0
  668. package/esm/components/Snippet/Snippet.d.ts +10 -0
  669. package/esm/components/Snippet/Snippet.js +37 -0
  670. package/esm/components/Snippet/Snippet.js.map +1 -0
  671. package/esm/components/Snippet/Snippet.stories.d.ts +73 -0
  672. package/esm/components/Snippet/Snippet.stories.js +243 -0
  673. package/esm/components/Snippet/Snippet.stories.js.map +1 -0
  674. package/esm/components/Snippet/Snippet.test.d.ts +1 -0
  675. package/esm/components/Snippet/Snippet.test.js +111 -0
  676. package/esm/components/Snippet/Snippet.test.js.map +1 -0
  677. package/esm/components/StartPanel/StartPanel.css +121 -0
  678. package/esm/components/StartPanel/StartPanel.d.ts +23 -0
  679. package/esm/components/StartPanel/StartPanel.js +92 -0
  680. package/esm/components/StartPanel/StartPanel.js.map +1 -0
  681. package/esm/components/StartPanel/StartPanel.stories.d.ts +10 -0
  682. package/esm/components/StartPanel/StartPanel.stories.js +159 -0
  683. package/esm/components/StartPanel/StartPanel.stories.js.map +1 -0
  684. package/esm/components/StartPanel/StartPanel.test.d.ts +1 -0
  685. package/esm/components/StartPanel/StartPanel.test.js +41 -0
  686. package/esm/components/StartPanel/StartPanel.test.js.map +1 -0
  687. package/esm/components/UploadMenu/UploadMenu.css +46 -0
  688. package/esm/components/UploadMenu/UploadMenu.d.ts +9 -0
  689. package/esm/components/UploadMenu/UploadMenu.js +21 -0
  690. package/esm/components/UploadMenu/UploadMenu.js.map +1 -0
  691. package/esm/components/UploadMenu/UploadMenu.stories.d.ts +6 -0
  692. package/esm/components/UploadMenu/UploadMenu.stories.js +37 -0
  693. package/esm/components/UploadMenu/UploadMenu.stories.js.map +1 -0
  694. package/esm/components/UploadMenu/UploadMenu.test.d.ts +1 -0
  695. package/esm/components/UploadMenu/UploadMenu.test.js +20 -0
  696. package/esm/components/UploadMenu/UploadMenu.test.js.map +1 -0
  697. package/esm/components/icons/Close.d.ts +6 -0
  698. package/esm/components/icons/Close.js +5 -0
  699. package/esm/components/icons/Close.js.map +1 -0
  700. package/esm/components/icons/Copy.d.ts +6 -0
  701. package/esm/components/icons/Copy.js +5 -0
  702. package/esm/components/icons/Copy.js.map +1 -0
  703. package/esm/components/icons/Download.d.ts +6 -0
  704. package/esm/components/icons/Download.js +5 -0
  705. package/esm/components/icons/Download.js.map +1 -0
  706. package/esm/components/icons/Edit.d.ts +6 -0
  707. package/esm/components/icons/Edit.js +5 -0
  708. package/esm/components/icons/Edit.js.map +1 -0
  709. package/esm/components/icons/Expand.d.ts +6 -0
  710. package/esm/components/icons/Expand.js +5 -0
  711. package/esm/components/icons/Expand.js.map +1 -0
  712. package/esm/components/icons/Eye.d.ts +6 -0
  713. package/esm/components/icons/Eye.js +5 -0
  714. package/esm/components/icons/Eye.js.map +1 -0
  715. package/esm/components/icons/EyeInvisible.d.ts +6 -0
  716. package/esm/components/icons/EyeInvisible.js +6 -0
  717. package/esm/components/icons/EyeInvisible.js.map +1 -0
  718. package/esm/components/icons/Facebook.d.ts +6 -0
  719. package/esm/components/icons/Facebook.js +5 -0
  720. package/esm/components/icons/Facebook.js.map +1 -0
  721. package/esm/components/icons/File.d.ts +6 -0
  722. package/esm/components/icons/File.js +5 -0
  723. package/esm/components/icons/File.js.map +1 -0
  724. package/esm/components/icons/FileExcel.d.ts +6 -0
  725. package/esm/components/icons/FileExcel.js +5 -0
  726. package/esm/components/icons/FileExcel.js.map +1 -0
  727. package/esm/components/icons/FilePdf.d.ts +6 -0
  728. package/esm/components/icons/FilePdf.js +5 -0
  729. package/esm/components/icons/FilePdf.js.map +1 -0
  730. package/esm/components/icons/FileWord.d.ts +6 -0
  731. package/esm/components/icons/FileWord.js +5 -0
  732. package/esm/components/icons/FileWord.js.map +1 -0
  733. package/esm/components/icons/Fullscreen.d.ts +6 -0
  734. package/esm/components/icons/Fullscreen.js +5 -0
  735. package/esm/components/icons/Fullscreen.js.map +1 -0
  736. package/esm/components/icons/FullscreenExit.d.ts +6 -0
  737. package/esm/components/icons/FullscreenExit.js +5 -0
  738. package/esm/components/icons/FullscreenExit.js.map +1 -0
  739. package/esm/components/icons/Link.d.ts +6 -0
  740. package/esm/components/icons/Link.js +5 -0
  741. package/esm/components/icons/Link.js.map +1 -0
  742. package/esm/components/icons/Linkedin.d.ts +6 -0
  743. package/esm/components/icons/Linkedin.js +5 -0
  744. package/esm/components/icons/Linkedin.js.map +1 -0
  745. package/esm/components/icons/Loading.d.ts +8 -0
  746. package/esm/components/icons/Loading.js +9 -0
  747. package/esm/components/icons/Loading.js.map +1 -0
  748. package/esm/components/icons/Mail.d.ts +6 -0
  749. package/esm/components/icons/Mail.js +5 -0
  750. package/esm/components/icons/Mail.js.map +1 -0
  751. package/esm/components/icons/MapMarker.d.ts +6 -0
  752. package/esm/components/icons/MapMarker.js +5 -0
  753. package/esm/components/icons/MapMarker.js.map +1 -0
  754. package/esm/components/icons/Message.d.ts +6 -0
  755. package/esm/components/icons/Message.js +5 -0
  756. package/esm/components/icons/Message.js.map +1 -0
  757. package/esm/components/icons/Minus.d.ts +6 -0
  758. package/esm/components/icons/Minus.js +5 -0
  759. package/esm/components/icons/Minus.js.map +1 -0
  760. package/esm/components/icons/MinusCircle.d.ts +6 -0
  761. package/esm/components/icons/MinusCircle.js +6 -0
  762. package/esm/components/icons/MinusCircle.js.map +1 -0
  763. package/esm/components/icons/PaperClip.d.ts +6 -0
  764. package/esm/components/icons/PaperClip.js +5 -0
  765. package/esm/components/icons/PaperClip.js.map +1 -0
  766. package/esm/components/icons/Picture.d.ts +6 -0
  767. package/esm/components/icons/Picture.js +5 -0
  768. package/esm/components/icons/Picture.js.map +1 -0
  769. package/esm/components/icons/Plus.d.ts +6 -0
  770. package/esm/components/icons/Plus.js +6 -0
  771. package/esm/components/icons/Plus.js.map +1 -0
  772. package/esm/components/icons/Send.d.ts +6 -0
  773. package/esm/components/icons/Send.js +5 -0
  774. package/esm/components/icons/Send.js.map +1 -0
  775. package/esm/components/icons/Setting.d.ts +6 -0
  776. package/esm/components/icons/Setting.js +5 -0
  777. package/esm/components/icons/Setting.js.map +1 -0
  778. package/esm/components/icons/Share.d.ts +6 -0
  779. package/esm/components/icons/Share.js +5 -0
  780. package/esm/components/icons/Share.js.map +1 -0
  781. package/esm/components/icons/Sound.d.ts +6 -0
  782. package/esm/components/icons/Sound.js +5 -0
  783. package/esm/components/icons/Sound.js.map +1 -0
  784. package/esm/components/icons/SoundDeactivated.d.ts +6 -0
  785. package/esm/components/icons/SoundDeactivated.js +5 -0
  786. package/esm/components/icons/SoundDeactivated.js.map +1 -0
  787. package/esm/components/icons/Telegram.d.ts +6 -0
  788. package/esm/components/icons/Telegram.js +5 -0
  789. package/esm/components/icons/Telegram.js.map +1 -0
  790. package/esm/components/icons/Translation.d.ts +6 -0
  791. package/esm/components/icons/Translation.js +6 -0
  792. package/esm/components/icons/Translation.js.map +1 -0
  793. package/esm/components/icons/Twitter.d.ts +6 -0
  794. package/esm/components/icons/Twitter.js +5 -0
  795. package/esm/components/icons/Twitter.js.map +1 -0
  796. package/esm/components/icons/User.d.ts +6 -0
  797. package/esm/components/icons/User.js +5 -0
  798. package/esm/components/icons/User.js.map +1 -0
  799. package/esm/components/icons/Warning.d.ts +6 -0
  800. package/esm/components/icons/Warning.js +5 -0
  801. package/esm/components/icons/Warning.js.map +1 -0
  802. package/esm/components/icons/WhatsApp.d.ts +6 -0
  803. package/esm/components/icons/WhatsApp.js +6 -0
  804. package/esm/components/icons/WhatsApp.js.map +1 -0
  805. package/esm/components/icons/icons.stories.d.ts +8 -0
  806. package/esm/components/icons/icons.stories.js +38 -0
  807. package/esm/components/icons/icons.stories.js.map +1 -0
  808. package/esm/components/icons/loading.css +14 -0
  809. package/esm/components/layouts/Default.d.ts +16 -0
  810. package/esm/components/layouts/Default.js +13 -0
  811. package/esm/components/layouts/Default.js.map +1 -0
  812. package/esm/components/ui/Button.css +138 -0
  813. package/esm/components/ui/Button.d.ts +22 -0
  814. package/esm/components/ui/Button.js +24 -0
  815. package/esm/components/ui/Button.js.map +1 -0
  816. package/esm/components/ui/Button.stories.d.ts +17 -0
  817. package/esm/components/ui/Button.stories.js +137 -0
  818. package/esm/components/ui/Button.stories.js.map +1 -0
  819. package/esm/components/ui/Button.test.d.ts +1 -0
  820. package/esm/components/ui/Button.test.js +61 -0
  821. package/esm/components/ui/Button.test.js.map +1 -0
  822. package/esm/components/ui/Card.css +60 -0
  823. package/esm/components/ui/Card.d.ts +13 -0
  824. package/esm/components/ui/Card.js +17 -0
  825. package/esm/components/ui/Card.js.map +1 -0
  826. package/esm/components/ui/Card.stories.d.ts +10 -0
  827. package/esm/components/ui/Card.stories.js +80 -0
  828. package/esm/components/ui/Card.stories.js.map +1 -0
  829. package/esm/components/ui/Card.test.d.ts +1 -0
  830. package/esm/components/ui/Card.test.js +37 -0
  831. package/esm/components/ui/Card.test.js.map +1 -0
  832. package/esm/components/ui/Checkbox.css +111 -0
  833. package/esm/components/ui/Checkbox.d.ts +9 -0
  834. package/esm/components/ui/Checkbox.js +12 -0
  835. package/esm/components/ui/Checkbox.js.map +1 -0
  836. package/esm/components/ui/Checkbox.stories.d.ts +8 -0
  837. package/esm/components/ui/Checkbox.stories.js +49 -0
  838. package/esm/components/ui/Checkbox.stories.js.map +1 -0
  839. package/esm/components/ui/Checkbox.test.d.ts +1 -0
  840. package/esm/components/ui/Checkbox.test.js +20 -0
  841. package/esm/components/ui/Checkbox.test.js.map +1 -0
  842. package/esm/components/ui/Drawer.css +138 -0
  843. package/esm/components/ui/Drawer.d.ts +19 -0
  844. package/esm/components/ui/Drawer.js +36 -0
  845. package/esm/components/ui/Drawer.js.map +1 -0
  846. package/esm/components/ui/Drawer.stories.d.ts +12 -0
  847. package/esm/components/ui/Drawer.stories.js +134 -0
  848. package/esm/components/ui/Drawer.stories.js.map +1 -0
  849. package/esm/components/ui/Drawer.test.d.ts +1 -0
  850. package/esm/components/ui/Drawer.test.js +61 -0
  851. package/esm/components/ui/Drawer.test.js.map +1 -0
  852. package/esm/components/ui/Message.d.ts +18 -0
  853. package/esm/components/ui/Message.js +10 -0
  854. package/esm/components/ui/Message.js.map +1 -0
  855. package/esm/components/ui/Modal.css +98 -0
  856. package/esm/components/ui/Modal.d.ts +17 -0
  857. package/esm/components/ui/Modal.js +32 -0
  858. package/esm/components/ui/Modal.js.map +1 -0
  859. package/esm/components/ui/Modal.stories.d.ts +12 -0
  860. package/esm/components/ui/Modal.stories.js +124 -0
  861. package/esm/components/ui/Modal.stories.js.map +1 -0
  862. package/esm/components/ui/Modal.test.d.ts +1 -0
  863. package/esm/components/ui/Modal.test.js +57 -0
  864. package/esm/components/ui/Modal.test.js.map +1 -0
  865. package/esm/components/ui/Spin.css +29 -0
  866. package/esm/components/ui/Spin.d.ts +10 -0
  867. package/esm/components/ui/Spin.js +13 -0
  868. package/esm/components/ui/Spin.js.map +1 -0
  869. package/esm/components/ui/Spin.stories.d.ts +7 -0
  870. package/esm/components/ui/Spin.stories.js +50 -0
  871. package/esm/components/ui/Spin.stories.js.map +1 -0
  872. package/esm/components/ui/Spin.test.d.ts +1 -0
  873. package/esm/components/ui/Spin.test.js +29 -0
  874. package/esm/components/ui/Spin.test.js.map +1 -0
  875. package/esm/components/ui/Tooltip.css +78 -0
  876. package/esm/components/ui/Tooltip.d.ts +12 -0
  877. package/esm/components/ui/Tooltip.js +12 -0
  878. package/esm/components/ui/Tooltip.js.map +1 -0
  879. package/esm/components/ui/Tooltip.stories.d.ts +8 -0
  880. package/esm/components/ui/Tooltip.stories.js +45 -0
  881. package/esm/components/ui/Tooltip.stories.js.map +1 -0
  882. package/esm/components/ui/Tooltip.test.d.ts +1 -0
  883. package/esm/components/ui/Tooltip.test.js +23 -0
  884. package/esm/components/ui/Tooltip.test.js.map +1 -0
  885. package/esm/helpers/configuration.d.ts +5 -0
  886. package/esm/helpers/configuration.js +23 -0
  887. package/esm/helpers/configuration.js.map +1 -0
  888. package/esm/helpers/constants.d.ts +19 -0
  889. package/esm/helpers/constants.js +109 -0
  890. package/esm/helpers/constants.js.map +1 -0
  891. package/esm/helpers/error.d.ts +2 -0
  892. package/esm/helpers/error.js +127 -0
  893. package/esm/helpers/error.js.map +1 -0
  894. package/esm/helpers/media.d.ts +8 -0
  895. package/esm/helpers/media.js +30 -0
  896. package/esm/helpers/media.js.map +1 -0
  897. package/esm/helpers/statistics.d.ts +13 -0
  898. package/esm/helpers/statistics.js +204 -0
  899. package/esm/helpers/statistics.js.map +1 -0
  900. package/esm/helpers/translations.d.ts +6 -0
  901. package/esm/helpers/translations.js +25 -0
  902. package/esm/helpers/translations.js.map +1 -0
  903. package/esm/helpers/utils.d.ts +23 -0
  904. package/esm/helpers/utils.js +117 -0
  905. package/esm/helpers/utils.js.map +1 -0
  906. package/esm/i18n.d.ts +2 -0
  907. package/esm/i18n.js +24 -0
  908. package/esm/i18n.js.map +1 -0
  909. package/esm/index.d.ts +29 -0
  910. package/esm/index.js +87 -0
  911. package/esm/index.js.map +1 -0
  912. package/esm/locales/en.json +189 -0
  913. package/esm/locales/it.json +189 -0
  914. package/esm/mocks/data.d.ts +9 -0
  915. package/esm/mocks/data.js +194 -0
  916. package/esm/mocks/data.js.map +1 -0
  917. package/package.json +266 -0
  918. package/src/components/Auth/Auth.css +57 -0
  919. package/src/components/Auth/Auth.stories.tsx +83 -0
  920. package/src/components/Auth/Auth.test.tsx +59 -0
  921. package/src/components/Auth/Auth.tsx +172 -0
  922. package/src/components/Auth/__snapshots__/Auth.test.tsx.snap +143 -0
  923. package/src/components/Avatar/Avatar.css +151 -0
  924. package/src/components/Avatar/Avatar.stories.tsx +116 -0
  925. package/src/components/Avatar/Avatar.test.tsx +85 -0
  926. package/src/components/Avatar/Avatar.tsx +178 -0
  927. package/src/components/Avatar/__snapshots__/Avatar.test.tsx.snap +181 -0
  928. package/src/components/AvatarView/AvatarView.stories.tsx +119 -0
  929. package/src/components/AvatarView/components/avatar.tsx +59 -0
  930. package/src/components/AvatarView/components/loader.tsx +28 -0
  931. package/src/components/AvatarView/index.tsx +64 -0
  932. package/src/components/AvatarView/utils/useEyeBlink.ts +48 -0
  933. package/src/components/AvatarView/utils/useHeadMovement.ts +72 -0
  934. package/src/components/AvatarView/utils/useMouthSpeaking.ts +68 -0
  935. package/src/components/AvatarView/utils/utils.ts +55 -0
  936. package/src/components/Blob/Blob.css +249 -0
  937. package/src/components/Blob/Blob.stories.tsx +36 -0
  938. package/src/components/Blob/Blob.test.tsx +13 -0
  939. package/src/components/Blob/Blob.tsx +25 -0
  940. package/src/components/Blob/__snapshots__/Blob.test.tsx.snap +56 -0
  941. package/src/components/BlockedMemoriBadge/BlockedMemoriBadge.css +40 -0
  942. package/src/components/BlockedMemoriBadge/BlockedMemoriBadge.stories.tsx +45 -0
  943. package/src/components/BlockedMemoriBadge/BlockedMemoriBadge.test.tsx +44 -0
  944. package/src/components/BlockedMemoriBadge/BlockedMemoriBadge.tsx +70 -0
  945. package/src/components/BlockedMemoriBadge/__snapshots__/BlockedMemoriBadge.test.tsx.snap +162 -0
  946. package/src/components/ChangeMode/ChangeMode.css +22 -0
  947. package/src/components/ChangeMode/ChangeMode.stories.tsx +44 -0
  948. package/src/components/ChangeMode/ChangeMode.test.tsx +17 -0
  949. package/src/components/ChangeMode/ChangeMode.tsx +48 -0
  950. package/src/components/ChangeMode/__snapshots__/ChangeMode.test.tsx.snap +105 -0
  951. package/src/components/Chat/Chat.css +117 -0
  952. package/src/components/Chat/Chat.stories.tsx +187 -0
  953. package/src/components/Chat/Chat.test.tsx +230 -0
  954. package/src/components/Chat/Chat.tsx +299 -0
  955. package/src/components/Chat/__snapshots__/Chat.test.tsx.snap +3581 -0
  956. package/src/components/ChatBubble/ChatBubble.css +159 -0
  957. package/src/components/ChatBubble/ChatBubble.stories.tsx +63 -0
  958. package/src/components/ChatBubble/ChatBubble.test.tsx +40 -0
  959. package/src/components/ChatBubble/ChatBubble.tsx +118 -0
  960. package/src/components/ChatBubble/__snapshots__/ChatBubble.test.tsx.snap +60 -0
  961. package/src/components/ChatInputs/ChatInputs.css +21 -0
  962. package/src/components/ChatInputs/ChatInputs.stories.tsx +105 -0
  963. package/src/components/ChatInputs/ChatInputs.test.tsx +79 -0
  964. package/src/components/ChatInputs/ChatInputs.tsx +83 -0
  965. package/src/components/ChatInputs/__snapshots__/ChatInputs.test.tsx.snap +375 -0
  966. package/src/components/ChatTextArea/ChatTextArea.css +88 -0
  967. package/src/components/ChatTextArea/ChatTextArea.stories.tsx +51 -0
  968. package/src/components/ChatTextArea/ChatTextArea.test.tsx +43 -0
  969. package/src/components/ChatTextArea/ChatTextArea.tsx +65 -0
  970. package/src/components/ChatTextArea/__snapshots__/ChatTextArea.test.tsx.snap +125 -0
  971. package/src/components/CustomGLBModelViewer/ModelViewer.css +11 -0
  972. package/src/components/CustomGLBModelViewer/ModelViewer.stories.tsx +58 -0
  973. package/src/components/CustomGLBModelViewer/ModelViewer.test.tsx +13 -0
  974. package/src/components/CustomGLBModelViewer/ModelViewer.tsx +38 -0
  975. package/src/components/CustomGLBModelViewer/__snapshots__/ModelViewer.test.tsx.snap +20 -0
  976. package/src/components/ErrorBoundary/ErrorBoundary.tsx +54 -0
  977. package/src/components/ExportHistoryButton/ExportHistoryButton.css +22 -0
  978. package/src/components/ExportHistoryButton/ExportHistoryButton.stories.tsx +68 -0
  979. package/src/components/ExportHistoryButton/ExportHistoryButton.test.tsx +67 -0
  980. package/src/components/ExportHistoryButton/ExportHistoryButton.tsx +105 -0
  981. package/src/components/ExportHistoryButton/__snapshots__/ExportHistoryButton.test.tsx.snap +239 -0
  982. package/src/components/Header/Header.css +58 -0
  983. package/src/components/Header/Header.stories.tsx +114 -0
  984. package/src/components/Header/Header.test.tsx +114 -0
  985. package/src/components/Header/Header.tsx +99 -0
  986. package/src/components/Header/__snapshots__/Header.test.tsx.snap +430 -0
  987. package/src/components/MediaWidget/LinkItemWidget.css +35 -0
  988. package/src/components/MediaWidget/LinkItemWidget.stories.tsx +60 -0
  989. package/src/components/MediaWidget/LinkItemWidget.test.tsx +33 -0
  990. package/src/components/MediaWidget/LinkItemWidget.tsx +176 -0
  991. package/src/components/MediaWidget/MediaItemWidget.css +62 -0
  992. package/src/components/MediaWidget/MediaItemWidget.stories.tsx +97 -0
  993. package/src/components/MediaWidget/MediaItemWidget.test.tsx +120 -0
  994. package/src/components/MediaWidget/MediaItemWidget.tsx +342 -0
  995. package/src/components/MediaWidget/MediaWidget.css +121 -0
  996. package/src/components/MediaWidget/MediaWidget.stories.tsx +117 -0
  997. package/src/components/MediaWidget/MediaWidget.test.tsx +40 -0
  998. package/src/components/MediaWidget/MediaWidget.tsx +84 -0
  999. package/src/components/MediaWidget/__snapshots__/LinkItemWidget.test.tsx.snap +253 -0
  1000. package/src/components/MediaWidget/__snapshots__/MediaItemWidget.test.tsx.snap +604 -0
  1001. package/src/components/MediaWidget/__snapshots__/MediaWidget.test.tsx.snap +196 -0
  1002. package/src/components/MemoriWidget/MemoriWidget.css +199 -0
  1003. package/src/components/MemoriWidget/MemoriWidget.stories.tsx +73 -0
  1004. package/src/components/MemoriWidget/MemoriWidget.tsx +2037 -0
  1005. package/src/components/PositionDrawer/PositionDrawer.tsx +9 -0
  1006. package/src/components/SendOnEnterMenu/SendOnEnterMenu.css +47 -0
  1007. package/src/components/SendOnEnterMenu/SendOnEnterMenu.stories.tsx +52 -0
  1008. package/src/components/SendOnEnterMenu/SendOnEnterMenu.test.tsx +17 -0
  1009. package/src/components/SendOnEnterMenu/SendOnEnterMenu.tsx +74 -0
  1010. package/src/components/SendOnEnterMenu/__snapshots__/SendOnEnterMenu.test.tsx.snap +49 -0
  1011. package/src/components/ShareButton/ShareButton.css +57 -0
  1012. package/src/components/ShareButton/ShareButton.stories.tsx +52 -0
  1013. package/src/components/ShareButton/ShareButton.test.tsx +33 -0
  1014. package/src/components/ShareButton/ShareButton.tsx +198 -0
  1015. package/src/components/ShareButton/__snapshots__/ShareButton.test.tsx.snap +211 -0
  1016. package/src/components/Snippet/Snippet.css +35 -0
  1017. package/src/components/Snippet/Snippet.stories.tsx +273 -0
  1018. package/src/components/Snippet/Snippet.test.tsx +147 -0
  1019. package/src/components/Snippet/Snippet.tsx +70 -0
  1020. package/src/components/Snippet/__snapshots__/Snippet.test.tsx.snap +2776 -0
  1021. package/src/components/StartPanel/StartPanel.css +121 -0
  1022. package/src/components/StartPanel/StartPanel.stories.tsx +181 -0
  1023. package/src/components/StartPanel/StartPanel.test.tsx +113 -0
  1024. package/src/components/StartPanel/StartPanel.tsx +246 -0
  1025. package/src/components/StartPanel/__snapshots__/StartPanel.test.tsx.snap +369 -0
  1026. package/src/components/UploadMenu/UploadMenu.css +46 -0
  1027. package/src/components/UploadMenu/UploadMenu.stories.tsx +55 -0
  1028. package/src/components/UploadMenu/UploadMenu.test.tsx +34 -0
  1029. package/src/components/UploadMenu/UploadMenu.tsx +66 -0
  1030. package/src/components/UploadMenu/__snapshots__/UploadMenu.test.tsx.snap +137 -0
  1031. package/src/components/icons/Close.tsx +23 -0
  1032. package/src/components/icons/Copy.tsx +17 -0
  1033. package/src/components/icons/Download.tsx +23 -0
  1034. package/src/components/icons/Edit.tsx +17 -0
  1035. package/src/components/icons/Expand.tsx +23 -0
  1036. package/src/components/icons/Eye.tsx +17 -0
  1037. package/src/components/icons/EyeInvisible.tsx +24 -0
  1038. package/src/components/icons/Facebook.tsx +23 -0
  1039. package/src/components/icons/File.tsx +17 -0
  1040. package/src/components/icons/FileExcel.tsx +23 -0
  1041. package/src/components/icons/FilePdf.tsx +23 -0
  1042. package/src/components/icons/FileWord.tsx +23 -0
  1043. package/src/components/icons/Fullscreen.tsx +23 -0
  1044. package/src/components/icons/FullscreenExit.tsx +23 -0
  1045. package/src/components/icons/Link.tsx +17 -0
  1046. package/src/components/icons/Linkedin.tsx +23 -0
  1047. package/src/components/icons/Loading.tsx +29 -0
  1048. package/src/components/icons/Mail.tsx +17 -0
  1049. package/src/components/icons/MapMarker.tsx +26 -0
  1050. package/src/components/icons/Message.tsx +23 -0
  1051. package/src/components/icons/Minus.tsx +23 -0
  1052. package/src/components/icons/MinusCircle.tsx +24 -0
  1053. package/src/components/icons/PaperClip.tsx +23 -0
  1054. package/src/components/icons/Picture.tsx +23 -0
  1055. package/src/components/icons/Plus.tsx +18 -0
  1056. package/src/components/icons/Send.tsx +17 -0
  1057. package/src/components/icons/Setting.tsx +23 -0
  1058. package/src/components/icons/Share.tsx +23 -0
  1059. package/src/components/icons/Sound.tsx +23 -0
  1060. package/src/components/icons/SoundDeactivated.tsx +27 -0
  1061. package/src/components/icons/Telegram.tsx +26 -0
  1062. package/src/components/icons/Translation.tsx +24 -0
  1063. package/src/components/icons/Twitter.tsx +23 -0
  1064. package/src/components/icons/User.tsx +17 -0
  1065. package/src/components/icons/Warning.tsx +23 -0
  1066. package/src/components/icons/WhatsApp.tsx +24 -0
  1067. package/src/components/icons/icons.stories.tsx +65 -0
  1068. package/src/components/icons/loading.css +14 -0
  1069. package/src/components/layouts/Default.tsx +52 -0
  1070. package/src/components/ui/Button.css +138 -0
  1071. package/src/components/ui/Button.stories.tsx +155 -0
  1072. package/src/components/ui/Button.test.tsx +74 -0
  1073. package/src/components/ui/Button.tsx +78 -0
  1074. package/src/components/ui/Card.css +60 -0
  1075. package/src/components/ui/Card.stories.tsx +94 -0
  1076. package/src/components/ui/Card.test.tsx +47 -0
  1077. package/src/components/ui/Card.tsx +45 -0
  1078. package/src/components/ui/Checkbox.css +111 -0
  1079. package/src/components/ui/Checkbox.stories.tsx +58 -0
  1080. package/src/components/ui/Checkbox.test.tsx +23 -0
  1081. package/src/components/ui/Checkbox.tsx +38 -0
  1082. package/src/components/ui/Drawer.css +138 -0
  1083. package/src/components/ui/Drawer.stories.tsx +180 -0
  1084. package/src/components/ui/Drawer.test.tsx +126 -0
  1085. package/src/components/ui/Drawer.tsx +122 -0
  1086. package/src/components/ui/Message.tsx +12 -0
  1087. package/src/components/ui/Modal.css +98 -0
  1088. package/src/components/ui/Modal.stories.tsx +169 -0
  1089. package/src/components/ui/Modal.test.tsx +111 -0
  1090. package/src/components/ui/Modal.tsx +111 -0
  1091. package/src/components/ui/Spin.css +29 -0
  1092. package/src/components/ui/Spin.stories.tsx +62 -0
  1093. package/src/components/ui/Spin.test.tsx +41 -0
  1094. package/src/components/ui/Spin.tsx +32 -0
  1095. package/src/components/ui/Tooltip.css +78 -0
  1096. package/src/components/ui/Tooltip.stories.tsx +59 -0
  1097. package/src/components/ui/Tooltip.test.tsx +50 -0
  1098. package/src/components/ui/Tooltip.tsx +34 -0
  1099. package/src/components/ui/__snapshots__/Button.test.tsx.snap +204 -0
  1100. package/src/components/ui/__snapshots__/Card.test.tsx.snap +321 -0
  1101. package/src/components/ui/__snapshots__/Checkbox.test.tsx.snap +105 -0
  1102. package/src/components/ui/__snapshots__/Drawer.test.tsx.snap +67 -0
  1103. package/src/components/ui/__snapshots__/Modal.test.tsx.snap +59 -0
  1104. package/src/components/ui/__snapshots__/Spin.test.tsx.snap +193 -0
  1105. package/src/components/ui/__snapshots__/Tooltip.test.tsx.snap +87 -0
  1106. package/src/helpers/configuration.ts +21 -0
  1107. package/src/helpers/constants.ts +111 -0
  1108. package/src/helpers/error.ts +142 -0
  1109. package/src/helpers/media.ts +40 -0
  1110. package/src/helpers/statistics.ts +252 -0
  1111. package/src/helpers/translations.ts +41 -0
  1112. package/src/helpers/utils.ts +151 -0
  1113. package/src/i18n.ts +26 -0
  1114. package/src/index.tsx +179 -0
  1115. package/src/locales/en.json +204 -0
  1116. package/src/locales/it.json +204 -0
  1117. package/src/mocks/data.ts +214 -0
@@ -0,0 +1,3581 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`renders Chat on X2a state unchanged 1`] = `
4
+ <div>
5
+ <div
6
+ class="memori-chat--wrapper"
7
+ data-memori-lang="IT"
8
+ id="chat-wrapper"
9
+ >
10
+ <div
11
+ class="memori-chat--history"
12
+ >
13
+ <div
14
+ class="memori-chat--content"
15
+ >
16
+ <div
17
+ class="memori-chat--cover"
18
+ />
19
+ <div
20
+ class="memori-chat--bubble-container"
21
+ >
22
+ <picture
23
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
24
+ >
25
+ <source
26
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
27
+ />
28
+ <img
29
+ alt="Memori"
30
+ class="memori-chat--bubble-avatar-img"
31
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
32
+ />
33
+ </picture>
34
+ <div
35
+ class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
36
+ >
37
+ <p>
38
+ Ciao, io sono test, c'è qualcosa che vorresti chiedermi?
39
+ </p>
40
+ </div>
41
+ </div>
42
+ <div
43
+ class="memori-media-widget"
44
+ />
45
+ <div
46
+ class="memori-chat--bubble-container memori-chat--bubble-from-user"
47
+ >
48
+ <div
49
+ class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
50
+ >
51
+ <p>
52
+ Prova
53
+ </p>
54
+ </div>
55
+ <div
56
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x-15"
57
+ >
58
+ <svg
59
+ aria-hidden="true"
60
+ focusable="false"
61
+ role="img"
62
+ viewBox="0 0 1024 1024"
63
+ xmlns="http://www.w3.org/2000/svg"
64
+ >
65
+ <path
66
+ d="M858.5 763.6a374 374 0 0 0-80.6-119.5 375.63 375.63 0 0 0-119.5-80.6c-.4-.2-.8-.3-1.2-.5C719.5 518 760 444.7 760 362c0-137-111-248-248-248S264 225 264 362c0 82.7 40.5 156 102.8 201.1-.4.2-.8.3-1.2.5-44.8 18.9-85 46-119.5 80.6a375.63 375.63 0 0 0-80.6 119.5A371.7 371.7 0 0 0 136 901.8a8 8 0 0 0 8 8.2h60c4.4 0 7.9-3.5 8-7.8 2-77.2 33-149.5 87.8-204.3 56.7-56.7 132-87.9 212.2-87.9s155.5 31.2 212.2 87.9C779 752.7 810 825 812 902.2c.1 4.4 3.6 7.8 8 7.8h60a8 8 0 0 0 8-8.2c-1-47.8-10.9-94.3-29.5-138.2zM512 534c-45.9 0-89.1-17.9-121.6-50.4S340 407.9 340 362c0-45.9 17.9-89.1 50.4-121.6S466.1 190 512 190s89.1 17.9 121.6 50.4S684 316.1 684 362c0 45.9-17.9 89.1-50.4 121.6S557.9 534 512 534z"
67
+ />
68
+ </svg>
69
+ </div>
70
+ </div>
71
+ <div
72
+ class="memori-media-widget"
73
+ />
74
+ <div
75
+ class="memori-chat--bubble-container"
76
+ >
77
+ <picture
78
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
79
+ >
80
+ <source
81
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
82
+ />
83
+ <img
84
+ alt="Memori"
85
+ class="memori-chat--bubble-avatar-img"
86
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
87
+ />
88
+ </picture>
89
+ <div
90
+ class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
91
+ >
92
+ <p>
93
+ Mi dispiace, le mie risposte sono limitate. Devi farmi le domande giuste. C'è altro che vuoi sapere?
94
+ </p>
95
+ </div>
96
+ </div>
97
+ <div
98
+ class="memori-media-widget"
99
+ />
100
+ <div
101
+ class="memori-chat--bubble-container memori-chat--bubble-from-user"
102
+ >
103
+ <div
104
+ class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
105
+ >
106
+ <p>
107
+ Come faccio a fare delle cose con questa cosa?
108
+ </p>
109
+ </div>
110
+ <div
111
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x-15"
112
+ >
113
+ <svg
114
+ aria-hidden="true"
115
+ focusable="false"
116
+ role="img"
117
+ viewBox="0 0 1024 1024"
118
+ xmlns="http://www.w3.org/2000/svg"
119
+ >
120
+ <path
121
+ d="M858.5 763.6a374 374 0 0 0-80.6-119.5 375.63 375.63 0 0 0-119.5-80.6c-.4-.2-.8-.3-1.2-.5C719.5 518 760 444.7 760 362c0-137-111-248-248-248S264 225 264 362c0 82.7 40.5 156 102.8 201.1-.4.2-.8.3-1.2.5-44.8 18.9-85 46-119.5 80.6a375.63 375.63 0 0 0-80.6 119.5A371.7 371.7 0 0 0 136 901.8a8 8 0 0 0 8 8.2h60c4.4 0 7.9-3.5 8-7.8 2-77.2 33-149.5 87.8-204.3 56.7-56.7 132-87.9 212.2-87.9s155.5 31.2 212.2 87.9C779 752.7 810 825 812 902.2c.1 4.4 3.6 7.8 8 7.8h60a8 8 0 0 0 8-8.2c-1-47.8-10.9-94.3-29.5-138.2zM512 534c-45.9 0-89.1-17.9-121.6-50.4S340 407.9 340 362c0-45.9 17.9-89.1 50.4-121.6S466.1 190 512 190s89.1 17.9 121.6 50.4S684 316.1 684 362c0 45.9-17.9 89.1-50.4 121.6S557.9 534 512 534z"
122
+ />
123
+ </svg>
124
+ </div>
125
+ </div>
126
+ <div
127
+ class="memori-media-widget"
128
+ />
129
+ <div
130
+ class="memori-chat--bubble-container"
131
+ >
132
+ <picture
133
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
134
+ >
135
+ <source
136
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
137
+ />
138
+ <img
139
+ alt="Memori"
140
+ class="memori-chat--bubble-avatar-img"
141
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
142
+ />
143
+ </picture>
144
+ <div
145
+ class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
146
+ >
147
+ <p>
148
+ Ecco qui come.
149
+ </p>
150
+ </div>
151
+ </div>
152
+ <div
153
+ class="memori-chat--context-vars"
154
+ >
155
+ <div
156
+ class="memori-chat--context-tag"
157
+ >
158
+ <span
159
+ class="memori-chat--context-tag-text"
160
+ >
161
+ TEST
162
+ :
163
+ test
164
+ </span>
165
+ </div>
166
+ </div>
167
+ <div
168
+ class="memori-media-widget"
169
+ >
170
+ <div
171
+ class="memori-link-items"
172
+ >
173
+ <div
174
+ class="memori-link-items--grid"
175
+ >
176
+ <div
177
+ class="memori-link-item ease-out duration-500 delay-0 opacity-0 scale-95"
178
+ >
179
+ <a
180
+ class="memori-link-item--link"
181
+ href="https://memori.ai"
182
+ rel="noopener noreferrer"
183
+ target="_blank"
184
+ >
185
+ <div
186
+ class="memori-card memori-link-item--card memori-card--with-cover memori-card--hoverable"
187
+ >
188
+ <div
189
+ class="memori-spin"
190
+ >
191
+ <div
192
+ class="memori-card--cover"
193
+ >
194
+ <div
195
+ class="memori-link-item--card-cover-icon"
196
+ >
197
+ <svg
198
+ aria-hidden="true"
199
+ class="memori-link-item--icon"
200
+ focusable="false"
201
+ role="img"
202
+ viewBox="0 0 1024 1024"
203
+ xmlns="http://www.w3.org/2000/svg"
204
+ >
205
+ <path
206
+ d="M574 665.4a8.03 8.03 0 0 0-11.3 0L446.5 781.6c-53.8 53.8-144.6 59.5-204 0-59.5-59.5-53.8-150.2 0-204l116.2-116.2c3.1-3.1 3.1-8.2 0-11.3l-39.8-39.8a8.03 8.03 0 0 0-11.3 0L191.4 526.5c-84.6 84.6-84.6 221.5 0 306s221.5 84.6 306 0l116.2-116.2c3.1-3.1 3.1-8.2 0-11.3L574 665.4zm258.6-474c-84.6-84.6-221.5-84.6-306 0L410.3 307.6a8.03 8.03 0 0 0 0 11.3l39.7 39.7c3.1 3.1 8.2 3.1 11.3 0l116.2-116.2c53.8-53.8 144.6-59.5 204 0 59.5 59.5 53.8 150.2 0 204L665.3 562.6a8.03 8.03 0 0 0 0 11.3l39.8 39.8c3.1 3.1 8.2 3.1 11.3 0l116.2-116.2c84.5-84.6 84.5-221.5 0-306.1zM610.1 372.3a8.03 8.03 0 0 0-11.3 0L372.3 598.7a8.03 8.03 0 0 0 0 11.3l39.6 39.6c3.1 3.1 8.2 3.1 11.3 0l226.4-226.4c3.1-3.1 3.1-8.2 0-11.3l-39.5-39.6z"
207
+ />
208
+ </svg>
209
+ </div>
210
+ </div>
211
+ <div
212
+ class="memori-card--content"
213
+ >
214
+ <h3
215
+ class="memori-card--title"
216
+ >
217
+ Link
218
+ </h3>
219
+ <div
220
+ class="memori-card--children"
221
+ />
222
+ </div>
223
+ <div
224
+ class="memori-spin--spinner"
225
+ >
226
+ <svg
227
+ aria-hidden="true"
228
+ class="memori-loading-icon"
229
+ focusable="false"
230
+ role="img"
231
+ viewBox="0 0 1024 1024"
232
+ xmlns="http://www.w3.org/2000/svg"
233
+ >
234
+ <path
235
+ d="M988 548c-19.9 0-36-16.1-36-36 0-59.4-11.6-117-34.6-171.3a440.45 440.45 0 00-94.3-139.9 437.71 437.71 0 00-139.9-94.3C629 83.6 571.4 72 512 72c-19.9 0-36-16.1-36-36s16.1-36 36-36c69.1 0 136.2 13.5 199.3 40.3C772.3 66 827 103 874 150c47 47 83.9 101.8 109.7 162.7 26.7 63.1 40.2 130.2 40.2 199.3.1 19.9-16 36-35.9 36z"
236
+ />
237
+ </svg>
238
+ </div>
239
+ </div>
240
+ </div>
241
+ </a>
242
+ </div>
243
+ </div>
244
+ </div>
245
+ </div>
246
+ <div
247
+ class="memori-chat--bubble-container memori-chat--bubble-from-user"
248
+ >
249
+ <div
250
+ class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
251
+ >
252
+ <p>
253
+ Ah, grazie! Ciao!
254
+ </p>
255
+ </div>
256
+ <div
257
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x-15"
258
+ >
259
+ <svg
260
+ aria-hidden="true"
261
+ focusable="false"
262
+ role="img"
263
+ viewBox="0 0 1024 1024"
264
+ xmlns="http://www.w3.org/2000/svg"
265
+ >
266
+ <path
267
+ d="M858.5 763.6a374 374 0 0 0-80.6-119.5 375.63 375.63 0 0 0-119.5-80.6c-.4-.2-.8-.3-1.2-.5C719.5 518 760 444.7 760 362c0-137-111-248-248-248S264 225 264 362c0 82.7 40.5 156 102.8 201.1-.4.2-.8.3-1.2.5-44.8 18.9-85 46-119.5 80.6a375.63 375.63 0 0 0-80.6 119.5A371.7 371.7 0 0 0 136 901.8a8 8 0 0 0 8 8.2h60c4.4 0 7.9-3.5 8-7.8 2-77.2 33-149.5 87.8-204.3 56.7-56.7 132-87.9 212.2-87.9s155.5 31.2 212.2 87.9C779 752.7 810 825 812 902.2c.1 4.4 3.6 7.8 8 7.8h60a8 8 0 0 0 8-8.2c-1-47.8-10.9-94.3-29.5-138.2zM512 534c-45.9 0-89.1-17.9-121.6-50.4S340 407.9 340 362c0-45.9 17.9-89.1 50.4-121.6S466.1 190 512 190s89.1 17.9 121.6 50.4S684 316.1 684 362c0 45.9-17.9 89.1-50.4 121.6S557.9 534 512 534z"
268
+ />
269
+ </svg>
270
+ </div>
271
+ </div>
272
+ <div
273
+ class="memori-media-widget"
274
+ />
275
+ <div
276
+ class="memori-chat--bubble-container"
277
+ >
278
+ <picture
279
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
280
+ >
281
+ <source
282
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
283
+ />
284
+ <img
285
+ alt="Memori"
286
+ class="memori-chat--bubble-avatar-img"
287
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
288
+ />
289
+ </picture>
290
+ <div
291
+ class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
292
+ >
293
+ <p>
294
+ Arrivederci.
295
+ </p>
296
+ </div>
297
+ </div>
298
+ <div
299
+ class="memori-chat--context-vars"
300
+ >
301
+ <div
302
+ class="memori-chat--context-tag"
303
+ >
304
+ <span
305
+ class="memori-chat--context-tag-text"
306
+ >
307
+ TEST
308
+ :
309
+ test
310
+ </span>
311
+ </div>
312
+ </div>
313
+ <div
314
+ class="memori-media-widget"
315
+ />
316
+ <div
317
+ id="end-messages-ref"
318
+ />
319
+ </div>
320
+ </div>
321
+ <fieldset
322
+ class="memori-chat-inputs"
323
+ disabled=""
324
+ id="chat-fieldset"
325
+ >
326
+ <div
327
+ class="memori-send-on-enter-menu"
328
+ data-headlessui-state=""
329
+ >
330
+ <button
331
+ aria-expanded="false"
332
+ aria-haspopup="true"
333
+ class="memori-button memori-button--circle memori-button--icon-only memori-share-button--button memori--conversation-button"
334
+ data-headlessui-state=""
335
+ id="headlessui-menu-button-:re:"
336
+ type="button"
337
+ >
338
+ <div
339
+ class="memori-button--icon"
340
+ >
341
+
342
+ </div>
343
+ </button>
344
+ </div>
345
+ <div
346
+ class="memori-chat-textarea"
347
+ data-testid="chat-textarea"
348
+ >
349
+ <div
350
+ class="memori-chat-textarea--inner"
351
+ >
352
+ <textarea
353
+ class="memori-chat-textarea--input"
354
+ />
355
+ <div
356
+ class="memori-chat-textarea--expand"
357
+ >
358
+ <button
359
+ class="memori-chat-textarea--expand-button memori-button memori-button--ghost memori-button--rounded memori-button--icon-only"
360
+ >
361
+ <span
362
+ class="memori-button--icon"
363
+ >
364
+ <svg
365
+ aria-hidden="true"
366
+ focusable="false"
367
+ role="img"
368
+ viewBox="0 0 1024 1024"
369
+ xmlns="http://www.w3.org/2000/svg"
370
+ >
371
+ <path
372
+ d="M855 160.1l-189.2 23.5c-6.6.8-9.3 8.8-4.7 13.5l54.7 54.7-153.5 153.5a8.03 8.03 0 0 0 0 11.3l45.1 45.1c3.1 3.1 8.2 3.1 11.3 0l153.6-153.6 54.7 54.7a7.94 7.94 0 0 0 13.5-4.7L863.9 169a7.9 7.9 0 0 0-8.9-8.9zM416.6 562.3a8.03 8.03 0 0 0-11.3 0L251.8 715.9l-54.7-54.7a7.94 7.94 0 0 0-13.5 4.7L160.1 855c-.6 5.2 3.7 9.5 8.9 8.9l189.2-23.5c6.6-.8 9.3-8.8 4.7-13.5l-54.7-54.7 153.6-153.6c3.1-3.1 3.1-8.2 0-11.3l-45.2-45z"
373
+ />
374
+ </svg>
375
+ </span>
376
+ </button>
377
+ </div>
378
+ </div>
379
+ </div>
380
+ <button
381
+ class="memori--conversation-button memori-chat-inputs--send memori-button memori-button--circle memori-button--padded memori-button--icon-only"
382
+ disabled=""
383
+ title="send"
384
+ >
385
+ <span
386
+ class="memori-button--icon"
387
+ >
388
+ <svg
389
+ aria-hidden="true"
390
+ focusable="false"
391
+ role="img"
392
+ viewBox="0 0 1024 1024"
393
+ xmlns="http://www.w3.org/2000/svg"
394
+ >
395
+ <path
396
+ d="M931.4 498.9L94.9 79.5c-3.4-1.7-7.3-2.1-11-1.2-8.5 2.1-13.8 10.7-11.7 19.3l86.2 352.2c1.3 5.3 5.2 9.6 10.4 11.3l147.7 50.7-147.6 50.7c-5.2 1.8-9.1 6-10.3 11.3L72.2 926.5c-.9 3.7-.5 7.6 1.2 10.9 3.9 7.9 13.5 11.1 21.5 7.2l836.5-417c3.1-1.5 5.6-4.1 7.2-7.1 3.9-8 .7-17.6-7.2-21.6zM170.8 826.3l50.3-205.6 295.2-101.3c2.3-.8 4.2-2.6 5-5 1.4-4.2-.8-8.7-5-10.2L221.1 403 171 198.2l628 314.9-628.2 313.2z"
397
+ />
398
+ </svg>
399
+ </span>
400
+ </button>
401
+ </fieldset>
402
+ </div>
403
+ </div>
404
+ `;
405
+
406
+ exports[`renders Chat on X3 state unchanged 1`] = `
407
+ <div>
408
+ <div
409
+ class="memori-chat--wrapper"
410
+ data-memori-lang="IT"
411
+ id="chat-wrapper"
412
+ >
413
+ <div
414
+ class="memori-chat--history"
415
+ >
416
+ <div
417
+ class="memori-chat--content"
418
+ >
419
+ <div
420
+ class="memori-chat--cover"
421
+ />
422
+ <div
423
+ class="memori-chat--bubble-container"
424
+ >
425
+ <picture
426
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
427
+ >
428
+ <source
429
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
430
+ />
431
+ <img
432
+ alt="Memori"
433
+ class="memori-chat--bubble-avatar-img"
434
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
435
+ />
436
+ </picture>
437
+ <div
438
+ class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
439
+ >
440
+ <p>
441
+ Ciao, io sono test, c'è qualcosa che vorresti chiedermi?
442
+ </p>
443
+ </div>
444
+ </div>
445
+ <div
446
+ class="memori-media-widget"
447
+ />
448
+ <div
449
+ class="memori-chat--bubble-container memori-chat--bubble-from-user"
450
+ >
451
+ <div
452
+ class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
453
+ >
454
+ <p>
455
+ Prova
456
+ </p>
457
+ </div>
458
+ <div
459
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x-15"
460
+ >
461
+ <svg
462
+ aria-hidden="true"
463
+ focusable="false"
464
+ role="img"
465
+ viewBox="0 0 1024 1024"
466
+ xmlns="http://www.w3.org/2000/svg"
467
+ >
468
+ <path
469
+ d="M858.5 763.6a374 374 0 0 0-80.6-119.5 375.63 375.63 0 0 0-119.5-80.6c-.4-.2-.8-.3-1.2-.5C719.5 518 760 444.7 760 362c0-137-111-248-248-248S264 225 264 362c0 82.7 40.5 156 102.8 201.1-.4.2-.8.3-1.2.5-44.8 18.9-85 46-119.5 80.6a375.63 375.63 0 0 0-80.6 119.5A371.7 371.7 0 0 0 136 901.8a8 8 0 0 0 8 8.2h60c4.4 0 7.9-3.5 8-7.8 2-77.2 33-149.5 87.8-204.3 56.7-56.7 132-87.9 212.2-87.9s155.5 31.2 212.2 87.9C779 752.7 810 825 812 902.2c.1 4.4 3.6 7.8 8 7.8h60a8 8 0 0 0 8-8.2c-1-47.8-10.9-94.3-29.5-138.2zM512 534c-45.9 0-89.1-17.9-121.6-50.4S340 407.9 340 362c0-45.9 17.9-89.1 50.4-121.6S466.1 190 512 190s89.1 17.9 121.6 50.4S684 316.1 684 362c0 45.9-17.9 89.1-50.4 121.6S557.9 534 512 534z"
470
+ />
471
+ </svg>
472
+ </div>
473
+ </div>
474
+ <div
475
+ class="memori-media-widget"
476
+ />
477
+ <div
478
+ class="memori-chat--bubble-container"
479
+ >
480
+ <picture
481
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
482
+ >
483
+ <source
484
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
485
+ />
486
+ <img
487
+ alt="Memori"
488
+ class="memori-chat--bubble-avatar-img"
489
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
490
+ />
491
+ </picture>
492
+ <div
493
+ class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
494
+ >
495
+ <p>
496
+ Mi dispiace, le mie risposte sono limitate. Devi farmi le domande giuste. C'è altro che vuoi sapere?
497
+ </p>
498
+ </div>
499
+ </div>
500
+ <div
501
+ class="memori-media-widget"
502
+ />
503
+ <div
504
+ class="memori-chat--bubble-container memori-chat--bubble-from-user"
505
+ >
506
+ <div
507
+ class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
508
+ >
509
+ <p>
510
+ Come faccio a fare delle cose con questa cosa?
511
+ </p>
512
+ </div>
513
+ <div
514
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x-15"
515
+ >
516
+ <svg
517
+ aria-hidden="true"
518
+ focusable="false"
519
+ role="img"
520
+ viewBox="0 0 1024 1024"
521
+ xmlns="http://www.w3.org/2000/svg"
522
+ >
523
+ <path
524
+ d="M858.5 763.6a374 374 0 0 0-80.6-119.5 375.63 375.63 0 0 0-119.5-80.6c-.4-.2-.8-.3-1.2-.5C719.5 518 760 444.7 760 362c0-137-111-248-248-248S264 225 264 362c0 82.7 40.5 156 102.8 201.1-.4.2-.8.3-1.2.5-44.8 18.9-85 46-119.5 80.6a375.63 375.63 0 0 0-80.6 119.5A371.7 371.7 0 0 0 136 901.8a8 8 0 0 0 8 8.2h60c4.4 0 7.9-3.5 8-7.8 2-77.2 33-149.5 87.8-204.3 56.7-56.7 132-87.9 212.2-87.9s155.5 31.2 212.2 87.9C779 752.7 810 825 812 902.2c.1 4.4 3.6 7.8 8 7.8h60a8 8 0 0 0 8-8.2c-1-47.8-10.9-94.3-29.5-138.2zM512 534c-45.9 0-89.1-17.9-121.6-50.4S340 407.9 340 362c0-45.9 17.9-89.1 50.4-121.6S466.1 190 512 190s89.1 17.9 121.6 50.4S684 316.1 684 362c0 45.9-17.9 89.1-50.4 121.6S557.9 534 512 534z"
525
+ />
526
+ </svg>
527
+ </div>
528
+ </div>
529
+ <div
530
+ class="memori-media-widget"
531
+ />
532
+ <div
533
+ class="memori-chat--bubble-container"
534
+ >
535
+ <picture
536
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
537
+ >
538
+ <source
539
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
540
+ />
541
+ <img
542
+ alt="Memori"
543
+ class="memori-chat--bubble-avatar-img"
544
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
545
+ />
546
+ </picture>
547
+ <div
548
+ class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
549
+ >
550
+ <p>
551
+ Ecco qui come.
552
+ </p>
553
+ </div>
554
+ </div>
555
+ <div
556
+ class="memori-chat--context-vars"
557
+ >
558
+ <div
559
+ class="memori-chat--context-tag"
560
+ >
561
+ <span
562
+ class="memori-chat--context-tag-text"
563
+ >
564
+ TEST
565
+ :
566
+ test
567
+ </span>
568
+ </div>
569
+ </div>
570
+ <div
571
+ class="memori-media-widget"
572
+ >
573
+ <div
574
+ class="memori-link-items"
575
+ >
576
+ <div
577
+ class="memori-link-items--grid"
578
+ >
579
+ <div
580
+ class="memori-link-item ease-out duration-500 delay-0 opacity-0 scale-95"
581
+ >
582
+ <a
583
+ class="memori-link-item--link"
584
+ href="https://memori.ai"
585
+ rel="noopener noreferrer"
586
+ target="_blank"
587
+ >
588
+ <div
589
+ class="memori-card memori-link-item--card memori-card--with-cover memori-card--hoverable"
590
+ >
591
+ <div
592
+ class="memori-spin"
593
+ >
594
+ <div
595
+ class="memori-card--cover"
596
+ >
597
+ <div
598
+ class="memori-link-item--card-cover-icon"
599
+ >
600
+ <svg
601
+ aria-hidden="true"
602
+ class="memori-link-item--icon"
603
+ focusable="false"
604
+ role="img"
605
+ viewBox="0 0 1024 1024"
606
+ xmlns="http://www.w3.org/2000/svg"
607
+ >
608
+ <path
609
+ d="M574 665.4a8.03 8.03 0 0 0-11.3 0L446.5 781.6c-53.8 53.8-144.6 59.5-204 0-59.5-59.5-53.8-150.2 0-204l116.2-116.2c3.1-3.1 3.1-8.2 0-11.3l-39.8-39.8a8.03 8.03 0 0 0-11.3 0L191.4 526.5c-84.6 84.6-84.6 221.5 0 306s221.5 84.6 306 0l116.2-116.2c3.1-3.1 3.1-8.2 0-11.3L574 665.4zm258.6-474c-84.6-84.6-221.5-84.6-306 0L410.3 307.6a8.03 8.03 0 0 0 0 11.3l39.7 39.7c3.1 3.1 8.2 3.1 11.3 0l116.2-116.2c53.8-53.8 144.6-59.5 204 0 59.5 59.5 53.8 150.2 0 204L665.3 562.6a8.03 8.03 0 0 0 0 11.3l39.8 39.8c3.1 3.1 8.2 3.1 11.3 0l116.2-116.2c84.5-84.6 84.5-221.5 0-306.1zM610.1 372.3a8.03 8.03 0 0 0-11.3 0L372.3 598.7a8.03 8.03 0 0 0 0 11.3l39.6 39.6c3.1 3.1 8.2 3.1 11.3 0l226.4-226.4c3.1-3.1 3.1-8.2 0-11.3l-39.5-39.6z"
610
+ />
611
+ </svg>
612
+ </div>
613
+ </div>
614
+ <div
615
+ class="memori-card--content"
616
+ >
617
+ <h3
618
+ class="memori-card--title"
619
+ >
620
+ Link
621
+ </h3>
622
+ <div
623
+ class="memori-card--children"
624
+ />
625
+ </div>
626
+ <div
627
+ class="memori-spin--spinner"
628
+ >
629
+ <svg
630
+ aria-hidden="true"
631
+ class="memori-loading-icon"
632
+ focusable="false"
633
+ role="img"
634
+ viewBox="0 0 1024 1024"
635
+ xmlns="http://www.w3.org/2000/svg"
636
+ >
637
+ <path
638
+ d="M988 548c-19.9 0-36-16.1-36-36 0-59.4-11.6-117-34.6-171.3a440.45 440.45 0 00-94.3-139.9 437.71 437.71 0 00-139.9-94.3C629 83.6 571.4 72 512 72c-19.9 0-36-16.1-36-36s16.1-36 36-36c69.1 0 136.2 13.5 199.3 40.3C772.3 66 827 103 874 150c47 47 83.9 101.8 109.7 162.7 26.7 63.1 40.2 130.2 40.2 199.3.1 19.9-16 36-35.9 36z"
639
+ />
640
+ </svg>
641
+ </div>
642
+ </div>
643
+ </div>
644
+ </a>
645
+ </div>
646
+ </div>
647
+ </div>
648
+ </div>
649
+ <div
650
+ class="memori-chat--bubble-container memori-chat--bubble-from-user"
651
+ >
652
+ <div
653
+ class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
654
+ >
655
+ <p>
656
+ Ah, grazie! Ciao!
657
+ </p>
658
+ </div>
659
+ <div
660
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x-15"
661
+ >
662
+ <svg
663
+ aria-hidden="true"
664
+ focusable="false"
665
+ role="img"
666
+ viewBox="0 0 1024 1024"
667
+ xmlns="http://www.w3.org/2000/svg"
668
+ >
669
+ <path
670
+ d="M858.5 763.6a374 374 0 0 0-80.6-119.5 375.63 375.63 0 0 0-119.5-80.6c-.4-.2-.8-.3-1.2-.5C719.5 518 760 444.7 760 362c0-137-111-248-248-248S264 225 264 362c0 82.7 40.5 156 102.8 201.1-.4.2-.8.3-1.2.5-44.8 18.9-85 46-119.5 80.6a375.63 375.63 0 0 0-80.6 119.5A371.7 371.7 0 0 0 136 901.8a8 8 0 0 0 8 8.2h60c4.4 0 7.9-3.5 8-7.8 2-77.2 33-149.5 87.8-204.3 56.7-56.7 132-87.9 212.2-87.9s155.5 31.2 212.2 87.9C779 752.7 810 825 812 902.2c.1 4.4 3.6 7.8 8 7.8h60a8 8 0 0 0 8-8.2c-1-47.8-10.9-94.3-29.5-138.2zM512 534c-45.9 0-89.1-17.9-121.6-50.4S340 407.9 340 362c0-45.9 17.9-89.1 50.4-121.6S466.1 190 512 190s89.1 17.9 121.6 50.4S684 316.1 684 362c0 45.9-17.9 89.1-50.4 121.6S557.9 534 512 534z"
671
+ />
672
+ </svg>
673
+ </div>
674
+ </div>
675
+ <div
676
+ class="memori-media-widget"
677
+ />
678
+ <div
679
+ class="memori-chat--bubble-container"
680
+ >
681
+ <picture
682
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
683
+ >
684
+ <source
685
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
686
+ />
687
+ <img
688
+ alt="Memori"
689
+ class="memori-chat--bubble-avatar-img"
690
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
691
+ />
692
+ </picture>
693
+ <div
694
+ class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
695
+ >
696
+ <p>
697
+ Arrivederci.
698
+ </p>
699
+ </div>
700
+ </div>
701
+ <div
702
+ class="memori-chat--context-vars"
703
+ >
704
+ <div
705
+ class="memori-chat--context-tag"
706
+ >
707
+ <span
708
+ class="memori-chat--context-tag-text"
709
+ >
710
+ TEST
711
+ :
712
+ test
713
+ </span>
714
+ </div>
715
+ </div>
716
+ <div
717
+ class="memori-media-widget"
718
+ />
719
+ <div
720
+ id="end-messages-ref"
721
+ />
722
+ </div>
723
+ </div>
724
+ <div
725
+ class="memori-chat--known-tags"
726
+ >
727
+ <button
728
+ class="memori-chat--known-tag memori-button memori-button--rounded memori-button--padded memori-button--with-icon"
729
+ >
730
+ <span
731
+ class="memori-button--icon"
732
+ >
733
+ <span
734
+ class="memori-chat--known-tag-icon"
735
+ >
736
+ ☠️
737
+ </span>
738
+ </span>
739
+ test
740
+ </button>
741
+ <button
742
+ class="memori-chat--known-tag memori-button memori-button--rounded memori-button--padded memori-button--with-icon"
743
+ >
744
+ <span
745
+ class="memori-button--icon"
746
+ >
747
+ <span
748
+ class="memori-chat--known-tag-icon"
749
+ >
750
+ 😎
751
+ </span>
752
+ </span>
753
+ Ciccio
754
+ </button>
755
+ </div>
756
+ <fieldset
757
+ class="memori-chat-inputs"
758
+ disabled=""
759
+ id="chat-fieldset"
760
+ >
761
+ <div
762
+ class="memori-send-on-enter-menu"
763
+ data-headlessui-state=""
764
+ >
765
+ <button
766
+ aria-expanded="false"
767
+ aria-haspopup="true"
768
+ class="memori-button memori-button--circle memori-button--icon-only memori-share-button--button memori--conversation-button"
769
+ data-headlessui-state=""
770
+ id="headlessui-menu-button-:rc:"
771
+ type="button"
772
+ >
773
+ <div
774
+ class="memori-button--icon"
775
+ >
776
+
777
+ </div>
778
+ </button>
779
+ </div>
780
+ <div
781
+ class="memori-chat-textarea memori-chat-textarea--disabled"
782
+ data-testid="chat-textarea"
783
+ >
784
+ <div
785
+ class="memori-chat-textarea--inner"
786
+ >
787
+ <textarea
788
+ class="memori-chat-textarea--input"
789
+ disabled=""
790
+ />
791
+ <div
792
+ class="memori-chat-textarea--expand"
793
+ >
794
+ <button
795
+ class="memori-chat-textarea--expand-button memori-button memori-button--ghost memori-button--rounded memori-button--icon-only"
796
+ >
797
+ <span
798
+ class="memori-button--icon"
799
+ >
800
+ <svg
801
+ aria-hidden="true"
802
+ focusable="false"
803
+ role="img"
804
+ viewBox="0 0 1024 1024"
805
+ xmlns="http://www.w3.org/2000/svg"
806
+ >
807
+ <path
808
+ d="M855 160.1l-189.2 23.5c-6.6.8-9.3 8.8-4.7 13.5l54.7 54.7-153.5 153.5a8.03 8.03 0 0 0 0 11.3l45.1 45.1c3.1 3.1 8.2 3.1 11.3 0l153.6-153.6 54.7 54.7a7.94 7.94 0 0 0 13.5-4.7L863.9 169a7.9 7.9 0 0 0-8.9-8.9zM416.6 562.3a8.03 8.03 0 0 0-11.3 0L251.8 715.9l-54.7-54.7a7.94 7.94 0 0 0-13.5 4.7L160.1 855c-.6 5.2 3.7 9.5 8.9 8.9l189.2-23.5c6.6-.8 9.3-8.8 4.7-13.5l-54.7-54.7 153.6-153.6c3.1-3.1 3.1-8.2 0-11.3l-45.2-45z"
809
+ />
810
+ </svg>
811
+ </span>
812
+ </button>
813
+ </div>
814
+ </div>
815
+ </div>
816
+ <button
817
+ class="memori--conversation-button memori-chat-inputs--send memori-button memori-button--circle memori-button--padded memori-button--icon-only"
818
+ disabled=""
819
+ title="send"
820
+ >
821
+ <span
822
+ class="memori-button--icon"
823
+ >
824
+ <svg
825
+ aria-hidden="true"
826
+ focusable="false"
827
+ role="img"
828
+ viewBox="0 0 1024 1024"
829
+ xmlns="http://www.w3.org/2000/svg"
830
+ >
831
+ <path
832
+ d="M931.4 498.9L94.9 79.5c-3.4-1.7-7.3-2.1-11-1.2-8.5 2.1-13.8 10.7-11.7 19.3l86.2 352.2c1.3 5.3 5.2 9.6 10.4 11.3l147.7 50.7-147.6 50.7c-5.2 1.8-9.1 6-10.3 11.3L72.2 926.5c-.9 3.7-.5 7.6 1.2 10.9 3.9 7.9 13.5 11.1 21.5 7.2l836.5-417c3.1-1.5 5.6-4.1 7.2-7.1 3.9-8 .7-17.6-7.2-21.6zM170.8 826.3l50.3-205.6 295.2-101.3c2.3-.8 4.2-2.6 5-5 1.4-4.2-.8-8.7-5-10.2L221.1 403 171 198.2l628 314.9-628.2 313.2z"
833
+ />
834
+ </svg>
835
+ </span>
836
+ </button>
837
+ </fieldset>
838
+ </div>
839
+ </div>
840
+ `;
841
+
842
+ exports[`renders Chat unchanged 1`] = `
843
+ <div>
844
+ <div
845
+ class="memori-chat--wrapper"
846
+ data-memori-lang="IT"
847
+ id="chat-wrapper"
848
+ >
849
+ <div
850
+ class="memori-chat--history"
851
+ >
852
+ <div
853
+ class="memori-chat--content"
854
+ >
855
+ <div
856
+ class="memori-chat--cover"
857
+ />
858
+ <div
859
+ class="memori-chat--bubble-container"
860
+ >
861
+ <picture
862
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
863
+ >
864
+ <source
865
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
866
+ />
867
+ <img
868
+ alt="Memori"
869
+ class="memori-chat--bubble-avatar-img"
870
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
871
+ />
872
+ </picture>
873
+ <div
874
+ class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
875
+ >
876
+ <p>
877
+ Ciao, io sono test, c'è qualcosa che vorresti chiedermi?
878
+ </p>
879
+ </div>
880
+ </div>
881
+ <div
882
+ class="memori-media-widget"
883
+ />
884
+ <div
885
+ class="memori-chat--bubble-container memori-chat--bubble-from-user"
886
+ >
887
+ <div
888
+ class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
889
+ >
890
+ <p>
891
+ Prova
892
+ </p>
893
+ </div>
894
+ <div
895
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x-15"
896
+ >
897
+ <svg
898
+ aria-hidden="true"
899
+ focusable="false"
900
+ role="img"
901
+ viewBox="0 0 1024 1024"
902
+ xmlns="http://www.w3.org/2000/svg"
903
+ >
904
+ <path
905
+ d="M858.5 763.6a374 374 0 0 0-80.6-119.5 375.63 375.63 0 0 0-119.5-80.6c-.4-.2-.8-.3-1.2-.5C719.5 518 760 444.7 760 362c0-137-111-248-248-248S264 225 264 362c0 82.7 40.5 156 102.8 201.1-.4.2-.8.3-1.2.5-44.8 18.9-85 46-119.5 80.6a375.63 375.63 0 0 0-80.6 119.5A371.7 371.7 0 0 0 136 901.8a8 8 0 0 0 8 8.2h60c4.4 0 7.9-3.5 8-7.8 2-77.2 33-149.5 87.8-204.3 56.7-56.7 132-87.9 212.2-87.9s155.5 31.2 212.2 87.9C779 752.7 810 825 812 902.2c.1 4.4 3.6 7.8 8 7.8h60a8 8 0 0 0 8-8.2c-1-47.8-10.9-94.3-29.5-138.2zM512 534c-45.9 0-89.1-17.9-121.6-50.4S340 407.9 340 362c0-45.9 17.9-89.1 50.4-121.6S466.1 190 512 190s89.1 17.9 121.6 50.4S684 316.1 684 362c0 45.9-17.9 89.1-50.4 121.6S557.9 534 512 534z"
906
+ />
907
+ </svg>
908
+ </div>
909
+ </div>
910
+ <div
911
+ class="memori-media-widget"
912
+ />
913
+ <div
914
+ class="memori-chat--bubble-container"
915
+ >
916
+ <picture
917
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
918
+ >
919
+ <source
920
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
921
+ />
922
+ <img
923
+ alt="Memori"
924
+ class="memori-chat--bubble-avatar-img"
925
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
926
+ />
927
+ </picture>
928
+ <div
929
+ class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
930
+ >
931
+ <p>
932
+ Mi dispiace, le mie risposte sono limitate. Devi farmi le domande giuste. C'è altro che vuoi sapere?
933
+ </p>
934
+ </div>
935
+ </div>
936
+ <div
937
+ class="memori-media-widget"
938
+ />
939
+ <div
940
+ class="memori-chat--bubble-container memori-chat--bubble-from-user"
941
+ >
942
+ <div
943
+ class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
944
+ >
945
+ <p>
946
+ Come faccio a fare delle cose con questa cosa?
947
+ </p>
948
+ </div>
949
+ <div
950
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x-15"
951
+ >
952
+ <svg
953
+ aria-hidden="true"
954
+ focusable="false"
955
+ role="img"
956
+ viewBox="0 0 1024 1024"
957
+ xmlns="http://www.w3.org/2000/svg"
958
+ >
959
+ <path
960
+ d="M858.5 763.6a374 374 0 0 0-80.6-119.5 375.63 375.63 0 0 0-119.5-80.6c-.4-.2-.8-.3-1.2-.5C719.5 518 760 444.7 760 362c0-137-111-248-248-248S264 225 264 362c0 82.7 40.5 156 102.8 201.1-.4.2-.8.3-1.2.5-44.8 18.9-85 46-119.5 80.6a375.63 375.63 0 0 0-80.6 119.5A371.7 371.7 0 0 0 136 901.8a8 8 0 0 0 8 8.2h60c4.4 0 7.9-3.5 8-7.8 2-77.2 33-149.5 87.8-204.3 56.7-56.7 132-87.9 212.2-87.9s155.5 31.2 212.2 87.9C779 752.7 810 825 812 902.2c.1 4.4 3.6 7.8 8 7.8h60a8 8 0 0 0 8-8.2c-1-47.8-10.9-94.3-29.5-138.2zM512 534c-45.9 0-89.1-17.9-121.6-50.4S340 407.9 340 362c0-45.9 17.9-89.1 50.4-121.6S466.1 190 512 190s89.1 17.9 121.6 50.4S684 316.1 684 362c0 45.9-17.9 89.1-50.4 121.6S557.9 534 512 534z"
961
+ />
962
+ </svg>
963
+ </div>
964
+ </div>
965
+ <div
966
+ class="memori-media-widget"
967
+ />
968
+ <div
969
+ class="memori-chat--bubble-container"
970
+ >
971
+ <picture
972
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
973
+ >
974
+ <source
975
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
976
+ />
977
+ <img
978
+ alt="Memori"
979
+ class="memori-chat--bubble-avatar-img"
980
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
981
+ />
982
+ </picture>
983
+ <div
984
+ class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
985
+ >
986
+ <p>
987
+ Ecco qui come.
988
+ </p>
989
+ </div>
990
+ </div>
991
+ <div
992
+ class="memori-media-widget"
993
+ >
994
+ <div
995
+ class="memori-link-items"
996
+ >
997
+ <div
998
+ class="memori-link-items--grid"
999
+ >
1000
+ <div
1001
+ class="memori-link-item ease-out duration-500 delay-0 opacity-0 scale-95"
1002
+ >
1003
+ <a
1004
+ class="memori-link-item--link"
1005
+ href="https://memori.ai"
1006
+ rel="noopener noreferrer"
1007
+ target="_blank"
1008
+ >
1009
+ <div
1010
+ class="memori-card memori-link-item--card memori-card--with-cover memori-card--hoverable"
1011
+ >
1012
+ <div
1013
+ class="memori-spin"
1014
+ >
1015
+ <div
1016
+ class="memori-card--cover"
1017
+ >
1018
+ <div
1019
+ class="memori-link-item--card-cover-icon"
1020
+ >
1021
+ <svg
1022
+ aria-hidden="true"
1023
+ class="memori-link-item--icon"
1024
+ focusable="false"
1025
+ role="img"
1026
+ viewBox="0 0 1024 1024"
1027
+ xmlns="http://www.w3.org/2000/svg"
1028
+ >
1029
+ <path
1030
+ d="M574 665.4a8.03 8.03 0 0 0-11.3 0L446.5 781.6c-53.8 53.8-144.6 59.5-204 0-59.5-59.5-53.8-150.2 0-204l116.2-116.2c3.1-3.1 3.1-8.2 0-11.3l-39.8-39.8a8.03 8.03 0 0 0-11.3 0L191.4 526.5c-84.6 84.6-84.6 221.5 0 306s221.5 84.6 306 0l116.2-116.2c3.1-3.1 3.1-8.2 0-11.3L574 665.4zm258.6-474c-84.6-84.6-221.5-84.6-306 0L410.3 307.6a8.03 8.03 0 0 0 0 11.3l39.7 39.7c3.1 3.1 8.2 3.1 11.3 0l116.2-116.2c53.8-53.8 144.6-59.5 204 0 59.5 59.5 53.8 150.2 0 204L665.3 562.6a8.03 8.03 0 0 0 0 11.3l39.8 39.8c3.1 3.1 8.2 3.1 11.3 0l116.2-116.2c84.5-84.6 84.5-221.5 0-306.1zM610.1 372.3a8.03 8.03 0 0 0-11.3 0L372.3 598.7a8.03 8.03 0 0 0 0 11.3l39.6 39.6c3.1 3.1 8.2 3.1 11.3 0l226.4-226.4c3.1-3.1 3.1-8.2 0-11.3l-39.5-39.6z"
1031
+ />
1032
+ </svg>
1033
+ </div>
1034
+ </div>
1035
+ <div
1036
+ class="memori-card--content"
1037
+ >
1038
+ <h3
1039
+ class="memori-card--title"
1040
+ >
1041
+ Link
1042
+ </h3>
1043
+ <div
1044
+ class="memori-card--children"
1045
+ />
1046
+ </div>
1047
+ <div
1048
+ class="memori-spin--spinner"
1049
+ >
1050
+ <svg
1051
+ aria-hidden="true"
1052
+ class="memori-loading-icon"
1053
+ focusable="false"
1054
+ role="img"
1055
+ viewBox="0 0 1024 1024"
1056
+ xmlns="http://www.w3.org/2000/svg"
1057
+ >
1058
+ <path
1059
+ d="M988 548c-19.9 0-36-16.1-36-36 0-59.4-11.6-117-34.6-171.3a440.45 440.45 0 00-94.3-139.9 437.71 437.71 0 00-139.9-94.3C629 83.6 571.4 72 512 72c-19.9 0-36-16.1-36-36s16.1-36 36-36c69.1 0 136.2 13.5 199.3 40.3C772.3 66 827 103 874 150c47 47 83.9 101.8 109.7 162.7 26.7 63.1 40.2 130.2 40.2 199.3.1 19.9-16 36-35.9 36z"
1060
+ />
1061
+ </svg>
1062
+ </div>
1063
+ </div>
1064
+ </div>
1065
+ </a>
1066
+ </div>
1067
+ </div>
1068
+ </div>
1069
+ </div>
1070
+ <div
1071
+ class="memori-chat--bubble-container memori-chat--bubble-from-user"
1072
+ >
1073
+ <div
1074
+ class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
1075
+ >
1076
+ <p>
1077
+ Ah, grazie! Ciao!
1078
+ </p>
1079
+ </div>
1080
+ <div
1081
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x-15"
1082
+ >
1083
+ <svg
1084
+ aria-hidden="true"
1085
+ focusable="false"
1086
+ role="img"
1087
+ viewBox="0 0 1024 1024"
1088
+ xmlns="http://www.w3.org/2000/svg"
1089
+ >
1090
+ <path
1091
+ d="M858.5 763.6a374 374 0 0 0-80.6-119.5 375.63 375.63 0 0 0-119.5-80.6c-.4-.2-.8-.3-1.2-.5C719.5 518 760 444.7 760 362c0-137-111-248-248-248S264 225 264 362c0 82.7 40.5 156 102.8 201.1-.4.2-.8.3-1.2.5-44.8 18.9-85 46-119.5 80.6a375.63 375.63 0 0 0-80.6 119.5A371.7 371.7 0 0 0 136 901.8a8 8 0 0 0 8 8.2h60c4.4 0 7.9-3.5 8-7.8 2-77.2 33-149.5 87.8-204.3 56.7-56.7 132-87.9 212.2-87.9s155.5 31.2 212.2 87.9C779 752.7 810 825 812 902.2c.1 4.4 3.6 7.8 8 7.8h60a8 8 0 0 0 8-8.2c-1-47.8-10.9-94.3-29.5-138.2zM512 534c-45.9 0-89.1-17.9-121.6-50.4S340 407.9 340 362c0-45.9 17.9-89.1 50.4-121.6S466.1 190 512 190s89.1 17.9 121.6 50.4S684 316.1 684 362c0 45.9-17.9 89.1-50.4 121.6S557.9 534 512 534z"
1092
+ />
1093
+ </svg>
1094
+ </div>
1095
+ </div>
1096
+ <div
1097
+ class="memori-media-widget"
1098
+ />
1099
+ <div
1100
+ class="memori-chat--bubble-container"
1101
+ >
1102
+ <picture
1103
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
1104
+ >
1105
+ <source
1106
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
1107
+ />
1108
+ <img
1109
+ alt="Memori"
1110
+ class="memori-chat--bubble-avatar-img"
1111
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
1112
+ />
1113
+ </picture>
1114
+ <div
1115
+ class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
1116
+ >
1117
+ <p>
1118
+ Arrivederci.
1119
+ </p>
1120
+ </div>
1121
+ </div>
1122
+ <div
1123
+ class="memori-media-widget"
1124
+ />
1125
+ <div
1126
+ id="end-messages-ref"
1127
+ />
1128
+ </div>
1129
+ </div>
1130
+ <fieldset
1131
+ class="memori-chat-inputs"
1132
+ id="chat-fieldset"
1133
+ >
1134
+ <div
1135
+ class="memori-send-on-enter-menu"
1136
+ data-headlessui-state=""
1137
+ >
1138
+ <button
1139
+ aria-expanded="false"
1140
+ aria-haspopup="true"
1141
+ class="memori-button memori-button--circle memori-button--icon-only memori-share-button--button memori--conversation-button"
1142
+ data-headlessui-state=""
1143
+ id="headlessui-menu-button-:r0:"
1144
+ type="button"
1145
+ >
1146
+ <div
1147
+ class="memori-button--icon"
1148
+ >
1149
+
1150
+ </div>
1151
+ </button>
1152
+ </div>
1153
+ <div
1154
+ class="memori-chat-textarea"
1155
+ data-testid="chat-textarea"
1156
+ >
1157
+ <div
1158
+ class="memori-chat-textarea--inner"
1159
+ >
1160
+ <textarea
1161
+ class="memori-chat-textarea--input"
1162
+ />
1163
+ <div
1164
+ class="memori-chat-textarea--expand"
1165
+ >
1166
+ <button
1167
+ class="memori-chat-textarea--expand-button memori-button memori-button--ghost memori-button--rounded memori-button--icon-only"
1168
+ >
1169
+ <span
1170
+ class="memori-button--icon"
1171
+ >
1172
+ <svg
1173
+ aria-hidden="true"
1174
+ focusable="false"
1175
+ role="img"
1176
+ viewBox="0 0 1024 1024"
1177
+ xmlns="http://www.w3.org/2000/svg"
1178
+ >
1179
+ <path
1180
+ d="M855 160.1l-189.2 23.5c-6.6.8-9.3 8.8-4.7 13.5l54.7 54.7-153.5 153.5a8.03 8.03 0 0 0 0 11.3l45.1 45.1c3.1 3.1 8.2 3.1 11.3 0l153.6-153.6 54.7 54.7a7.94 7.94 0 0 0 13.5-4.7L863.9 169a7.9 7.9 0 0 0-8.9-8.9zM416.6 562.3a8.03 8.03 0 0 0-11.3 0L251.8 715.9l-54.7-54.7a7.94 7.94 0 0 0-13.5 4.7L160.1 855c-.6 5.2 3.7 9.5 8.9 8.9l189.2-23.5c6.6-.8 9.3-8.8 4.7-13.5l-54.7-54.7 153.6-153.6c3.1-3.1 3.1-8.2 0-11.3l-45.2-45z"
1181
+ />
1182
+ </svg>
1183
+ </span>
1184
+ </button>
1185
+ </div>
1186
+ </div>
1187
+ </div>
1188
+ <button
1189
+ class="memori--conversation-button memori-chat-inputs--send memori-button memori-button--circle memori-button--padded memori-button--icon-only"
1190
+ disabled=""
1191
+ title="send"
1192
+ >
1193
+ <span
1194
+ class="memori-button--icon"
1195
+ >
1196
+ <svg
1197
+ aria-hidden="true"
1198
+ focusable="false"
1199
+ role="img"
1200
+ viewBox="0 0 1024 1024"
1201
+ xmlns="http://www.w3.org/2000/svg"
1202
+ >
1203
+ <path
1204
+ d="M931.4 498.9L94.9 79.5c-3.4-1.7-7.3-2.1-11-1.2-8.5 2.1-13.8 10.7-11.7 19.3l86.2 352.2c1.3 5.3 5.2 9.6 10.4 11.3l147.7 50.7-147.6 50.7c-5.2 1.8-9.1 6-10.3 11.3L72.2 926.5c-.9 3.7-.5 7.6 1.2 10.9 3.9 7.9 13.5 11.1 21.5 7.2l836.5-417c3.1-1.5 5.6-4.1 7.2-7.1 3.9-8 .7-17.6-7.2-21.6zM170.8 826.3l50.3-205.6 295.2-101.3c2.3-.8 4.2-2.6 5-5 1.4-4.2-.8-8.7-5-10.2L221.1 403 171 198.2l628 314.9-628.2 313.2z"
1205
+ />
1206
+ </svg>
1207
+ </span>
1208
+ </button>
1209
+ </fieldset>
1210
+ </div>
1211
+ </div>
1212
+ `;
1213
+
1214
+ exports[`renders Chat with context vars unchanged 1`] = `
1215
+ <div>
1216
+ <div
1217
+ class="memori-chat--wrapper"
1218
+ data-memori-lang="IT"
1219
+ id="chat-wrapper"
1220
+ >
1221
+ <div
1222
+ class="memori-chat--history"
1223
+ >
1224
+ <div
1225
+ class="memori-chat--content"
1226
+ >
1227
+ <div
1228
+ class="memori-chat--cover"
1229
+ />
1230
+ <div
1231
+ class="memori-chat--bubble-container"
1232
+ >
1233
+ <picture
1234
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
1235
+ >
1236
+ <source
1237
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
1238
+ />
1239
+ <img
1240
+ alt="Memori"
1241
+ class="memori-chat--bubble-avatar-img"
1242
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
1243
+ />
1244
+ </picture>
1245
+ <div
1246
+ class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
1247
+ >
1248
+ <p>
1249
+ Ciao, io sono test, c'è qualcosa che vorresti chiedermi?
1250
+ </p>
1251
+ </div>
1252
+ </div>
1253
+ <div
1254
+ class="memori-media-widget"
1255
+ />
1256
+ <div
1257
+ class="memori-chat--bubble-container memori-chat--bubble-from-user"
1258
+ >
1259
+ <div
1260
+ class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
1261
+ >
1262
+ <p>
1263
+ Prova
1264
+ </p>
1265
+ </div>
1266
+ <div
1267
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x-15"
1268
+ >
1269
+ <svg
1270
+ aria-hidden="true"
1271
+ focusable="false"
1272
+ role="img"
1273
+ viewBox="0 0 1024 1024"
1274
+ xmlns="http://www.w3.org/2000/svg"
1275
+ >
1276
+ <path
1277
+ d="M858.5 763.6a374 374 0 0 0-80.6-119.5 375.63 375.63 0 0 0-119.5-80.6c-.4-.2-.8-.3-1.2-.5C719.5 518 760 444.7 760 362c0-137-111-248-248-248S264 225 264 362c0 82.7 40.5 156 102.8 201.1-.4.2-.8.3-1.2.5-44.8 18.9-85 46-119.5 80.6a375.63 375.63 0 0 0-80.6 119.5A371.7 371.7 0 0 0 136 901.8a8 8 0 0 0 8 8.2h60c4.4 0 7.9-3.5 8-7.8 2-77.2 33-149.5 87.8-204.3 56.7-56.7 132-87.9 212.2-87.9s155.5 31.2 212.2 87.9C779 752.7 810 825 812 902.2c.1 4.4 3.6 7.8 8 7.8h60a8 8 0 0 0 8-8.2c-1-47.8-10.9-94.3-29.5-138.2zM512 534c-45.9 0-89.1-17.9-121.6-50.4S340 407.9 340 362c0-45.9 17.9-89.1 50.4-121.6S466.1 190 512 190s89.1 17.9 121.6 50.4S684 316.1 684 362c0 45.9-17.9 89.1-50.4 121.6S557.9 534 512 534z"
1278
+ />
1279
+ </svg>
1280
+ </div>
1281
+ </div>
1282
+ <div
1283
+ class="memori-media-widget"
1284
+ />
1285
+ <div
1286
+ class="memori-chat--bubble-container"
1287
+ >
1288
+ <picture
1289
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
1290
+ >
1291
+ <source
1292
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
1293
+ />
1294
+ <img
1295
+ alt="Memori"
1296
+ class="memori-chat--bubble-avatar-img"
1297
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
1298
+ />
1299
+ </picture>
1300
+ <div
1301
+ class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
1302
+ >
1303
+ <p>
1304
+ Mi dispiace, le mie risposte sono limitate. Devi farmi le domande giuste. C'è altro che vuoi sapere?
1305
+ </p>
1306
+ </div>
1307
+ </div>
1308
+ <div
1309
+ class="memori-media-widget"
1310
+ />
1311
+ <div
1312
+ class="memori-chat--bubble-container memori-chat--bubble-from-user"
1313
+ >
1314
+ <div
1315
+ class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
1316
+ >
1317
+ <p>
1318
+ Come faccio a fare delle cose con questa cosa?
1319
+ </p>
1320
+ </div>
1321
+ <div
1322
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x-15"
1323
+ >
1324
+ <svg
1325
+ aria-hidden="true"
1326
+ focusable="false"
1327
+ role="img"
1328
+ viewBox="0 0 1024 1024"
1329
+ xmlns="http://www.w3.org/2000/svg"
1330
+ >
1331
+ <path
1332
+ d="M858.5 763.6a374 374 0 0 0-80.6-119.5 375.63 375.63 0 0 0-119.5-80.6c-.4-.2-.8-.3-1.2-.5C719.5 518 760 444.7 760 362c0-137-111-248-248-248S264 225 264 362c0 82.7 40.5 156 102.8 201.1-.4.2-.8.3-1.2.5-44.8 18.9-85 46-119.5 80.6a375.63 375.63 0 0 0-80.6 119.5A371.7 371.7 0 0 0 136 901.8a8 8 0 0 0 8 8.2h60c4.4 0 7.9-3.5 8-7.8 2-77.2 33-149.5 87.8-204.3 56.7-56.7 132-87.9 212.2-87.9s155.5 31.2 212.2 87.9C779 752.7 810 825 812 902.2c.1 4.4 3.6 7.8 8 7.8h60a8 8 0 0 0 8-8.2c-1-47.8-10.9-94.3-29.5-138.2zM512 534c-45.9 0-89.1-17.9-121.6-50.4S340 407.9 340 362c0-45.9 17.9-89.1 50.4-121.6S466.1 190 512 190s89.1 17.9 121.6 50.4S684 316.1 684 362c0 45.9-17.9 89.1-50.4 121.6S557.9 534 512 534z"
1333
+ />
1334
+ </svg>
1335
+ </div>
1336
+ </div>
1337
+ <div
1338
+ class="memori-media-widget"
1339
+ />
1340
+ <div
1341
+ class="memori-chat--bubble-container"
1342
+ >
1343
+ <picture
1344
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
1345
+ >
1346
+ <source
1347
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
1348
+ />
1349
+ <img
1350
+ alt="Memori"
1351
+ class="memori-chat--bubble-avatar-img"
1352
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
1353
+ />
1354
+ </picture>
1355
+ <div
1356
+ class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
1357
+ >
1358
+ <p>
1359
+ Ecco qui come.
1360
+ </p>
1361
+ </div>
1362
+ </div>
1363
+ <div
1364
+ class="memori-chat--context-vars"
1365
+ >
1366
+ <div
1367
+ class="memori-chat--context-tag"
1368
+ >
1369
+ <span
1370
+ class="memori-chat--context-tag-text"
1371
+ >
1372
+ TEST
1373
+ :
1374
+ test
1375
+ </span>
1376
+ </div>
1377
+ </div>
1378
+ <div
1379
+ class="memori-media-widget"
1380
+ >
1381
+ <div
1382
+ class="memori-link-items"
1383
+ >
1384
+ <div
1385
+ class="memori-link-items--grid"
1386
+ >
1387
+ <div
1388
+ class="memori-link-item ease-out duration-500 delay-0 opacity-0 scale-95"
1389
+ >
1390
+ <a
1391
+ class="memori-link-item--link"
1392
+ href="https://memori.ai"
1393
+ rel="noopener noreferrer"
1394
+ target="_blank"
1395
+ >
1396
+ <div
1397
+ class="memori-card memori-link-item--card memori-card--with-cover memori-card--hoverable"
1398
+ >
1399
+ <div
1400
+ class="memori-spin"
1401
+ >
1402
+ <div
1403
+ class="memori-card--cover"
1404
+ >
1405
+ <div
1406
+ class="memori-link-item--card-cover-icon"
1407
+ >
1408
+ <svg
1409
+ aria-hidden="true"
1410
+ class="memori-link-item--icon"
1411
+ focusable="false"
1412
+ role="img"
1413
+ viewBox="0 0 1024 1024"
1414
+ xmlns="http://www.w3.org/2000/svg"
1415
+ >
1416
+ <path
1417
+ d="M574 665.4a8.03 8.03 0 0 0-11.3 0L446.5 781.6c-53.8 53.8-144.6 59.5-204 0-59.5-59.5-53.8-150.2 0-204l116.2-116.2c3.1-3.1 3.1-8.2 0-11.3l-39.8-39.8a8.03 8.03 0 0 0-11.3 0L191.4 526.5c-84.6 84.6-84.6 221.5 0 306s221.5 84.6 306 0l116.2-116.2c3.1-3.1 3.1-8.2 0-11.3L574 665.4zm258.6-474c-84.6-84.6-221.5-84.6-306 0L410.3 307.6a8.03 8.03 0 0 0 0 11.3l39.7 39.7c3.1 3.1 8.2 3.1 11.3 0l116.2-116.2c53.8-53.8 144.6-59.5 204 0 59.5 59.5 53.8 150.2 0 204L665.3 562.6a8.03 8.03 0 0 0 0 11.3l39.8 39.8c3.1 3.1 8.2 3.1 11.3 0l116.2-116.2c84.5-84.6 84.5-221.5 0-306.1zM610.1 372.3a8.03 8.03 0 0 0-11.3 0L372.3 598.7a8.03 8.03 0 0 0 0 11.3l39.6 39.6c3.1 3.1 8.2 3.1 11.3 0l226.4-226.4c3.1-3.1 3.1-8.2 0-11.3l-39.5-39.6z"
1418
+ />
1419
+ </svg>
1420
+ </div>
1421
+ </div>
1422
+ <div
1423
+ class="memori-card--content"
1424
+ >
1425
+ <h3
1426
+ class="memori-card--title"
1427
+ >
1428
+ Link
1429
+ </h3>
1430
+ <div
1431
+ class="memori-card--children"
1432
+ />
1433
+ </div>
1434
+ <div
1435
+ class="memori-spin--spinner"
1436
+ >
1437
+ <svg
1438
+ aria-hidden="true"
1439
+ class="memori-loading-icon"
1440
+ focusable="false"
1441
+ role="img"
1442
+ viewBox="0 0 1024 1024"
1443
+ xmlns="http://www.w3.org/2000/svg"
1444
+ >
1445
+ <path
1446
+ d="M988 548c-19.9 0-36-16.1-36-36 0-59.4-11.6-117-34.6-171.3a440.45 440.45 0 00-94.3-139.9 437.71 437.71 0 00-139.9-94.3C629 83.6 571.4 72 512 72c-19.9 0-36-16.1-36-36s16.1-36 36-36c69.1 0 136.2 13.5 199.3 40.3C772.3 66 827 103 874 150c47 47 83.9 101.8 109.7 162.7 26.7 63.1 40.2 130.2 40.2 199.3.1 19.9-16 36-35.9 36z"
1447
+ />
1448
+ </svg>
1449
+ </div>
1450
+ </div>
1451
+ </div>
1452
+ </a>
1453
+ </div>
1454
+ </div>
1455
+ </div>
1456
+ </div>
1457
+ <div
1458
+ class="memori-chat--bubble-container memori-chat--bubble-from-user"
1459
+ >
1460
+ <div
1461
+ class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
1462
+ >
1463
+ <p>
1464
+ Ah, grazie! Ciao!
1465
+ </p>
1466
+ </div>
1467
+ <div
1468
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x-15"
1469
+ >
1470
+ <svg
1471
+ aria-hidden="true"
1472
+ focusable="false"
1473
+ role="img"
1474
+ viewBox="0 0 1024 1024"
1475
+ xmlns="http://www.w3.org/2000/svg"
1476
+ >
1477
+ <path
1478
+ d="M858.5 763.6a374 374 0 0 0-80.6-119.5 375.63 375.63 0 0 0-119.5-80.6c-.4-.2-.8-.3-1.2-.5C719.5 518 760 444.7 760 362c0-137-111-248-248-248S264 225 264 362c0 82.7 40.5 156 102.8 201.1-.4.2-.8.3-1.2.5-44.8 18.9-85 46-119.5 80.6a375.63 375.63 0 0 0-80.6 119.5A371.7 371.7 0 0 0 136 901.8a8 8 0 0 0 8 8.2h60c4.4 0 7.9-3.5 8-7.8 2-77.2 33-149.5 87.8-204.3 56.7-56.7 132-87.9 212.2-87.9s155.5 31.2 212.2 87.9C779 752.7 810 825 812 902.2c.1 4.4 3.6 7.8 8 7.8h60a8 8 0 0 0 8-8.2c-1-47.8-10.9-94.3-29.5-138.2zM512 534c-45.9 0-89.1-17.9-121.6-50.4S340 407.9 340 362c0-45.9 17.9-89.1 50.4-121.6S466.1 190 512 190s89.1 17.9 121.6 50.4S684 316.1 684 362c0 45.9-17.9 89.1-50.4 121.6S557.9 534 512 534z"
1479
+ />
1480
+ </svg>
1481
+ </div>
1482
+ </div>
1483
+ <div
1484
+ class="memori-media-widget"
1485
+ />
1486
+ <div
1487
+ class="memori-chat--bubble-container"
1488
+ >
1489
+ <picture
1490
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
1491
+ >
1492
+ <source
1493
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
1494
+ />
1495
+ <img
1496
+ alt="Memori"
1497
+ class="memori-chat--bubble-avatar-img"
1498
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
1499
+ />
1500
+ </picture>
1501
+ <div
1502
+ class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
1503
+ >
1504
+ <p>
1505
+ Arrivederci.
1506
+ </p>
1507
+ </div>
1508
+ </div>
1509
+ <div
1510
+ class="memori-chat--context-vars"
1511
+ >
1512
+ <div
1513
+ class="memori-chat--context-tag"
1514
+ >
1515
+ <span
1516
+ class="memori-chat--context-tag-text"
1517
+ >
1518
+ TEST
1519
+ :
1520
+ test
1521
+ </span>
1522
+ </div>
1523
+ </div>
1524
+ <div
1525
+ class="memori-media-widget"
1526
+ />
1527
+ <div
1528
+ id="end-messages-ref"
1529
+ />
1530
+ </div>
1531
+ </div>
1532
+ <fieldset
1533
+ class="memori-chat-inputs"
1534
+ id="chat-fieldset"
1535
+ >
1536
+ <div
1537
+ class="memori-send-on-enter-menu"
1538
+ data-headlessui-state=""
1539
+ >
1540
+ <button
1541
+ aria-expanded="false"
1542
+ aria-haspopup="true"
1543
+ class="memori-button memori-button--circle memori-button--icon-only memori-share-button--button memori--conversation-button"
1544
+ data-headlessui-state=""
1545
+ id="headlessui-menu-button-:ra:"
1546
+ type="button"
1547
+ >
1548
+ <div
1549
+ class="memori-button--icon"
1550
+ >
1551
+
1552
+ </div>
1553
+ </button>
1554
+ </div>
1555
+ <div
1556
+ class="memori-chat-textarea"
1557
+ data-testid="chat-textarea"
1558
+ >
1559
+ <div
1560
+ class="memori-chat-textarea--inner"
1561
+ >
1562
+ <textarea
1563
+ class="memori-chat-textarea--input"
1564
+ />
1565
+ <div
1566
+ class="memori-chat-textarea--expand"
1567
+ >
1568
+ <button
1569
+ class="memori-chat-textarea--expand-button memori-button memori-button--ghost memori-button--rounded memori-button--icon-only"
1570
+ >
1571
+ <span
1572
+ class="memori-button--icon"
1573
+ >
1574
+ <svg
1575
+ aria-hidden="true"
1576
+ focusable="false"
1577
+ role="img"
1578
+ viewBox="0 0 1024 1024"
1579
+ xmlns="http://www.w3.org/2000/svg"
1580
+ >
1581
+ <path
1582
+ d="M855 160.1l-189.2 23.5c-6.6.8-9.3 8.8-4.7 13.5l54.7 54.7-153.5 153.5a8.03 8.03 0 0 0 0 11.3l45.1 45.1c3.1 3.1 8.2 3.1 11.3 0l153.6-153.6 54.7 54.7a7.94 7.94 0 0 0 13.5-4.7L863.9 169a7.9 7.9 0 0 0-8.9-8.9zM416.6 562.3a8.03 8.03 0 0 0-11.3 0L251.8 715.9l-54.7-54.7a7.94 7.94 0 0 0-13.5 4.7L160.1 855c-.6 5.2 3.7 9.5 8.9 8.9l189.2-23.5c6.6-.8 9.3-8.8 4.7-13.5l-54.7-54.7 153.6-153.6c3.1-3.1 3.1-8.2 0-11.3l-45.2-45z"
1583
+ />
1584
+ </svg>
1585
+ </span>
1586
+ </button>
1587
+ </div>
1588
+ </div>
1589
+ </div>
1590
+ <button
1591
+ class="memori--conversation-button memori-chat-inputs--send memori-button memori-button--circle memori-button--padded memori-button--icon-only"
1592
+ disabled=""
1593
+ title="send"
1594
+ >
1595
+ <span
1596
+ class="memori-button--icon"
1597
+ >
1598
+ <svg
1599
+ aria-hidden="true"
1600
+ focusable="false"
1601
+ role="img"
1602
+ viewBox="0 0 1024 1024"
1603
+ xmlns="http://www.w3.org/2000/svg"
1604
+ >
1605
+ <path
1606
+ d="M931.4 498.9L94.9 79.5c-3.4-1.7-7.3-2.1-11-1.2-8.5 2.1-13.8 10.7-11.7 19.3l86.2 352.2c1.3 5.3 5.2 9.6 10.4 11.3l147.7 50.7-147.6 50.7c-5.2 1.8-9.1 6-10.3 11.3L72.2 926.5c-.9 3.7-.5 7.6 1.2 10.9 3.9 7.9 13.5 11.1 21.5 7.2l836.5-417c3.1-1.5 5.6-4.1 7.2-7.1 3.9-8 .7-17.6-7.2-21.6zM170.8 826.3l50.3-205.6 295.2-101.3c2.3-.8 4.2-2.6 5-5 1.4-4.2-.8-8.7-5-10.2L221.1 403 171 198.2l628 314.9-628.2 313.2z"
1607
+ />
1608
+ </svg>
1609
+ </span>
1610
+ </button>
1611
+ </fieldset>
1612
+ </div>
1613
+ </div>
1614
+ `;
1615
+
1616
+ exports[`renders Chat with dates unchanged 1`] = `
1617
+ <div>
1618
+ <div
1619
+ class="memori-chat--wrapper"
1620
+ data-memori-lang="IT"
1621
+ id="chat-wrapper"
1622
+ >
1623
+ <div
1624
+ class="memori-chat--history"
1625
+ >
1626
+ <div
1627
+ class="memori-chat--content"
1628
+ >
1629
+ <div
1630
+ class="memori-chat--cover"
1631
+ />
1632
+ <div
1633
+ class="memori-chat--bubble-container"
1634
+ >
1635
+ <picture
1636
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
1637
+ >
1638
+ <source
1639
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
1640
+ />
1641
+ <img
1642
+ alt="Memori"
1643
+ class="memori-chat--bubble-avatar-img"
1644
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
1645
+ />
1646
+ </picture>
1647
+ <div
1648
+ class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
1649
+ >
1650
+ <p>
1651
+ Ciao, io sono test, c'è qualcosa che vorresti chiedermi?
1652
+ </p>
1653
+ </div>
1654
+ </div>
1655
+ <small
1656
+ class="memori-chat--timestamp text-left"
1657
+ >
1658
+ 13:00:00
1659
+ </small>
1660
+ <div
1661
+ class="memori-media-widget"
1662
+ />
1663
+ <div
1664
+ class="memori-chat--bubble-container memori-chat--bubble-from-user"
1665
+ >
1666
+ <div
1667
+ class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
1668
+ >
1669
+ <p>
1670
+ Prova
1671
+ </p>
1672
+ </div>
1673
+ <div
1674
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x-15"
1675
+ >
1676
+ <svg
1677
+ aria-hidden="true"
1678
+ focusable="false"
1679
+ role="img"
1680
+ viewBox="0 0 1024 1024"
1681
+ xmlns="http://www.w3.org/2000/svg"
1682
+ >
1683
+ <path
1684
+ d="M858.5 763.6a374 374 0 0 0-80.6-119.5 375.63 375.63 0 0 0-119.5-80.6c-.4-.2-.8-.3-1.2-.5C719.5 518 760 444.7 760 362c0-137-111-248-248-248S264 225 264 362c0 82.7 40.5 156 102.8 201.1-.4.2-.8.3-1.2.5-44.8 18.9-85 46-119.5 80.6a375.63 375.63 0 0 0-80.6 119.5A371.7 371.7 0 0 0 136 901.8a8 8 0 0 0 8 8.2h60c4.4 0 7.9-3.5 8-7.8 2-77.2 33-149.5 87.8-204.3 56.7-56.7 132-87.9 212.2-87.9s155.5 31.2 212.2 87.9C779 752.7 810 825 812 902.2c.1 4.4 3.6 7.8 8 7.8h60a8 8 0 0 0 8-8.2c-1-47.8-10.9-94.3-29.5-138.2zM512 534c-45.9 0-89.1-17.9-121.6-50.4S340 407.9 340 362c0-45.9 17.9-89.1 50.4-121.6S466.1 190 512 190s89.1 17.9 121.6 50.4S684 316.1 684 362c0 45.9-17.9 89.1-50.4 121.6S557.9 534 512 534z"
1685
+ />
1686
+ </svg>
1687
+ </div>
1688
+ </div>
1689
+ <small
1690
+ class="memori-chat--timestamp text-right"
1691
+ >
1692
+ 13:00:00
1693
+ </small>
1694
+ <div
1695
+ class="memori-media-widget"
1696
+ />
1697
+ <div
1698
+ class="memori-chat--bubble-container"
1699
+ >
1700
+ <picture
1701
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
1702
+ >
1703
+ <source
1704
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
1705
+ />
1706
+ <img
1707
+ alt="Memori"
1708
+ class="memori-chat--bubble-avatar-img"
1709
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
1710
+ />
1711
+ </picture>
1712
+ <div
1713
+ class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
1714
+ >
1715
+ <p>
1716
+ Mi dispiace, le mie risposte sono limitate. Devi farmi le domande giuste. C'è altro che vuoi sapere?
1717
+ </p>
1718
+ </div>
1719
+ </div>
1720
+ <small
1721
+ class="memori-chat--timestamp text-left"
1722
+ >
1723
+ 13:00:00
1724
+ </small>
1725
+ <div
1726
+ class="memori-media-widget"
1727
+ />
1728
+ <div
1729
+ class="memori-chat--bubble-container memori-chat--bubble-from-user"
1730
+ >
1731
+ <div
1732
+ class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
1733
+ >
1734
+ <p>
1735
+ Come faccio a fare delle cose con questa cosa?
1736
+ </p>
1737
+ </div>
1738
+ <div
1739
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x-15"
1740
+ >
1741
+ <svg
1742
+ aria-hidden="true"
1743
+ focusable="false"
1744
+ role="img"
1745
+ viewBox="0 0 1024 1024"
1746
+ xmlns="http://www.w3.org/2000/svg"
1747
+ >
1748
+ <path
1749
+ d="M858.5 763.6a374 374 0 0 0-80.6-119.5 375.63 375.63 0 0 0-119.5-80.6c-.4-.2-.8-.3-1.2-.5C719.5 518 760 444.7 760 362c0-137-111-248-248-248S264 225 264 362c0 82.7 40.5 156 102.8 201.1-.4.2-.8.3-1.2.5-44.8 18.9-85 46-119.5 80.6a375.63 375.63 0 0 0-80.6 119.5A371.7 371.7 0 0 0 136 901.8a8 8 0 0 0 8 8.2h60c4.4 0 7.9-3.5 8-7.8 2-77.2 33-149.5 87.8-204.3 56.7-56.7 132-87.9 212.2-87.9s155.5 31.2 212.2 87.9C779 752.7 810 825 812 902.2c.1 4.4 3.6 7.8 8 7.8h60a8 8 0 0 0 8-8.2c-1-47.8-10.9-94.3-29.5-138.2zM512 534c-45.9 0-89.1-17.9-121.6-50.4S340 407.9 340 362c0-45.9 17.9-89.1 50.4-121.6S466.1 190 512 190s89.1 17.9 121.6 50.4S684 316.1 684 362c0 45.9-17.9 89.1-50.4 121.6S557.9 534 512 534z"
1750
+ />
1751
+ </svg>
1752
+ </div>
1753
+ </div>
1754
+ <small
1755
+ class="memori-chat--timestamp text-right"
1756
+ >
1757
+ 13:00:00
1758
+ </small>
1759
+ <div
1760
+ class="memori-media-widget"
1761
+ />
1762
+ <div
1763
+ class="memori-chat--bubble-container"
1764
+ >
1765
+ <picture
1766
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
1767
+ >
1768
+ <source
1769
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
1770
+ />
1771
+ <img
1772
+ alt="Memori"
1773
+ class="memori-chat--bubble-avatar-img"
1774
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
1775
+ />
1776
+ </picture>
1777
+ <div
1778
+ class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
1779
+ >
1780
+ <p>
1781
+ Ecco qui come.
1782
+ </p>
1783
+ </div>
1784
+ </div>
1785
+ <small
1786
+ class="memori-chat--timestamp text-left"
1787
+ >
1788
+ 13:00:00
1789
+ </small>
1790
+ <div
1791
+ class="memori-media-widget"
1792
+ >
1793
+ <div
1794
+ class="memori-link-items"
1795
+ >
1796
+ <div
1797
+ class="memori-link-items--grid"
1798
+ >
1799
+ <div
1800
+ class="memori-link-item ease-out duration-500 delay-0 opacity-0 scale-95"
1801
+ >
1802
+ <a
1803
+ class="memori-link-item--link"
1804
+ href="https://memori.ai"
1805
+ rel="noopener noreferrer"
1806
+ target="_blank"
1807
+ >
1808
+ <div
1809
+ class="memori-card memori-link-item--card memori-card--with-cover memori-card--hoverable"
1810
+ >
1811
+ <div
1812
+ class="memori-spin"
1813
+ >
1814
+ <div
1815
+ class="memori-card--cover"
1816
+ >
1817
+ <div
1818
+ class="memori-link-item--card-cover-icon"
1819
+ >
1820
+ <svg
1821
+ aria-hidden="true"
1822
+ class="memori-link-item--icon"
1823
+ focusable="false"
1824
+ role="img"
1825
+ viewBox="0 0 1024 1024"
1826
+ xmlns="http://www.w3.org/2000/svg"
1827
+ >
1828
+ <path
1829
+ d="M574 665.4a8.03 8.03 0 0 0-11.3 0L446.5 781.6c-53.8 53.8-144.6 59.5-204 0-59.5-59.5-53.8-150.2 0-204l116.2-116.2c3.1-3.1 3.1-8.2 0-11.3l-39.8-39.8a8.03 8.03 0 0 0-11.3 0L191.4 526.5c-84.6 84.6-84.6 221.5 0 306s221.5 84.6 306 0l116.2-116.2c3.1-3.1 3.1-8.2 0-11.3L574 665.4zm258.6-474c-84.6-84.6-221.5-84.6-306 0L410.3 307.6a8.03 8.03 0 0 0 0 11.3l39.7 39.7c3.1 3.1 8.2 3.1 11.3 0l116.2-116.2c53.8-53.8 144.6-59.5 204 0 59.5 59.5 53.8 150.2 0 204L665.3 562.6a8.03 8.03 0 0 0 0 11.3l39.8 39.8c3.1 3.1 8.2 3.1 11.3 0l116.2-116.2c84.5-84.6 84.5-221.5 0-306.1zM610.1 372.3a8.03 8.03 0 0 0-11.3 0L372.3 598.7a8.03 8.03 0 0 0 0 11.3l39.6 39.6c3.1 3.1 8.2 3.1 11.3 0l226.4-226.4c3.1-3.1 3.1-8.2 0-11.3l-39.5-39.6z"
1830
+ />
1831
+ </svg>
1832
+ </div>
1833
+ </div>
1834
+ <div
1835
+ class="memori-card--content"
1836
+ >
1837
+ <h3
1838
+ class="memori-card--title"
1839
+ >
1840
+ Link
1841
+ </h3>
1842
+ <div
1843
+ class="memori-card--children"
1844
+ />
1845
+ </div>
1846
+ <div
1847
+ class="memori-spin--spinner"
1848
+ >
1849
+ <svg
1850
+ aria-hidden="true"
1851
+ class="memori-loading-icon"
1852
+ focusable="false"
1853
+ role="img"
1854
+ viewBox="0 0 1024 1024"
1855
+ xmlns="http://www.w3.org/2000/svg"
1856
+ >
1857
+ <path
1858
+ d="M988 548c-19.9 0-36-16.1-36-36 0-59.4-11.6-117-34.6-171.3a440.45 440.45 0 00-94.3-139.9 437.71 437.71 0 00-139.9-94.3C629 83.6 571.4 72 512 72c-19.9 0-36-16.1-36-36s16.1-36 36-36c69.1 0 136.2 13.5 199.3 40.3C772.3 66 827 103 874 150c47 47 83.9 101.8 109.7 162.7 26.7 63.1 40.2 130.2 40.2 199.3.1 19.9-16 36-35.9 36z"
1859
+ />
1860
+ </svg>
1861
+ </div>
1862
+ </div>
1863
+ </div>
1864
+ </a>
1865
+ </div>
1866
+ </div>
1867
+ </div>
1868
+ </div>
1869
+ <div
1870
+ class="memori-chat--bubble-container memori-chat--bubble-from-user"
1871
+ >
1872
+ <div
1873
+ class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
1874
+ >
1875
+ <p>
1876
+ Ah, grazie! Ciao!
1877
+ </p>
1878
+ </div>
1879
+ <div
1880
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x-15"
1881
+ >
1882
+ <svg
1883
+ aria-hidden="true"
1884
+ focusable="false"
1885
+ role="img"
1886
+ viewBox="0 0 1024 1024"
1887
+ xmlns="http://www.w3.org/2000/svg"
1888
+ >
1889
+ <path
1890
+ d="M858.5 763.6a374 374 0 0 0-80.6-119.5 375.63 375.63 0 0 0-119.5-80.6c-.4-.2-.8-.3-1.2-.5C719.5 518 760 444.7 760 362c0-137-111-248-248-248S264 225 264 362c0 82.7 40.5 156 102.8 201.1-.4.2-.8.3-1.2.5-44.8 18.9-85 46-119.5 80.6a375.63 375.63 0 0 0-80.6 119.5A371.7 371.7 0 0 0 136 901.8a8 8 0 0 0 8 8.2h60c4.4 0 7.9-3.5 8-7.8 2-77.2 33-149.5 87.8-204.3 56.7-56.7 132-87.9 212.2-87.9s155.5 31.2 212.2 87.9C779 752.7 810 825 812 902.2c.1 4.4 3.6 7.8 8 7.8h60a8 8 0 0 0 8-8.2c-1-47.8-10.9-94.3-29.5-138.2zM512 534c-45.9 0-89.1-17.9-121.6-50.4S340 407.9 340 362c0-45.9 17.9-89.1 50.4-121.6S466.1 190 512 190s89.1 17.9 121.6 50.4S684 316.1 684 362c0 45.9-17.9 89.1-50.4 121.6S557.9 534 512 534z"
1891
+ />
1892
+ </svg>
1893
+ </div>
1894
+ </div>
1895
+ <small
1896
+ class="memori-chat--timestamp text-right"
1897
+ >
1898
+ 13:00:00
1899
+ </small>
1900
+ <div
1901
+ class="memori-media-widget"
1902
+ />
1903
+ <div
1904
+ class="memori-chat--bubble-container"
1905
+ >
1906
+ <picture
1907
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
1908
+ >
1909
+ <source
1910
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
1911
+ />
1912
+ <img
1913
+ alt="Memori"
1914
+ class="memori-chat--bubble-avatar-img"
1915
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
1916
+ />
1917
+ </picture>
1918
+ <div
1919
+ class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
1920
+ >
1921
+ <p>
1922
+ Arrivederci.
1923
+ </p>
1924
+ </div>
1925
+ </div>
1926
+ <small
1927
+ class="memori-chat--timestamp text-left"
1928
+ >
1929
+ 13:00:00
1930
+ </small>
1931
+ <div
1932
+ class="memori-media-widget"
1933
+ />
1934
+ <div
1935
+ id="end-messages-ref"
1936
+ />
1937
+ </div>
1938
+ </div>
1939
+ <fieldset
1940
+ class="memori-chat-inputs"
1941
+ id="chat-fieldset"
1942
+ >
1943
+ <div
1944
+ class="memori-send-on-enter-menu"
1945
+ data-headlessui-state=""
1946
+ >
1947
+ <button
1948
+ aria-expanded="false"
1949
+ aria-haspopup="true"
1950
+ class="memori-button memori-button--circle memori-button--icon-only memori-share-button--button memori--conversation-button"
1951
+ data-headlessui-state=""
1952
+ id="headlessui-menu-button-:r8:"
1953
+ type="button"
1954
+ >
1955
+ <div
1956
+ class="memori-button--icon"
1957
+ >
1958
+
1959
+ </div>
1960
+ </button>
1961
+ </div>
1962
+ <div
1963
+ class="memori-chat-textarea"
1964
+ data-testid="chat-textarea"
1965
+ >
1966
+ <div
1967
+ class="memori-chat-textarea--inner"
1968
+ >
1969
+ <textarea
1970
+ class="memori-chat-textarea--input"
1971
+ />
1972
+ <div
1973
+ class="memori-chat-textarea--expand"
1974
+ >
1975
+ <button
1976
+ class="memori-chat-textarea--expand-button memori-button memori-button--ghost memori-button--rounded memori-button--icon-only"
1977
+ >
1978
+ <span
1979
+ class="memori-button--icon"
1980
+ >
1981
+ <svg
1982
+ aria-hidden="true"
1983
+ focusable="false"
1984
+ role="img"
1985
+ viewBox="0 0 1024 1024"
1986
+ xmlns="http://www.w3.org/2000/svg"
1987
+ >
1988
+ <path
1989
+ d="M855 160.1l-189.2 23.5c-6.6.8-9.3 8.8-4.7 13.5l54.7 54.7-153.5 153.5a8.03 8.03 0 0 0 0 11.3l45.1 45.1c3.1 3.1 8.2 3.1 11.3 0l153.6-153.6 54.7 54.7a7.94 7.94 0 0 0 13.5-4.7L863.9 169a7.9 7.9 0 0 0-8.9-8.9zM416.6 562.3a8.03 8.03 0 0 0-11.3 0L251.8 715.9l-54.7-54.7a7.94 7.94 0 0 0-13.5 4.7L160.1 855c-.6 5.2 3.7 9.5 8.9 8.9l189.2-23.5c6.6-.8 9.3-8.8 4.7-13.5l-54.7-54.7 153.6-153.6c3.1-3.1 3.1-8.2 0-11.3l-45.2-45z"
1990
+ />
1991
+ </svg>
1992
+ </span>
1993
+ </button>
1994
+ </div>
1995
+ </div>
1996
+ </div>
1997
+ <button
1998
+ class="memori--conversation-button memori-chat-inputs--send memori-button memori-button--circle memori-button--padded memori-button--icon-only"
1999
+ disabled=""
2000
+ title="send"
2001
+ >
2002
+ <span
2003
+ class="memori-button--icon"
2004
+ >
2005
+ <svg
2006
+ aria-hidden="true"
2007
+ focusable="false"
2008
+ role="img"
2009
+ viewBox="0 0 1024 1024"
2010
+ xmlns="http://www.w3.org/2000/svg"
2011
+ >
2012
+ <path
2013
+ d="M931.4 498.9L94.9 79.5c-3.4-1.7-7.3-2.1-11-1.2-8.5 2.1-13.8 10.7-11.7 19.3l86.2 352.2c1.3 5.3 5.2 9.6 10.4 11.3l147.7 50.7-147.6 50.7c-5.2 1.8-9.1 6-10.3 11.3L72.2 926.5c-.9 3.7-.5 7.6 1.2 10.9 3.9 7.9 13.5 11.1 21.5 7.2l836.5-417c3.1-1.5 5.6-4.1 7.2-7.1 3.9-8 .7-17.6-7.2-21.6zM170.8 826.3l50.3-205.6 295.2-101.3c2.3-.8 4.2-2.6 5-5 1.4-4.2-.8-8.7-5-10.2L221.1 403 171 198.2l628 314.9-628.2 313.2z"
2014
+ />
2015
+ </svg>
2016
+ </span>
2017
+ </button>
2018
+ </fieldset>
2019
+ </div>
2020
+ </div>
2021
+ `;
2022
+
2023
+ exports[`renders Chat with hints unchanged 1`] = `
2024
+ <div>
2025
+ <div
2026
+ class="memori-chat--wrapper"
2027
+ data-memori-lang="IT"
2028
+ id="chat-wrapper"
2029
+ >
2030
+ <div
2031
+ class="memori-chat--history"
2032
+ >
2033
+ <div
2034
+ class="memori-chat--content"
2035
+ >
2036
+ <div
2037
+ class="memori-chat--cover"
2038
+ />
2039
+ <div
2040
+ class="memori-chat--bubble-container"
2041
+ >
2042
+ <picture
2043
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
2044
+ >
2045
+ <source
2046
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
2047
+ />
2048
+ <img
2049
+ alt="Memori"
2050
+ class="memori-chat--bubble-avatar-img"
2051
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
2052
+ />
2053
+ </picture>
2054
+ <div
2055
+ class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
2056
+ >
2057
+ <p>
2058
+ Ciao, io sono test, c'è qualcosa che vorresti chiedermi?
2059
+ </p>
2060
+ </div>
2061
+ </div>
2062
+ <div
2063
+ class="memori-media-widget"
2064
+ />
2065
+ <div
2066
+ class="memori-chat--bubble-container memori-chat--bubble-from-user"
2067
+ >
2068
+ <div
2069
+ class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
2070
+ >
2071
+ <p>
2072
+ Prova
2073
+ </p>
2074
+ </div>
2075
+ <div
2076
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x-15"
2077
+ >
2078
+ <svg
2079
+ aria-hidden="true"
2080
+ focusable="false"
2081
+ role="img"
2082
+ viewBox="0 0 1024 1024"
2083
+ xmlns="http://www.w3.org/2000/svg"
2084
+ >
2085
+ <path
2086
+ d="M858.5 763.6a374 374 0 0 0-80.6-119.5 375.63 375.63 0 0 0-119.5-80.6c-.4-.2-.8-.3-1.2-.5C719.5 518 760 444.7 760 362c0-137-111-248-248-248S264 225 264 362c0 82.7 40.5 156 102.8 201.1-.4.2-.8.3-1.2.5-44.8 18.9-85 46-119.5 80.6a375.63 375.63 0 0 0-80.6 119.5A371.7 371.7 0 0 0 136 901.8a8 8 0 0 0 8 8.2h60c4.4 0 7.9-3.5 8-7.8 2-77.2 33-149.5 87.8-204.3 56.7-56.7 132-87.9 212.2-87.9s155.5 31.2 212.2 87.9C779 752.7 810 825 812 902.2c.1 4.4 3.6 7.8 8 7.8h60a8 8 0 0 0 8-8.2c-1-47.8-10.9-94.3-29.5-138.2zM512 534c-45.9 0-89.1-17.9-121.6-50.4S340 407.9 340 362c0-45.9 17.9-89.1 50.4-121.6S466.1 190 512 190s89.1 17.9 121.6 50.4S684 316.1 684 362c0 45.9-17.9 89.1-50.4 121.6S557.9 534 512 534z"
2087
+ />
2088
+ </svg>
2089
+ </div>
2090
+ </div>
2091
+ <div
2092
+ class="memori-media-widget"
2093
+ />
2094
+ <div
2095
+ class="memori-chat--bubble-container"
2096
+ >
2097
+ <picture
2098
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
2099
+ >
2100
+ <source
2101
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
2102
+ />
2103
+ <img
2104
+ alt="Memori"
2105
+ class="memori-chat--bubble-avatar-img"
2106
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
2107
+ />
2108
+ </picture>
2109
+ <div
2110
+ class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
2111
+ >
2112
+ <p>
2113
+ Mi dispiace, le mie risposte sono limitate. Devi farmi le domande giuste. C'è altro che vuoi sapere?
2114
+ </p>
2115
+ </div>
2116
+ </div>
2117
+ <div
2118
+ class="memori-media-widget"
2119
+ />
2120
+ <div
2121
+ class="memori-chat--bubble-container memori-chat--bubble-from-user"
2122
+ >
2123
+ <div
2124
+ class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
2125
+ >
2126
+ <p>
2127
+ Come faccio a fare delle cose con questa cosa?
2128
+ </p>
2129
+ </div>
2130
+ <div
2131
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x-15"
2132
+ >
2133
+ <svg
2134
+ aria-hidden="true"
2135
+ focusable="false"
2136
+ role="img"
2137
+ viewBox="0 0 1024 1024"
2138
+ xmlns="http://www.w3.org/2000/svg"
2139
+ >
2140
+ <path
2141
+ d="M858.5 763.6a374 374 0 0 0-80.6-119.5 375.63 375.63 0 0 0-119.5-80.6c-.4-.2-.8-.3-1.2-.5C719.5 518 760 444.7 760 362c0-137-111-248-248-248S264 225 264 362c0 82.7 40.5 156 102.8 201.1-.4.2-.8.3-1.2.5-44.8 18.9-85 46-119.5 80.6a375.63 375.63 0 0 0-80.6 119.5A371.7 371.7 0 0 0 136 901.8a8 8 0 0 0 8 8.2h60c4.4 0 7.9-3.5 8-7.8 2-77.2 33-149.5 87.8-204.3 56.7-56.7 132-87.9 212.2-87.9s155.5 31.2 212.2 87.9C779 752.7 810 825 812 902.2c.1 4.4 3.6 7.8 8 7.8h60a8 8 0 0 0 8-8.2c-1-47.8-10.9-94.3-29.5-138.2zM512 534c-45.9 0-89.1-17.9-121.6-50.4S340 407.9 340 362c0-45.9 17.9-89.1 50.4-121.6S466.1 190 512 190s89.1 17.9 121.6 50.4S684 316.1 684 362c0 45.9-17.9 89.1-50.4 121.6S557.9 534 512 534z"
2142
+ />
2143
+ </svg>
2144
+ </div>
2145
+ </div>
2146
+ <div
2147
+ class="memori-media-widget"
2148
+ />
2149
+ <div
2150
+ class="memori-chat--bubble-container"
2151
+ >
2152
+ <picture
2153
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
2154
+ >
2155
+ <source
2156
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
2157
+ />
2158
+ <img
2159
+ alt="Memori"
2160
+ class="memori-chat--bubble-avatar-img"
2161
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
2162
+ />
2163
+ </picture>
2164
+ <div
2165
+ class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
2166
+ >
2167
+ <p>
2168
+ Ecco qui come.
2169
+ </p>
2170
+ </div>
2171
+ </div>
2172
+ <div
2173
+ class="memori-media-widget"
2174
+ >
2175
+ <div
2176
+ class="memori-link-items"
2177
+ >
2178
+ <div
2179
+ class="memori-link-items--grid"
2180
+ >
2181
+ <div
2182
+ class="memori-link-item ease-out duration-500 delay-0 opacity-0 scale-95"
2183
+ >
2184
+ <a
2185
+ class="memori-link-item--link"
2186
+ href="https://memori.ai"
2187
+ rel="noopener noreferrer"
2188
+ target="_blank"
2189
+ >
2190
+ <div
2191
+ class="memori-card memori-link-item--card memori-card--with-cover memori-card--hoverable"
2192
+ >
2193
+ <div
2194
+ class="memori-spin"
2195
+ >
2196
+ <div
2197
+ class="memori-card--cover"
2198
+ >
2199
+ <div
2200
+ class="memori-link-item--card-cover-icon"
2201
+ >
2202
+ <svg
2203
+ aria-hidden="true"
2204
+ class="memori-link-item--icon"
2205
+ focusable="false"
2206
+ role="img"
2207
+ viewBox="0 0 1024 1024"
2208
+ xmlns="http://www.w3.org/2000/svg"
2209
+ >
2210
+ <path
2211
+ d="M574 665.4a8.03 8.03 0 0 0-11.3 0L446.5 781.6c-53.8 53.8-144.6 59.5-204 0-59.5-59.5-53.8-150.2 0-204l116.2-116.2c3.1-3.1 3.1-8.2 0-11.3l-39.8-39.8a8.03 8.03 0 0 0-11.3 0L191.4 526.5c-84.6 84.6-84.6 221.5 0 306s221.5 84.6 306 0l116.2-116.2c3.1-3.1 3.1-8.2 0-11.3L574 665.4zm258.6-474c-84.6-84.6-221.5-84.6-306 0L410.3 307.6a8.03 8.03 0 0 0 0 11.3l39.7 39.7c3.1 3.1 8.2 3.1 11.3 0l116.2-116.2c53.8-53.8 144.6-59.5 204 0 59.5 59.5 53.8 150.2 0 204L665.3 562.6a8.03 8.03 0 0 0 0 11.3l39.8 39.8c3.1 3.1 8.2 3.1 11.3 0l116.2-116.2c84.5-84.6 84.5-221.5 0-306.1zM610.1 372.3a8.03 8.03 0 0 0-11.3 0L372.3 598.7a8.03 8.03 0 0 0 0 11.3l39.6 39.6c3.1 3.1 8.2 3.1 11.3 0l226.4-226.4c3.1-3.1 3.1-8.2 0-11.3l-39.5-39.6z"
2212
+ />
2213
+ </svg>
2214
+ </div>
2215
+ </div>
2216
+ <div
2217
+ class="memori-card--content"
2218
+ >
2219
+ <h3
2220
+ class="memori-card--title"
2221
+ >
2222
+ Link
2223
+ </h3>
2224
+ <div
2225
+ class="memori-card--children"
2226
+ />
2227
+ </div>
2228
+ <div
2229
+ class="memori-spin--spinner"
2230
+ >
2231
+ <svg
2232
+ aria-hidden="true"
2233
+ class="memori-loading-icon"
2234
+ focusable="false"
2235
+ role="img"
2236
+ viewBox="0 0 1024 1024"
2237
+ xmlns="http://www.w3.org/2000/svg"
2238
+ >
2239
+ <path
2240
+ d="M988 548c-19.9 0-36-16.1-36-36 0-59.4-11.6-117-34.6-171.3a440.45 440.45 0 00-94.3-139.9 437.71 437.71 0 00-139.9-94.3C629 83.6 571.4 72 512 72c-19.9 0-36-16.1-36-36s16.1-36 36-36c69.1 0 136.2 13.5 199.3 40.3C772.3 66 827 103 874 150c47 47 83.9 101.8 109.7 162.7 26.7 63.1 40.2 130.2 40.2 199.3.1 19.9-16 36-35.9 36z"
2241
+ />
2242
+ </svg>
2243
+ </div>
2244
+ </div>
2245
+ </div>
2246
+ </a>
2247
+ </div>
2248
+ </div>
2249
+ </div>
2250
+ </div>
2251
+ <div
2252
+ class="memori-chat--bubble-container memori-chat--bubble-from-user"
2253
+ >
2254
+ <div
2255
+ class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
2256
+ >
2257
+ <p>
2258
+ Ah, grazie! Ciao!
2259
+ </p>
2260
+ </div>
2261
+ <div
2262
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x-15"
2263
+ >
2264
+ <svg
2265
+ aria-hidden="true"
2266
+ focusable="false"
2267
+ role="img"
2268
+ viewBox="0 0 1024 1024"
2269
+ xmlns="http://www.w3.org/2000/svg"
2270
+ >
2271
+ <path
2272
+ d="M858.5 763.6a374 374 0 0 0-80.6-119.5 375.63 375.63 0 0 0-119.5-80.6c-.4-.2-.8-.3-1.2-.5C719.5 518 760 444.7 760 362c0-137-111-248-248-248S264 225 264 362c0 82.7 40.5 156 102.8 201.1-.4.2-.8.3-1.2.5-44.8 18.9-85 46-119.5 80.6a375.63 375.63 0 0 0-80.6 119.5A371.7 371.7 0 0 0 136 901.8a8 8 0 0 0 8 8.2h60c4.4 0 7.9-3.5 8-7.8 2-77.2 33-149.5 87.8-204.3 56.7-56.7 132-87.9 212.2-87.9s155.5 31.2 212.2 87.9C779 752.7 810 825 812 902.2c.1 4.4 3.6 7.8 8 7.8h60a8 8 0 0 0 8-8.2c-1-47.8-10.9-94.3-29.5-138.2zM512 534c-45.9 0-89.1-17.9-121.6-50.4S340 407.9 340 362c0-45.9 17.9-89.1 50.4-121.6S466.1 190 512 190s89.1 17.9 121.6 50.4S684 316.1 684 362c0 45.9-17.9 89.1-50.4 121.6S557.9 534 512 534z"
2273
+ />
2274
+ </svg>
2275
+ </div>
2276
+ </div>
2277
+ <div
2278
+ class="memori-media-widget"
2279
+ />
2280
+ <div
2281
+ class="memori-chat--bubble-container"
2282
+ >
2283
+ <picture
2284
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
2285
+ >
2286
+ <source
2287
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
2288
+ />
2289
+ <img
2290
+ alt="Memori"
2291
+ class="memori-chat--bubble-avatar-img"
2292
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
2293
+ />
2294
+ </picture>
2295
+ <div
2296
+ class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
2297
+ >
2298
+ <p>
2299
+ Arrivederci.
2300
+ </p>
2301
+ </div>
2302
+ </div>
2303
+ <div
2304
+ class="memori-media-widget"
2305
+ />
2306
+ <div
2307
+ class="memori-media-widget"
2308
+ >
2309
+ <ul
2310
+ class="memori-media--hints"
2311
+ >
2312
+ <li
2313
+ class="ease-out duration-500 opacity-0 translate-y-1"
2314
+ >
2315
+ <button
2316
+ class="memori-media--hint memori-button memori-button--primary memori-button--rounded memori-button--padded"
2317
+ >
2318
+ Va bene
2319
+ </button>
2320
+ </li>
2321
+ <li
2322
+ class="ease-out duration-500 opacity-0 translate-y-1"
2323
+ >
2324
+ <button
2325
+ class="memori-media--hint memori-button memori-button--primary memori-button--rounded memori-button--padded"
2326
+ >
2327
+ No grazie
2328
+ </button>
2329
+ </li>
2330
+ </ul>
2331
+ </div>
2332
+ <div
2333
+ id="end-messages-ref"
2334
+ />
2335
+ </div>
2336
+ </div>
2337
+ <fieldset
2338
+ class="memori-chat-inputs"
2339
+ id="chat-fieldset"
2340
+ >
2341
+ <div
2342
+ class="memori-send-on-enter-menu"
2343
+ data-headlessui-state=""
2344
+ >
2345
+ <button
2346
+ aria-expanded="false"
2347
+ aria-haspopup="true"
2348
+ class="memori-button memori-button--circle memori-button--icon-only memori-share-button--button memori--conversation-button"
2349
+ data-headlessui-state=""
2350
+ id="headlessui-menu-button-:r4:"
2351
+ type="button"
2352
+ >
2353
+ <div
2354
+ class="memori-button--icon"
2355
+ >
2356
+
2357
+ </div>
2358
+ </button>
2359
+ </div>
2360
+ <div
2361
+ class="memori-chat-textarea"
2362
+ data-testid="chat-textarea"
2363
+ >
2364
+ <div
2365
+ class="memori-chat-textarea--inner"
2366
+ >
2367
+ <textarea
2368
+ class="memori-chat-textarea--input"
2369
+ />
2370
+ <div
2371
+ class="memori-chat-textarea--expand"
2372
+ >
2373
+ <button
2374
+ class="memori-chat-textarea--expand-button memori-button memori-button--ghost memori-button--rounded memori-button--icon-only"
2375
+ >
2376
+ <span
2377
+ class="memori-button--icon"
2378
+ >
2379
+ <svg
2380
+ aria-hidden="true"
2381
+ focusable="false"
2382
+ role="img"
2383
+ viewBox="0 0 1024 1024"
2384
+ xmlns="http://www.w3.org/2000/svg"
2385
+ >
2386
+ <path
2387
+ d="M855 160.1l-189.2 23.5c-6.6.8-9.3 8.8-4.7 13.5l54.7 54.7-153.5 153.5a8.03 8.03 0 0 0 0 11.3l45.1 45.1c3.1 3.1 8.2 3.1 11.3 0l153.6-153.6 54.7 54.7a7.94 7.94 0 0 0 13.5-4.7L863.9 169a7.9 7.9 0 0 0-8.9-8.9zM416.6 562.3a8.03 8.03 0 0 0-11.3 0L251.8 715.9l-54.7-54.7a7.94 7.94 0 0 0-13.5 4.7L160.1 855c-.6 5.2 3.7 9.5 8.9 8.9l189.2-23.5c6.6-.8 9.3-8.8 4.7-13.5l-54.7-54.7 153.6-153.6c3.1-3.1 3.1-8.2 0-11.3l-45.2-45z"
2388
+ />
2389
+ </svg>
2390
+ </span>
2391
+ </button>
2392
+ </div>
2393
+ </div>
2394
+ </div>
2395
+ <button
2396
+ class="memori--conversation-button memori-chat-inputs--send memori-button memori-button--circle memori-button--padded memori-button--icon-only"
2397
+ disabled=""
2398
+ title="send"
2399
+ >
2400
+ <span
2401
+ class="memori-button--icon"
2402
+ >
2403
+ <svg
2404
+ aria-hidden="true"
2405
+ focusable="false"
2406
+ role="img"
2407
+ viewBox="0 0 1024 1024"
2408
+ xmlns="http://www.w3.org/2000/svg"
2409
+ >
2410
+ <path
2411
+ d="M931.4 498.9L94.9 79.5c-3.4-1.7-7.3-2.1-11-1.2-8.5 2.1-13.8 10.7-11.7 19.3l86.2 352.2c1.3 5.3 5.2 9.6 10.4 11.3l147.7 50.7-147.6 50.7c-5.2 1.8-9.1 6-10.3 11.3L72.2 926.5c-.9 3.7-.5 7.6 1.2 10.9 3.9 7.9 13.5 11.1 21.5 7.2l836.5-417c3.1-1.5 5.6-4.1 7.2-7.1 3.9-8 .7-17.6-7.2-21.6zM170.8 826.3l50.3-205.6 295.2-101.3c2.3-.8 4.2-2.6 5-5 1.4-4.2-.8-8.7-5-10.2L221.1 403 171 198.2l628 314.9-628.2 313.2z"
2412
+ />
2413
+ </svg>
2414
+ </span>
2415
+ </button>
2416
+ </fieldset>
2417
+ </div>
2418
+ </div>
2419
+ `;
2420
+
2421
+ exports[`renders Chat with media unchanged 1`] = `
2422
+ <div>
2423
+ <div
2424
+ class="memori-chat--wrapper"
2425
+ data-memori-lang="IT"
2426
+ id="chat-wrapper"
2427
+ >
2428
+ <div
2429
+ class="memori-chat--history"
2430
+ >
2431
+ <div
2432
+ class="memori-chat--content"
2433
+ >
2434
+ <div
2435
+ class="memori-chat--cover"
2436
+ />
2437
+ <div
2438
+ class="memori-chat--bubble-container"
2439
+ >
2440
+ <picture
2441
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
2442
+ >
2443
+ <source
2444
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
2445
+ />
2446
+ <img
2447
+ alt="Memori"
2448
+ class="memori-chat--bubble-avatar-img"
2449
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
2450
+ />
2451
+ </picture>
2452
+ <div
2453
+ class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
2454
+ >
2455
+ <p>
2456
+ Ciao, io sono test, c'è qualcosa che vorresti chiedermi?
2457
+ </p>
2458
+ </div>
2459
+ </div>
2460
+ <div
2461
+ class="memori-media-widget"
2462
+ />
2463
+ <div
2464
+ class="memori-chat--bubble-container memori-chat--bubble-from-user"
2465
+ >
2466
+ <div
2467
+ class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
2468
+ >
2469
+ <p>
2470
+ Prova
2471
+ </p>
2472
+ </div>
2473
+ <div
2474
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x-15"
2475
+ >
2476
+ <svg
2477
+ aria-hidden="true"
2478
+ focusable="false"
2479
+ role="img"
2480
+ viewBox="0 0 1024 1024"
2481
+ xmlns="http://www.w3.org/2000/svg"
2482
+ >
2483
+ <path
2484
+ d="M858.5 763.6a374 374 0 0 0-80.6-119.5 375.63 375.63 0 0 0-119.5-80.6c-.4-.2-.8-.3-1.2-.5C719.5 518 760 444.7 760 362c0-137-111-248-248-248S264 225 264 362c0 82.7 40.5 156 102.8 201.1-.4.2-.8.3-1.2.5-44.8 18.9-85 46-119.5 80.6a375.63 375.63 0 0 0-80.6 119.5A371.7 371.7 0 0 0 136 901.8a8 8 0 0 0 8 8.2h60c4.4 0 7.9-3.5 8-7.8 2-77.2 33-149.5 87.8-204.3 56.7-56.7 132-87.9 212.2-87.9s155.5 31.2 212.2 87.9C779 752.7 810 825 812 902.2c.1 4.4 3.6 7.8 8 7.8h60a8 8 0 0 0 8-8.2c-1-47.8-10.9-94.3-29.5-138.2zM512 534c-45.9 0-89.1-17.9-121.6-50.4S340 407.9 340 362c0-45.9 17.9-89.1 50.4-121.6S466.1 190 512 190s89.1 17.9 121.6 50.4S684 316.1 684 362c0 45.9-17.9 89.1-50.4 121.6S557.9 534 512 534z"
2485
+ />
2486
+ </svg>
2487
+ </div>
2488
+ </div>
2489
+ <div
2490
+ class="memori-media-widget"
2491
+ />
2492
+ <div
2493
+ class="memori-chat--bubble-container"
2494
+ >
2495
+ <picture
2496
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
2497
+ >
2498
+ <source
2499
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
2500
+ />
2501
+ <img
2502
+ alt="Memori"
2503
+ class="memori-chat--bubble-avatar-img"
2504
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
2505
+ />
2506
+ </picture>
2507
+ <div
2508
+ class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
2509
+ >
2510
+ <p>
2511
+ Mi dispiace, le mie risposte sono limitate. Devi farmi le domande giuste. C'è altro che vuoi sapere?
2512
+ </p>
2513
+ </div>
2514
+ </div>
2515
+ <div
2516
+ class="memori-media-widget"
2517
+ />
2518
+ <div
2519
+ class="memori-chat--bubble-container memori-chat--bubble-from-user"
2520
+ >
2521
+ <div
2522
+ class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
2523
+ >
2524
+ <p>
2525
+ Come faccio a fare delle cose con questa cosa?
2526
+ </p>
2527
+ </div>
2528
+ <div
2529
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x-15"
2530
+ >
2531
+ <svg
2532
+ aria-hidden="true"
2533
+ focusable="false"
2534
+ role="img"
2535
+ viewBox="0 0 1024 1024"
2536
+ xmlns="http://www.w3.org/2000/svg"
2537
+ >
2538
+ <path
2539
+ d="M858.5 763.6a374 374 0 0 0-80.6-119.5 375.63 375.63 0 0 0-119.5-80.6c-.4-.2-.8-.3-1.2-.5C719.5 518 760 444.7 760 362c0-137-111-248-248-248S264 225 264 362c0 82.7 40.5 156 102.8 201.1-.4.2-.8.3-1.2.5-44.8 18.9-85 46-119.5 80.6a375.63 375.63 0 0 0-80.6 119.5A371.7 371.7 0 0 0 136 901.8a8 8 0 0 0 8 8.2h60c4.4 0 7.9-3.5 8-7.8 2-77.2 33-149.5 87.8-204.3 56.7-56.7 132-87.9 212.2-87.9s155.5 31.2 212.2 87.9C779 752.7 810 825 812 902.2c.1 4.4 3.6 7.8 8 7.8h60a8 8 0 0 0 8-8.2c-1-47.8-10.9-94.3-29.5-138.2zM512 534c-45.9 0-89.1-17.9-121.6-50.4S340 407.9 340 362c0-45.9 17.9-89.1 50.4-121.6S466.1 190 512 190s89.1 17.9 121.6 50.4S684 316.1 684 362c0 45.9-17.9 89.1-50.4 121.6S557.9 534 512 534z"
2540
+ />
2541
+ </svg>
2542
+ </div>
2543
+ </div>
2544
+ <div
2545
+ class="memori-media-widget"
2546
+ />
2547
+ <div
2548
+ class="memori-chat--bubble-container"
2549
+ >
2550
+ <picture
2551
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
2552
+ >
2553
+ <source
2554
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
2555
+ />
2556
+ <img
2557
+ alt="Memori"
2558
+ class="memori-chat--bubble-avatar-img"
2559
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
2560
+ />
2561
+ </picture>
2562
+ <div
2563
+ class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
2564
+ >
2565
+ <p>
2566
+ Ecco qui delle cose per te.
2567
+ </p>
2568
+ </div>
2569
+ </div>
2570
+ <div
2571
+ class="memori-media-widget"
2572
+ >
2573
+ <div
2574
+ class="memori-media-items"
2575
+ >
2576
+ <div
2577
+ class="memori-media-items--grid"
2578
+ >
2579
+ <div
2580
+ class="memori-media-item ease-out duration-500 delay-0 opacity-0 scale-95"
2581
+ >
2582
+ <a
2583
+ class="memori-media-item--link"
2584
+ href="https://picsum.photos/300/200?random=0"
2585
+ rel="noopener noreferrer"
2586
+ target="_blank"
2587
+ title="Image 0"
2588
+ >
2589
+ <div
2590
+ class="memori-card memori-media-item--card memori-media-item--image memori-card--with-cover memori-card--hoverable"
2591
+ >
2592
+ <div
2593
+ class="memori-spin"
2594
+ >
2595
+ <div
2596
+ class="memori-card--cover"
2597
+ >
2598
+ <picture
2599
+ class="memori-media-item--figure"
2600
+ >
2601
+ <source
2602
+ srcset="https://picsum.photos/300/200?random=0/131165be-9d1a-42fb-a3ce-e8f86d40c88f, /images/memoriAvatar.png, https://picsum.photos/300/200?random=0, "
2603
+ type="image/png"
2604
+ />
2605
+ <img
2606
+ alt="Image 0"
2607
+ src="data:image/png;base64,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"
2608
+ />
2609
+ <figcaption
2610
+ class="memori-media-item--figure-caption"
2611
+ >
2612
+ Image 0
2613
+ </figcaption>
2614
+ </picture>
2615
+ </div>
2616
+ <div
2617
+ class="memori-card--content"
2618
+ >
2619
+ <div
2620
+ class="memori-card--children"
2621
+ />
2622
+ </div>
2623
+ <div
2624
+ class="memori-spin--spinner"
2625
+ >
2626
+ <svg
2627
+ aria-hidden="true"
2628
+ class="memori-loading-icon"
2629
+ focusable="false"
2630
+ role="img"
2631
+ viewBox="0 0 1024 1024"
2632
+ xmlns="http://www.w3.org/2000/svg"
2633
+ >
2634
+ <path
2635
+ d="M988 548c-19.9 0-36-16.1-36-36 0-59.4-11.6-117-34.6-171.3a440.45 440.45 0 00-94.3-139.9 437.71 437.71 0 00-139.9-94.3C629 83.6 571.4 72 512 72c-19.9 0-36-16.1-36-36s16.1-36 36-36c69.1 0 136.2 13.5 199.3 40.3C772.3 66 827 103 874 150c47 47 83.9 101.8 109.7 162.7 26.7 63.1 40.2 130.2 40.2 199.3.1 19.9-16 36-35.9 36z"
2636
+ />
2637
+ </svg>
2638
+ </div>
2639
+ </div>
2640
+ </div>
2641
+ </a>
2642
+ </div>
2643
+ <div
2644
+ class="memori-media-item ease-out duration-500 delay-100 opacity-0 scale-95"
2645
+ >
2646
+ <a
2647
+ class="memori-media-item--link"
2648
+ href="https://picsum.photos/200/300?random=1"
2649
+ rel="noopener noreferrer"
2650
+ target="_blank"
2651
+ title="Image 1"
2652
+ >
2653
+ <div
2654
+ class="memori-card memori-media-item--card memori-media-item--image memori-card--with-cover memori-card--hoverable"
2655
+ >
2656
+ <div
2657
+ class="memori-spin"
2658
+ >
2659
+ <div
2660
+ class="memori-card--cover"
2661
+ >
2662
+ <picture
2663
+ class="memori-media-item--figure"
2664
+ >
2665
+ <source
2666
+ srcset="https://picsum.photos/200/300?random=1/131165be-9d1a-42fb-a3ce-e8f86d40c88f, /images/memoriAvatar.png, https://picsum.photos/200/300?random=1, "
2667
+ type="image/png"
2668
+ />
2669
+ <img
2670
+ alt="Image 1"
2671
+ src="data:image/png;base64,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"
2672
+ />
2673
+ <figcaption
2674
+ class="memori-media-item--figure-caption"
2675
+ >
2676
+ Image 1
2677
+ </figcaption>
2678
+ </picture>
2679
+ </div>
2680
+ <div
2681
+ class="memori-card--content"
2682
+ >
2683
+ <div
2684
+ class="memori-card--children"
2685
+ />
2686
+ </div>
2687
+ <div
2688
+ class="memori-spin--spinner"
2689
+ >
2690
+ <svg
2691
+ aria-hidden="true"
2692
+ class="memori-loading-icon"
2693
+ focusable="false"
2694
+ role="img"
2695
+ viewBox="0 0 1024 1024"
2696
+ xmlns="http://www.w3.org/2000/svg"
2697
+ >
2698
+ <path
2699
+ d="M988 548c-19.9 0-36-16.1-36-36 0-59.4-11.6-117-34.6-171.3a440.45 440.45 0 00-94.3-139.9 437.71 437.71 0 00-139.9-94.3C629 83.6 571.4 72 512 72c-19.9 0-36-16.1-36-36s16.1-36 36-36c69.1 0 136.2 13.5 199.3 40.3C772.3 66 827 103 874 150c47 47 83.9 101.8 109.7 162.7 26.7 63.1 40.2 130.2 40.2 199.3.1 19.9-16 36-35.9 36z"
2700
+ />
2701
+ </svg>
2702
+ </div>
2703
+ </div>
2704
+ </div>
2705
+ </a>
2706
+ </div>
2707
+ <div
2708
+ class="memori-media-item ease-out duration-500 delay-200 opacity-0 scale-95"
2709
+ >
2710
+ <a
2711
+ class="memori-media-item--link"
2712
+ href="https://picsum.photos/300/300?random=2"
2713
+ rel="noopener noreferrer"
2714
+ target="_blank"
2715
+ title="Image 2"
2716
+ >
2717
+ <div
2718
+ class="memori-card memori-media-item--card memori-media-item--image memori-card--with-cover memori-card--hoverable"
2719
+ >
2720
+ <div
2721
+ class="memori-spin"
2722
+ >
2723
+ <div
2724
+ class="memori-card--cover"
2725
+ >
2726
+ <picture
2727
+ class="memori-media-item--figure"
2728
+ >
2729
+ <source
2730
+ srcset="https://picsum.photos/300/300?random=2/131165be-9d1a-42fb-a3ce-e8f86d40c88f, /images/memoriAvatar.png, https://picsum.photos/300/300?random=2, "
2731
+ type="image/png"
2732
+ />
2733
+ <img
2734
+ alt="Image 2"
2735
+ src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMIAAADDCAYAAADQvc6UAAABRWlDQ1BJQ0MgUHJvZmlsZQAAKJFjYGASSSwoyGFhYGDIzSspCnJ3UoiIjFJgf8LAwSDCIMogwMCcmFxc4BgQ4ANUwgCjUcG3awyMIPqyLsis7PPOq3QdDFcvjV3jOD1boQVTPQrgSkktTgbSf4A4LbmgqISBgTEFyFYuLykAsTuAbJEioKOA7DkgdjqEvQHEToKwj4DVhAQ5A9k3gGyB5IxEoBmML4BsnSQk8XQkNtReEOBxcfXxUQg1Mjc0dyHgXNJBSWpFCYh2zi+oLMpMzyhRcASGUqqCZ16yno6CkYGRAQMDKMwhqj/fAIcloxgHQqxAjIHBEugw5sUIsSQpBobtQPdLciLEVJYzMPBHMDBsayhILEqEO4DxG0txmrERhM29nYGBddr//5/DGRjYNRkY/l7////39v///y4Dmn+LgeHANwDrkl1AuO+pmgAAADhlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAAqACAAQAAAABAAAAwqADAAQAAAABAAAAwwAAAAD9b/HnAAAHlklEQVR4Ae3dP3PTWBSGcbGzM6GCKqlIBRV0dHRJFarQ0eUT8LH4BnRU0NHR0UEFVdIlFRV7TzRksomPY8uykTk/zewQfKw/9znv4yvJynLv4uLiV2dBoDiBf4qP3/ARuCRABEFAoBEgghggQAQZQKAnYEaQBAQaASKIAQJEkAEEegJmBElAoBEgghggQAQZQKAnYEaQBAQaASKIAQJEkAEEegJmBElAoBEgghggQAQZQKAnYEaQBAQaASKIAQJEkAEEegJmBElAoBEgghggQAQZQKAnYEaQBAQaASKIAQJEkAEEegJmBElAoBEgghggQAQZQKAnYEaQBAQaASKIAQJEkAEEegJmBElAoBEgghggQAQZQKAnYEaQBAQaASKIAQJEkAEEegJmBElAoBEgghggQAQZQKAnYEaQBAQaASKIAQJEkAEEegJmBElAoBEgghggQAQZQKAnYEaQBAQaASKIAQJEkAEEegJmBElAoBEgghggQAQZQKAnYEaQBAQaASKIAQJEkAEEegJmBElAoBEgghggQAQZQKAnYEaQBAQaASKIAQJEkAEEegJmBElAoBEgghggQAQZQKAnYEaQBAQaASKIAQJEkAEEegJmBElAoBEgghggQAQZQKAnYEaQBAQaASKIAQJEkAEEegJmBElAoBEgghgg0Aj8i0JO4OzsrPv69Wv+hi2qPHr0qNvf39+iI97soRIh4f3z58/u7du3SXX7Xt7Z2enevHmzfQe+oSN2apSAPj09TSrb+XKI/f379+08+A0cNRE2ANkupk+ACNPvkSPcAAEibACyXUyfABGm3yNHuAECRNgAZLuYPgEirKlHu7u7XdyytGwHAd8jjNyng4OD7vnz51dbPT8/7z58+NB9+/bt6jU/TI+AGWHEnrx48eJ/EsSmHzx40L18+fLyzxF3ZVMjEyDCiEDjMYZZS5wiPXnyZFbJaxMhQIQRGzHvWR7XCyOCXsOmiDAi1HmPMMQjDpbpEiDCiL358eNHurW/5SnWdIBbXiDCiA38/Pnzrce2YyZ4//59F3ePLNMl4PbpiL2J0L979+7yDtHDhw8vtzzvdGnEXdvUigSIsCLAWavHp/+qM0BcXMd/q25n1vF57TYBp0a3mUzilePj4+7k5KSLb6gt6ydAhPUzXnoPR0dHl79WGTNCfBnn1uvSCJdegQhLI1vvCk+fPu2ePXt2tZOYEV6/fn31dz+shwAR1sP1cqvLntbEN9MxA9xcYjsxS1jWR4AIa2Ibzx0tc44fYX/16lV6NDFLXH+YL32jwiACRBiEbf5KcXoTIsQSpzXx4N28Ja4BQoK7rgXiydbHjx/P25TaQAJEGAguWy0+2Q8PD6/Ki4R8EVl+bzBOnZY95fq9rj9zAkTI2SxdidBHqG9+skdw43borCXO/ZcJdraPWdv22uIEiLA4q7nvvCug8WTqzQveOH26fodo7g6uFe/a17W3+nFBAkRYENRdb1vkkz1CH9cPsVy/jrhr27PqMYvENYNlHAIesRiBYwRy0V+8iXP8+/fvX11Mr7L7ECueb/r48eMqm7FuI2BGWDEG8cm+7G3NEOfmdcTQw4h9/55lhm7DekRYKQPZF2ArbXTAyu4kDYB2YxUzwg0gi/41ztHnfQG26HbGel/crVrm7tNY+/1btkOEAZ2M05r4FB7r9GbAIdxaZYrHdOsgJ/wCEQY0J74TmOKnbxxT9n3FgGGWWsVdowHtjt9Nnvf7yQM2aZU/TIAIAxrw6dOnAWtZZcoEnBpNuTuObWMEiLAx1HY0ZQJEmHJ3HNvGCBBhY6jtaMoEiJB0Z29vL6ls58vxPcO8/zfrdo5qvKO+d3Fx8Wu8zf1dW4p/cPzLly/dtv9Ts/EbcvGAHhHyfBIhZ6NSiIBTo0LNNtScABFyNiqFCBChULMNNSdAhJyNSiECRCjUbEPNCRAhZ6NSiAARCjXbUHMCRMjZqBQiQIRCzTbUnAARcjYqhQgQoVCzDTUnQIScjUohAkQo1GxDzQkQIWejUogAEQo121BzAkTI2agUIkCEQs021JwAEXI2KoUIEKFQsw01J0CEnI1KIQJEKNRsQ80JECFno1KIABEKNdtQcwJEyNmoFCJAhELNNtScABFyNiqFCBChULMNNSdAhJyNSiECRCjUbEPNCRAhZ6NSiAARCjXbUHMCRMjZqBQiQIRCzTbUnAARcjYqhQgQoVCzDTUnQIScjUohAkQo1GxDzQkQIWejUogAEQo121BzAkTI2agUIkCEQs021JwAEXI2KoUIEKFQsw01J0CEnI1KIQJEKNRsQ80JECFno1KIABEKNdtQcwJEyNmoFCJAhELNNtScABFyNiqFCBChULMNNSdAhJyNSiECRCjUbEPNCRAhZ6NSiAARCjXbUHMCRMjZqBQiQIRCzTbUnAARcjYqhQgQoVCzDTUnQIScjUohAkQo1GxDzQkQIWejUogAEQo121BzAkTI2agUIkCEQs021JwAEXI2KoUIEKFQsw01J0CEnI1KIQJEKNRsQ80JECFno1KIABEKNdtQcwJEyNmoFCJAhELNNtScABFyNiqFCBChULMNNSdAhJyNSiEC/wGgKKC4YMA4TAAAAABJRU5ErkJggg=="
2736
+ />
2737
+ <figcaption
2738
+ class="memori-media-item--figure-caption"
2739
+ >
2740
+ Image 2
2741
+ </figcaption>
2742
+ </picture>
2743
+ </div>
2744
+ <div
2745
+ class="memori-card--content"
2746
+ >
2747
+ <div
2748
+ class="memori-card--children"
2749
+ />
2750
+ </div>
2751
+ <div
2752
+ class="memori-spin--spinner"
2753
+ >
2754
+ <svg
2755
+ aria-hidden="true"
2756
+ class="memori-loading-icon"
2757
+ focusable="false"
2758
+ role="img"
2759
+ viewBox="0 0 1024 1024"
2760
+ xmlns="http://www.w3.org/2000/svg"
2761
+ >
2762
+ <path
2763
+ d="M988 548c-19.9 0-36-16.1-36-36 0-59.4-11.6-117-34.6-171.3a440.45 440.45 0 00-94.3-139.9 437.71 437.71 0 00-139.9-94.3C629 83.6 571.4 72 512 72c-19.9 0-36-16.1-36-36s16.1-36 36-36c69.1 0 136.2 13.5 199.3 40.3C772.3 66 827 103 874 150c47 47 83.9 101.8 109.7 162.7 26.7 63.1 40.2 130.2 40.2 199.3.1 19.9-16 36-35.9 36z"
2764
+ />
2765
+ </svg>
2766
+ </div>
2767
+ </div>
2768
+ </div>
2769
+ </a>
2770
+ </div>
2771
+ </div>
2772
+ </div>
2773
+ <div
2774
+ class="memori-link-items"
2775
+ >
2776
+ <div
2777
+ class="memori-link-items--grid"
2778
+ >
2779
+ <div
2780
+ class="memori-link-item ease-out duration-500 delay-0 opacity-0 scale-95"
2781
+ >
2782
+ <a
2783
+ class="memori-link-item--link"
2784
+ href="https://memori.ai/en"
2785
+ rel="noopener noreferrer"
2786
+ target="_blank"
2787
+ >
2788
+ <div
2789
+ class="memori-card memori-link-item--card memori-card--with-cover memori-card--hoverable"
2790
+ >
2791
+ <div
2792
+ class="memori-spin"
2793
+ >
2794
+ <div
2795
+ class="memori-card--cover"
2796
+ >
2797
+ <div
2798
+ class="memori-link-item--card-cover-icon"
2799
+ >
2800
+ <svg
2801
+ aria-hidden="true"
2802
+ class="memori-link-item--icon"
2803
+ focusable="false"
2804
+ role="img"
2805
+ viewBox="0 0 1024 1024"
2806
+ xmlns="http://www.w3.org/2000/svg"
2807
+ >
2808
+ <path
2809
+ d="M574 665.4a8.03 8.03 0 0 0-11.3 0L446.5 781.6c-53.8 53.8-144.6 59.5-204 0-59.5-59.5-53.8-150.2 0-204l116.2-116.2c3.1-3.1 3.1-8.2 0-11.3l-39.8-39.8a8.03 8.03 0 0 0-11.3 0L191.4 526.5c-84.6 84.6-84.6 221.5 0 306s221.5 84.6 306 0l116.2-116.2c3.1-3.1 3.1-8.2 0-11.3L574 665.4zm258.6-474c-84.6-84.6-221.5-84.6-306 0L410.3 307.6a8.03 8.03 0 0 0 0 11.3l39.7 39.7c3.1 3.1 8.2 3.1 11.3 0l116.2-116.2c53.8-53.8 144.6-59.5 204 0 59.5 59.5 53.8 150.2 0 204L665.3 562.6a8.03 8.03 0 0 0 0 11.3l39.8 39.8c3.1 3.1 8.2 3.1 11.3 0l116.2-116.2c84.5-84.6 84.5-221.5 0-306.1zM610.1 372.3a8.03 8.03 0 0 0-11.3 0L372.3 598.7a8.03 8.03 0 0 0 0 11.3l39.6 39.6c3.1 3.1 8.2 3.1 11.3 0l226.4-226.4c3.1-3.1 3.1-8.2 0-11.3l-39.5-39.6z"
2810
+ />
2811
+ </svg>
2812
+ </div>
2813
+ </div>
2814
+ <div
2815
+ class="memori-card--content"
2816
+ >
2817
+ <h3
2818
+ class="memori-card--title"
2819
+ >
2820
+ Link Memori Srl
2821
+ </h3>
2822
+ <div
2823
+ class="memori-card--children"
2824
+ />
2825
+ </div>
2826
+ <div
2827
+ class="memori-spin--spinner"
2828
+ >
2829
+ <svg
2830
+ aria-hidden="true"
2831
+ class="memori-loading-icon"
2832
+ focusable="false"
2833
+ role="img"
2834
+ viewBox="0 0 1024 1024"
2835
+ xmlns="http://www.w3.org/2000/svg"
2836
+ >
2837
+ <path
2838
+ d="M988 548c-19.9 0-36-16.1-36-36 0-59.4-11.6-117-34.6-171.3a440.45 440.45 0 00-94.3-139.9 437.71 437.71 0 00-139.9-94.3C629 83.6 571.4 72 512 72c-19.9 0-36-16.1-36-36s16.1-36 36-36c69.1 0 136.2 13.5 199.3 40.3C772.3 66 827 103 874 150c47 47 83.9 101.8 109.7 162.7 26.7 63.1 40.2 130.2 40.2 199.3.1 19.9-16 36-35.9 36z"
2839
+ />
2840
+ </svg>
2841
+ </div>
2842
+ </div>
2843
+ </div>
2844
+ </a>
2845
+ </div>
2846
+ <div
2847
+ class="memori-link-item ease-out duration-500 delay-100 opacity-0 scale-95"
2848
+ >
2849
+ <a
2850
+ class="memori-link-item--link"
2851
+ href="https://rawmaterial.it/en"
2852
+ rel="noopener noreferrer"
2853
+ target="_blank"
2854
+ >
2855
+ <div
2856
+ class="memori-card memori-link-item--card memori-card--with-cover memori-card--hoverable"
2857
+ >
2858
+ <div
2859
+ class="memori-spin"
2860
+ >
2861
+ <div
2862
+ class="memori-card--cover"
2863
+ >
2864
+ <div
2865
+ class="memori-link-item--card-cover-icon"
2866
+ >
2867
+ <svg
2868
+ aria-hidden="true"
2869
+ class="memori-link-item--icon"
2870
+ focusable="false"
2871
+ role="img"
2872
+ viewBox="0 0 1024 1024"
2873
+ xmlns="http://www.w3.org/2000/svg"
2874
+ >
2875
+ <path
2876
+ d="M574 665.4a8.03 8.03 0 0 0-11.3 0L446.5 781.6c-53.8 53.8-144.6 59.5-204 0-59.5-59.5-53.8-150.2 0-204l116.2-116.2c3.1-3.1 3.1-8.2 0-11.3l-39.8-39.8a8.03 8.03 0 0 0-11.3 0L191.4 526.5c-84.6 84.6-84.6 221.5 0 306s221.5 84.6 306 0l116.2-116.2c3.1-3.1 3.1-8.2 0-11.3L574 665.4zm258.6-474c-84.6-84.6-221.5-84.6-306 0L410.3 307.6a8.03 8.03 0 0 0 0 11.3l39.7 39.7c3.1 3.1 8.2 3.1 11.3 0l116.2-116.2c53.8-53.8 144.6-59.5 204 0 59.5 59.5 53.8 150.2 0 204L665.3 562.6a8.03 8.03 0 0 0 0 11.3l39.8 39.8c3.1 3.1 8.2 3.1 11.3 0l116.2-116.2c84.5-84.6 84.5-221.5 0-306.1zM610.1 372.3a8.03 8.03 0 0 0-11.3 0L372.3 598.7a8.03 8.03 0 0 0 0 11.3l39.6 39.6c3.1 3.1 8.2 3.1 11.3 0l226.4-226.4c3.1-3.1 3.1-8.2 0-11.3l-39.5-39.6z"
2877
+ />
2878
+ </svg>
2879
+ </div>
2880
+ </div>
2881
+ <div
2882
+ class="memori-card--content"
2883
+ >
2884
+ <h3
2885
+ class="memori-card--title"
2886
+ >
2887
+ Link RawMaterial
2888
+ </h3>
2889
+ <div
2890
+ class="memori-card--children"
2891
+ />
2892
+ </div>
2893
+ <div
2894
+ class="memori-spin--spinner"
2895
+ >
2896
+ <svg
2897
+ aria-hidden="true"
2898
+ class="memori-loading-icon"
2899
+ focusable="false"
2900
+ role="img"
2901
+ viewBox="0 0 1024 1024"
2902
+ xmlns="http://www.w3.org/2000/svg"
2903
+ >
2904
+ <path
2905
+ d="M988 548c-19.9 0-36-16.1-36-36 0-59.4-11.6-117-34.6-171.3a440.45 440.45 0 00-94.3-139.9 437.71 437.71 0 00-139.9-94.3C629 83.6 571.4 72 512 72c-19.9 0-36-16.1-36-36s16.1-36 36-36c69.1 0 136.2 13.5 199.3 40.3C772.3 66 827 103 874 150c47 47 83.9 101.8 109.7 162.7 26.7 63.1 40.2 130.2 40.2 199.3.1 19.9-16 36-35.9 36z"
2906
+ />
2907
+ </svg>
2908
+ </div>
2909
+ </div>
2910
+ </div>
2911
+ </a>
2912
+ </div>
2913
+ <div
2914
+ class="memori-link-item ease-out duration-500 delay-200 opacity-0 scale-95"
2915
+ >
2916
+ <a
2917
+ class="memori-link-item--link"
2918
+ href="https://vimeo.com/766468314"
2919
+ rel="noopener noreferrer"
2920
+ target="_blank"
2921
+ >
2922
+ <div
2923
+ class="memori-card memori-link-item--card memori-card--with-cover memori-card--hoverable"
2924
+ >
2925
+ <div
2926
+ class="memori-spin"
2927
+ >
2928
+ <div
2929
+ class="memori-card--cover"
2930
+ >
2931
+ <div
2932
+ class="memori-link-item--card-cover-icon"
2933
+ >
2934
+ <svg
2935
+ aria-hidden="true"
2936
+ class="memori-link-item--icon"
2937
+ focusable="false"
2938
+ role="img"
2939
+ viewBox="0 0 1024 1024"
2940
+ xmlns="http://www.w3.org/2000/svg"
2941
+ >
2942
+ <path
2943
+ d="M574 665.4a8.03 8.03 0 0 0-11.3 0L446.5 781.6c-53.8 53.8-144.6 59.5-204 0-59.5-59.5-53.8-150.2 0-204l116.2-116.2c3.1-3.1 3.1-8.2 0-11.3l-39.8-39.8a8.03 8.03 0 0 0-11.3 0L191.4 526.5c-84.6 84.6-84.6 221.5 0 306s221.5 84.6 306 0l116.2-116.2c3.1-3.1 3.1-8.2 0-11.3L574 665.4zm258.6-474c-84.6-84.6-221.5-84.6-306 0L410.3 307.6a8.03 8.03 0 0 0 0 11.3l39.7 39.7c3.1 3.1 8.2 3.1 11.3 0l116.2-116.2c53.8-53.8 144.6-59.5 204 0 59.5 59.5 53.8 150.2 0 204L665.3 562.6a8.03 8.03 0 0 0 0 11.3l39.8 39.8c3.1 3.1 8.2 3.1 11.3 0l116.2-116.2c84.5-84.6 84.5-221.5 0-306.1zM610.1 372.3a8.03 8.03 0 0 0-11.3 0L372.3 598.7a8.03 8.03 0 0 0 0 11.3l39.6 39.6c3.1 3.1 8.2 3.1 11.3 0l226.4-226.4c3.1-3.1 3.1-8.2 0-11.3l-39.5-39.6z"
2944
+ />
2945
+ </svg>
2946
+ </div>
2947
+ </div>
2948
+ <div
2949
+ class="memori-card--content"
2950
+ >
2951
+ <h3
2952
+ class="memori-card--title"
2953
+ >
2954
+ Introducing Plone Remix | Vimeo
2955
+ </h3>
2956
+ <div
2957
+ class="memori-card--children"
2958
+ />
2959
+ </div>
2960
+ <div
2961
+ class="memori-spin--spinner"
2962
+ >
2963
+ <svg
2964
+ aria-hidden="true"
2965
+ class="memori-loading-icon"
2966
+ focusable="false"
2967
+ role="img"
2968
+ viewBox="0 0 1024 1024"
2969
+ xmlns="http://www.w3.org/2000/svg"
2970
+ >
2971
+ <path
2972
+ d="M988 548c-19.9 0-36-16.1-36-36 0-59.4-11.6-117-34.6-171.3a440.45 440.45 0 00-94.3-139.9 437.71 437.71 0 00-139.9-94.3C629 83.6 571.4 72 512 72c-19.9 0-36-16.1-36-36s16.1-36 36-36c69.1 0 136.2 13.5 199.3 40.3C772.3 66 827 103 874 150c47 47 83.9 101.8 109.7 162.7 26.7 63.1 40.2 130.2 40.2 199.3.1 19.9-16 36-35.9 36z"
2973
+ />
2974
+ </svg>
2975
+ </div>
2976
+ </div>
2977
+ </div>
2978
+ </a>
2979
+ </div>
2980
+ <div
2981
+ class="memori-link-item ease-out duration-500 delay-300 opacity-0 scale-95"
2982
+ >
2983
+ <a
2984
+ class="memori-link-item--link"
2985
+ href="https://www.youtube.com/watch?v=feH26j3rBz8"
2986
+ rel="noopener noreferrer"
2987
+ target="_blank"
2988
+ >
2989
+ <div
2990
+ class="memori-card memori-link-item--card memori-card--with-cover memori-card--hoverable"
2991
+ >
2992
+ <div
2993
+ class="memori-spin"
2994
+ >
2995
+ <div
2996
+ class="memori-card--cover"
2997
+ >
2998
+ <div
2999
+ class="memori-link-item--card-cover-icon"
3000
+ >
3001
+ <svg
3002
+ aria-hidden="true"
3003
+ class="memori-link-item--icon"
3004
+ focusable="false"
3005
+ role="img"
3006
+ viewBox="0 0 1024 1024"
3007
+ xmlns="http://www.w3.org/2000/svg"
3008
+ >
3009
+ <path
3010
+ d="M574 665.4a8.03 8.03 0 0 0-11.3 0L446.5 781.6c-53.8 53.8-144.6 59.5-204 0-59.5-59.5-53.8-150.2 0-204l116.2-116.2c3.1-3.1 3.1-8.2 0-11.3l-39.8-39.8a8.03 8.03 0 0 0-11.3 0L191.4 526.5c-84.6 84.6-84.6 221.5 0 306s221.5 84.6 306 0l116.2-116.2c3.1-3.1 3.1-8.2 0-11.3L574 665.4zm258.6-474c-84.6-84.6-221.5-84.6-306 0L410.3 307.6a8.03 8.03 0 0 0 0 11.3l39.7 39.7c3.1 3.1 8.2 3.1 11.3 0l116.2-116.2c53.8-53.8 144.6-59.5 204 0 59.5 59.5 53.8 150.2 0 204L665.3 562.6a8.03 8.03 0 0 0 0 11.3l39.8 39.8c3.1 3.1 8.2 3.1 11.3 0l116.2-116.2c84.5-84.6 84.5-221.5 0-306.1zM610.1 372.3a8.03 8.03 0 0 0-11.3 0L372.3 598.7a8.03 8.03 0 0 0 0 11.3l39.6 39.6c3.1 3.1 8.2 3.1 11.3 0l226.4-226.4c3.1-3.1 3.1-8.2 0-11.3l-39.5-39.6z"
3011
+ />
3012
+ </svg>
3013
+ </div>
3014
+ </div>
3015
+ <div
3016
+ class="memori-card--content"
3017
+ >
3018
+ <h3
3019
+ class="memori-card--title"
3020
+ >
3021
+ A sustainable web: is it possible? - Nicola Zambello | YouTube
3022
+ </h3>
3023
+ <div
3024
+ class="memori-card--children"
3025
+ />
3026
+ </div>
3027
+ <div
3028
+ class="memori-spin--spinner"
3029
+ >
3030
+ <svg
3031
+ aria-hidden="true"
3032
+ class="memori-loading-icon"
3033
+ focusable="false"
3034
+ role="img"
3035
+ viewBox="0 0 1024 1024"
3036
+ xmlns="http://www.w3.org/2000/svg"
3037
+ >
3038
+ <path
3039
+ d="M988 548c-19.9 0-36-16.1-36-36 0-59.4-11.6-117-34.6-171.3a440.45 440.45 0 00-94.3-139.9 437.71 437.71 0 00-139.9-94.3C629 83.6 571.4 72 512 72c-19.9 0-36-16.1-36-36s16.1-36 36-36c69.1 0 136.2 13.5 199.3 40.3C772.3 66 827 103 874 150c47 47 83.9 101.8 109.7 162.7 26.7 63.1 40.2 130.2 40.2 199.3.1 19.9-16 36-35.9 36z"
3040
+ />
3041
+ </svg>
3042
+ </div>
3043
+ </div>
3044
+ </div>
3045
+ </a>
3046
+ </div>
3047
+ </div>
3048
+ </div>
3049
+ </div>
3050
+ <div
3051
+ class="memori-chat--bubble-container memori-chat--bubble-from-user"
3052
+ >
3053
+ <div
3054
+ class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
3055
+ >
3056
+ <p>
3057
+ Ah, grazie! Ciao!
3058
+ </p>
3059
+ </div>
3060
+ <div
3061
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x-15"
3062
+ >
3063
+ <svg
3064
+ aria-hidden="true"
3065
+ focusable="false"
3066
+ role="img"
3067
+ viewBox="0 0 1024 1024"
3068
+ xmlns="http://www.w3.org/2000/svg"
3069
+ >
3070
+ <path
3071
+ d="M858.5 763.6a374 374 0 0 0-80.6-119.5 375.63 375.63 0 0 0-119.5-80.6c-.4-.2-.8-.3-1.2-.5C719.5 518 760 444.7 760 362c0-137-111-248-248-248S264 225 264 362c0 82.7 40.5 156 102.8 201.1-.4.2-.8.3-1.2.5-44.8 18.9-85 46-119.5 80.6a375.63 375.63 0 0 0-80.6 119.5A371.7 371.7 0 0 0 136 901.8a8 8 0 0 0 8 8.2h60c4.4 0 7.9-3.5 8-7.8 2-77.2 33-149.5 87.8-204.3 56.7-56.7 132-87.9 212.2-87.9s155.5 31.2 212.2 87.9C779 752.7 810 825 812 902.2c.1 4.4 3.6 7.8 8 7.8h60a8 8 0 0 0 8-8.2c-1-47.8-10.9-94.3-29.5-138.2zM512 534c-45.9 0-89.1-17.9-121.6-50.4S340 407.9 340 362c0-45.9 17.9-89.1 50.4-121.6S466.1 190 512 190s89.1 17.9 121.6 50.4S684 316.1 684 362c0 45.9-17.9 89.1-50.4 121.6S557.9 534 512 534z"
3072
+ />
3073
+ </svg>
3074
+ </div>
3075
+ </div>
3076
+ <div
3077
+ class="memori-media-widget"
3078
+ />
3079
+ <div
3080
+ class="memori-chat--bubble-container"
3081
+ >
3082
+ <picture
3083
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
3084
+ >
3085
+ <source
3086
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
3087
+ />
3088
+ <img
3089
+ alt="Memori"
3090
+ class="memori-chat--bubble-avatar-img"
3091
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
3092
+ />
3093
+ </picture>
3094
+ <div
3095
+ class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
3096
+ >
3097
+ <p>
3098
+ Arrivederci.
3099
+ </p>
3100
+ </div>
3101
+ </div>
3102
+ <div
3103
+ class="memori-media-widget"
3104
+ />
3105
+ <div
3106
+ id="end-messages-ref"
3107
+ />
3108
+ </div>
3109
+ </div>
3110
+ <fieldset
3111
+ class="memori-chat-inputs"
3112
+ id="chat-fieldset"
3113
+ >
3114
+ <div
3115
+ class="memori-send-on-enter-menu"
3116
+ data-headlessui-state=""
3117
+ >
3118
+ <button
3119
+ aria-expanded="false"
3120
+ aria-haspopup="true"
3121
+ class="memori-button memori-button--circle memori-button--icon-only memori-share-button--button memori--conversation-button"
3122
+ data-headlessui-state=""
3123
+ id="headlessui-menu-button-:r6:"
3124
+ type="button"
3125
+ >
3126
+ <div
3127
+ class="memori-button--icon"
3128
+ >
3129
+
3130
+ </div>
3131
+ </button>
3132
+ </div>
3133
+ <div
3134
+ class="memori-chat-textarea"
3135
+ data-testid="chat-textarea"
3136
+ >
3137
+ <div
3138
+ class="memori-chat-textarea--inner"
3139
+ >
3140
+ <textarea
3141
+ class="memori-chat-textarea--input"
3142
+ />
3143
+ <div
3144
+ class="memori-chat-textarea--expand"
3145
+ >
3146
+ <button
3147
+ class="memori-chat-textarea--expand-button memori-button memori-button--ghost memori-button--rounded memori-button--icon-only"
3148
+ >
3149
+ <span
3150
+ class="memori-button--icon"
3151
+ >
3152
+ <svg
3153
+ aria-hidden="true"
3154
+ focusable="false"
3155
+ role="img"
3156
+ viewBox="0 0 1024 1024"
3157
+ xmlns="http://www.w3.org/2000/svg"
3158
+ >
3159
+ <path
3160
+ d="M855 160.1l-189.2 23.5c-6.6.8-9.3 8.8-4.7 13.5l54.7 54.7-153.5 153.5a8.03 8.03 0 0 0 0 11.3l45.1 45.1c3.1 3.1 8.2 3.1 11.3 0l153.6-153.6 54.7 54.7a7.94 7.94 0 0 0 13.5-4.7L863.9 169a7.9 7.9 0 0 0-8.9-8.9zM416.6 562.3a8.03 8.03 0 0 0-11.3 0L251.8 715.9l-54.7-54.7a7.94 7.94 0 0 0-13.5 4.7L160.1 855c-.6 5.2 3.7 9.5 8.9 8.9l189.2-23.5c6.6-.8 9.3-8.8 4.7-13.5l-54.7-54.7 153.6-153.6c3.1-3.1 3.1-8.2 0-11.3l-45.2-45z"
3161
+ />
3162
+ </svg>
3163
+ </span>
3164
+ </button>
3165
+ </div>
3166
+ </div>
3167
+ </div>
3168
+ <button
3169
+ class="memori--conversation-button memori-chat-inputs--send memori-button memori-button--circle memori-button--padded memori-button--icon-only"
3170
+ disabled=""
3171
+ title="send"
3172
+ >
3173
+ <span
3174
+ class="memori-button--icon"
3175
+ >
3176
+ <svg
3177
+ aria-hidden="true"
3178
+ focusable="false"
3179
+ role="img"
3180
+ viewBox="0 0 1024 1024"
3181
+ xmlns="http://www.w3.org/2000/svg"
3182
+ >
3183
+ <path
3184
+ d="M931.4 498.9L94.9 79.5c-3.4-1.7-7.3-2.1-11-1.2-8.5 2.1-13.8 10.7-11.7 19.3l86.2 352.2c1.3 5.3 5.2 9.6 10.4 11.3l147.7 50.7-147.6 50.7c-5.2 1.8-9.1 6-10.3 11.3L72.2 926.5c-.9 3.7-.5 7.6 1.2 10.9 3.9 7.9 13.5 11.1 21.5 7.2l836.5-417c3.1-1.5 5.6-4.1 7.2-7.1 3.9-8 .7-17.6-7.2-21.6zM170.8 826.3l50.3-205.6 295.2-101.3c2.3-.8 4.2-2.6 5-5 1.4-4.2-.8-8.7-5-10.2L221.1 403 171 198.2l628 314.9-628.2 313.2z"
3185
+ />
3186
+ </svg>
3187
+ </span>
3188
+ </button>
3189
+ </fieldset>
3190
+ </div>
3191
+ </div>
3192
+ `;
3193
+
3194
+ exports[`renders Chat with memori typing unchanged 1`] = `
3195
+ <div>
3196
+ <div
3197
+ class="memori-chat--wrapper"
3198
+ data-memori-lang="IT"
3199
+ id="chat-wrapper"
3200
+ >
3201
+ <div
3202
+ class="memori-chat--history"
3203
+ >
3204
+ <div
3205
+ class="memori-chat--content"
3206
+ >
3207
+ <div
3208
+ class="memori-chat--cover"
3209
+ />
3210
+ <div
3211
+ class="memori-chat--bubble-container"
3212
+ >
3213
+ <picture
3214
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
3215
+ >
3216
+ <source
3217
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
3218
+ />
3219
+ <img
3220
+ alt="Memori"
3221
+ class="memori-chat--bubble-avatar-img"
3222
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
3223
+ />
3224
+ </picture>
3225
+ <div
3226
+ class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
3227
+ >
3228
+ <p>
3229
+ Ciao, io sono test, c'è qualcosa che vorresti chiedermi?
3230
+ </p>
3231
+ </div>
3232
+ </div>
3233
+ <div
3234
+ class="memori-media-widget"
3235
+ />
3236
+ <div
3237
+ class="memori-chat--bubble-container memori-chat--bubble-from-user"
3238
+ >
3239
+ <div
3240
+ class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
3241
+ >
3242
+ <p>
3243
+ Prova
3244
+ </p>
3245
+ </div>
3246
+ <div
3247
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x-15"
3248
+ >
3249
+ <svg
3250
+ aria-hidden="true"
3251
+ focusable="false"
3252
+ role="img"
3253
+ viewBox="0 0 1024 1024"
3254
+ xmlns="http://www.w3.org/2000/svg"
3255
+ >
3256
+ <path
3257
+ d="M858.5 763.6a374 374 0 0 0-80.6-119.5 375.63 375.63 0 0 0-119.5-80.6c-.4-.2-.8-.3-1.2-.5C719.5 518 760 444.7 760 362c0-137-111-248-248-248S264 225 264 362c0 82.7 40.5 156 102.8 201.1-.4.2-.8.3-1.2.5-44.8 18.9-85 46-119.5 80.6a375.63 375.63 0 0 0-80.6 119.5A371.7 371.7 0 0 0 136 901.8a8 8 0 0 0 8 8.2h60c4.4 0 7.9-3.5 8-7.8 2-77.2 33-149.5 87.8-204.3 56.7-56.7 132-87.9 212.2-87.9s155.5 31.2 212.2 87.9C779 752.7 810 825 812 902.2c.1 4.4 3.6 7.8 8 7.8h60a8 8 0 0 0 8-8.2c-1-47.8-10.9-94.3-29.5-138.2zM512 534c-45.9 0-89.1-17.9-121.6-50.4S340 407.9 340 362c0-45.9 17.9-89.1 50.4-121.6S466.1 190 512 190s89.1 17.9 121.6 50.4S684 316.1 684 362c0 45.9-17.9 89.1-50.4 121.6S557.9 534 512 534z"
3258
+ />
3259
+ </svg>
3260
+ </div>
3261
+ </div>
3262
+ <div
3263
+ class="memori-media-widget"
3264
+ />
3265
+ <div
3266
+ class="memori-chat--bubble-container"
3267
+ >
3268
+ <picture
3269
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
3270
+ >
3271
+ <source
3272
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
3273
+ />
3274
+ <img
3275
+ alt="Memori"
3276
+ class="memori-chat--bubble-avatar-img"
3277
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
3278
+ />
3279
+ </picture>
3280
+ <div
3281
+ class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
3282
+ >
3283
+ <p>
3284
+ Mi dispiace, le mie risposte sono limitate. Devi farmi le domande giuste. C'è altro che vuoi sapere?
3285
+ </p>
3286
+ </div>
3287
+ </div>
3288
+ <div
3289
+ class="memori-media-widget"
3290
+ />
3291
+ <div
3292
+ class="memori-chat--bubble-container memori-chat--bubble-from-user"
3293
+ >
3294
+ <div
3295
+ class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
3296
+ >
3297
+ <p>
3298
+ Come faccio a fare delle cose con questa cosa?
3299
+ </p>
3300
+ </div>
3301
+ <div
3302
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x-15"
3303
+ >
3304
+ <svg
3305
+ aria-hidden="true"
3306
+ focusable="false"
3307
+ role="img"
3308
+ viewBox="0 0 1024 1024"
3309
+ xmlns="http://www.w3.org/2000/svg"
3310
+ >
3311
+ <path
3312
+ d="M858.5 763.6a374 374 0 0 0-80.6-119.5 375.63 375.63 0 0 0-119.5-80.6c-.4-.2-.8-.3-1.2-.5C719.5 518 760 444.7 760 362c0-137-111-248-248-248S264 225 264 362c0 82.7 40.5 156 102.8 201.1-.4.2-.8.3-1.2.5-44.8 18.9-85 46-119.5 80.6a375.63 375.63 0 0 0-80.6 119.5A371.7 371.7 0 0 0 136 901.8a8 8 0 0 0 8 8.2h60c4.4 0 7.9-3.5 8-7.8 2-77.2 33-149.5 87.8-204.3 56.7-56.7 132-87.9 212.2-87.9s155.5 31.2 212.2 87.9C779 752.7 810 825 812 902.2c.1 4.4 3.6 7.8 8 7.8h60a8 8 0 0 0 8-8.2c-1-47.8-10.9-94.3-29.5-138.2zM512 534c-45.9 0-89.1-17.9-121.6-50.4S340 407.9 340 362c0-45.9 17.9-89.1 50.4-121.6S466.1 190 512 190s89.1 17.9 121.6 50.4S684 316.1 684 362c0 45.9-17.9 89.1-50.4 121.6S557.9 534 512 534z"
3313
+ />
3314
+ </svg>
3315
+ </div>
3316
+ </div>
3317
+ <div
3318
+ class="memori-media-widget"
3319
+ />
3320
+ <div
3321
+ class="memori-chat--bubble-container"
3322
+ >
3323
+ <picture
3324
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
3325
+ >
3326
+ <source
3327
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
3328
+ />
3329
+ <img
3330
+ alt="Memori"
3331
+ class="memori-chat--bubble-avatar-img"
3332
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
3333
+ />
3334
+ </picture>
3335
+ <div
3336
+ class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
3337
+ >
3338
+ <p>
3339
+ Ecco qui come.
3340
+ </p>
3341
+ </div>
3342
+ </div>
3343
+ <div
3344
+ class="memori-media-widget"
3345
+ >
3346
+ <div
3347
+ class="memori-link-items"
3348
+ >
3349
+ <div
3350
+ class="memori-link-items--grid"
3351
+ >
3352
+ <div
3353
+ class="memori-link-item ease-out duration-500 delay-0 opacity-0 scale-95"
3354
+ >
3355
+ <a
3356
+ class="memori-link-item--link"
3357
+ href="https://memori.ai"
3358
+ rel="noopener noreferrer"
3359
+ target="_blank"
3360
+ >
3361
+ <div
3362
+ class="memori-card memori-link-item--card memori-card--with-cover memori-card--hoverable"
3363
+ >
3364
+ <div
3365
+ class="memori-spin"
3366
+ >
3367
+ <div
3368
+ class="memori-card--cover"
3369
+ >
3370
+ <div
3371
+ class="memori-link-item--card-cover-icon"
3372
+ >
3373
+ <svg
3374
+ aria-hidden="true"
3375
+ class="memori-link-item--icon"
3376
+ focusable="false"
3377
+ role="img"
3378
+ viewBox="0 0 1024 1024"
3379
+ xmlns="http://www.w3.org/2000/svg"
3380
+ >
3381
+ <path
3382
+ d="M574 665.4a8.03 8.03 0 0 0-11.3 0L446.5 781.6c-53.8 53.8-144.6 59.5-204 0-59.5-59.5-53.8-150.2 0-204l116.2-116.2c3.1-3.1 3.1-8.2 0-11.3l-39.8-39.8a8.03 8.03 0 0 0-11.3 0L191.4 526.5c-84.6 84.6-84.6 221.5 0 306s221.5 84.6 306 0l116.2-116.2c3.1-3.1 3.1-8.2 0-11.3L574 665.4zm258.6-474c-84.6-84.6-221.5-84.6-306 0L410.3 307.6a8.03 8.03 0 0 0 0 11.3l39.7 39.7c3.1 3.1 8.2 3.1 11.3 0l116.2-116.2c53.8-53.8 144.6-59.5 204 0 59.5 59.5 53.8 150.2 0 204L665.3 562.6a8.03 8.03 0 0 0 0 11.3l39.8 39.8c3.1 3.1 8.2 3.1 11.3 0l116.2-116.2c84.5-84.6 84.5-221.5 0-306.1zM610.1 372.3a8.03 8.03 0 0 0-11.3 0L372.3 598.7a8.03 8.03 0 0 0 0 11.3l39.6 39.6c3.1 3.1 8.2 3.1 11.3 0l226.4-226.4c3.1-3.1 3.1-8.2 0-11.3l-39.5-39.6z"
3383
+ />
3384
+ </svg>
3385
+ </div>
3386
+ </div>
3387
+ <div
3388
+ class="memori-card--content"
3389
+ >
3390
+ <h3
3391
+ class="memori-card--title"
3392
+ >
3393
+ Link
3394
+ </h3>
3395
+ <div
3396
+ class="memori-card--children"
3397
+ />
3398
+ </div>
3399
+ <div
3400
+ class="memori-spin--spinner"
3401
+ >
3402
+ <svg
3403
+ aria-hidden="true"
3404
+ class="memori-loading-icon"
3405
+ focusable="false"
3406
+ role="img"
3407
+ viewBox="0 0 1024 1024"
3408
+ xmlns="http://www.w3.org/2000/svg"
3409
+ >
3410
+ <path
3411
+ d="M988 548c-19.9 0-36-16.1-36-36 0-59.4-11.6-117-34.6-171.3a440.45 440.45 0 00-94.3-139.9 437.71 437.71 0 00-139.9-94.3C629 83.6 571.4 72 512 72c-19.9 0-36-16.1-36-36s16.1-36 36-36c69.1 0 136.2 13.5 199.3 40.3C772.3 66 827 103 874 150c47 47 83.9 101.8 109.7 162.7 26.7 63.1 40.2 130.2 40.2 199.3.1 19.9-16 36-35.9 36z"
3412
+ />
3413
+ </svg>
3414
+ </div>
3415
+ </div>
3416
+ </div>
3417
+ </a>
3418
+ </div>
3419
+ </div>
3420
+ </div>
3421
+ </div>
3422
+ <div
3423
+ class="memori-chat--bubble-container memori-chat--bubble-from-user"
3424
+ >
3425
+ <div
3426
+ class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
3427
+ >
3428
+ <p>
3429
+ Ah, grazie! Ciao!
3430
+ </p>
3431
+ </div>
3432
+ <div
3433
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x-15"
3434
+ >
3435
+ <svg
3436
+ aria-hidden="true"
3437
+ focusable="false"
3438
+ role="img"
3439
+ viewBox="0 0 1024 1024"
3440
+ xmlns="http://www.w3.org/2000/svg"
3441
+ >
3442
+ <path
3443
+ d="M858.5 763.6a374 374 0 0 0-80.6-119.5 375.63 375.63 0 0 0-119.5-80.6c-.4-.2-.8-.3-1.2-.5C719.5 518 760 444.7 760 362c0-137-111-248-248-248S264 225 264 362c0 82.7 40.5 156 102.8 201.1-.4.2-.8.3-1.2.5-44.8 18.9-85 46-119.5 80.6a375.63 375.63 0 0 0-80.6 119.5A371.7 371.7 0 0 0 136 901.8a8 8 0 0 0 8 8.2h60c4.4 0 7.9-3.5 8-7.8 2-77.2 33-149.5 87.8-204.3 56.7-56.7 132-87.9 212.2-87.9s155.5 31.2 212.2 87.9C779 752.7 810 825 812 902.2c.1 4.4 3.6 7.8 8 7.8h60a8 8 0 0 0 8-8.2c-1-47.8-10.9-94.3-29.5-138.2zM512 534c-45.9 0-89.1-17.9-121.6-50.4S340 407.9 340 362c0-45.9 17.9-89.1 50.4-121.6S466.1 190 512 190s89.1 17.9 121.6 50.4S684 316.1 684 362c0 45.9-17.9 89.1-50.4 121.6S557.9 534 512 534z"
3444
+ />
3445
+ </svg>
3446
+ </div>
3447
+ </div>
3448
+ <div
3449
+ class="memori-media-widget"
3450
+ />
3451
+ <div
3452
+ class="memori-chat--bubble-container"
3453
+ >
3454
+ <picture
3455
+ class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
3456
+ >
3457
+ <source
3458
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
3459
+ />
3460
+ <img
3461
+ alt="Memori"
3462
+ class="memori-chat--bubble-avatar-img"
3463
+ src="https://api.lorem.space/image/face?hash=0p9vyl1e"
3464
+ />
3465
+ </picture>
3466
+ <div
3467
+ class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
3468
+ >
3469
+ <p>
3470
+ Arrivederci.
3471
+ </p>
3472
+ </div>
3473
+ </div>
3474
+ <div
3475
+ class="memori-media-widget"
3476
+ />
3477
+ <div
3478
+ class="memori-chat--bubble"
3479
+ >
3480
+ <div
3481
+ id="wave"
3482
+ >
3483
+ <span
3484
+ class="dot"
3485
+ />
3486
+ <span
3487
+ class="dot"
3488
+ />
3489
+ <span
3490
+ class="dot"
3491
+ />
3492
+ </div>
3493
+ </div>
3494
+ <div
3495
+ id="end-messages-ref"
3496
+ />
3497
+ </div>
3498
+ </div>
3499
+ <fieldset
3500
+ class="memori-chat-inputs"
3501
+ id="chat-fieldset"
3502
+ >
3503
+ <div
3504
+ class="memori-send-on-enter-menu"
3505
+ data-headlessui-state=""
3506
+ >
3507
+ <button
3508
+ aria-expanded="false"
3509
+ aria-haspopup="true"
3510
+ class="memori-button memori-button--circle memori-button--icon-only memori-share-button--button memori--conversation-button"
3511
+ data-headlessui-state=""
3512
+ id="headlessui-menu-button-:r2:"
3513
+ type="button"
3514
+ >
3515
+ <div
3516
+ class="memori-button--icon"
3517
+ >
3518
+
3519
+ </div>
3520
+ </button>
3521
+ </div>
3522
+ <div
3523
+ class="memori-chat-textarea"
3524
+ data-testid="chat-textarea"
3525
+ >
3526
+ <div
3527
+ class="memori-chat-textarea--inner"
3528
+ >
3529
+ <textarea
3530
+ class="memori-chat-textarea--input"
3531
+ />
3532
+ <div
3533
+ class="memori-chat-textarea--expand"
3534
+ >
3535
+ <button
3536
+ class="memori-chat-textarea--expand-button memori-button memori-button--ghost memori-button--rounded memori-button--icon-only"
3537
+ >
3538
+ <span
3539
+ class="memori-button--icon"
3540
+ >
3541
+ <svg
3542
+ aria-hidden="true"
3543
+ focusable="false"
3544
+ role="img"
3545
+ viewBox="0 0 1024 1024"
3546
+ xmlns="http://www.w3.org/2000/svg"
3547
+ >
3548
+ <path
3549
+ d="M855 160.1l-189.2 23.5c-6.6.8-9.3 8.8-4.7 13.5l54.7 54.7-153.5 153.5a8.03 8.03 0 0 0 0 11.3l45.1 45.1c3.1 3.1 8.2 3.1 11.3 0l153.6-153.6 54.7 54.7a7.94 7.94 0 0 0 13.5-4.7L863.9 169a7.9 7.9 0 0 0-8.9-8.9zM416.6 562.3a8.03 8.03 0 0 0-11.3 0L251.8 715.9l-54.7-54.7a7.94 7.94 0 0 0-13.5 4.7L160.1 855c-.6 5.2 3.7 9.5 8.9 8.9l189.2-23.5c6.6-.8 9.3-8.8 4.7-13.5l-54.7-54.7 153.6-153.6c3.1-3.1 3.1-8.2 0-11.3l-45.2-45z"
3550
+ />
3551
+ </svg>
3552
+ </span>
3553
+ </button>
3554
+ </div>
3555
+ </div>
3556
+ </div>
3557
+ <button
3558
+ class="memori--conversation-button memori-chat-inputs--send memori-button memori-button--circle memori-button--padded memori-button--icon-only"
3559
+ disabled=""
3560
+ title="send"
3561
+ >
3562
+ <span
3563
+ class="memori-button--icon"
3564
+ >
3565
+ <svg
3566
+ aria-hidden="true"
3567
+ focusable="false"
3568
+ role="img"
3569
+ viewBox="0 0 1024 1024"
3570
+ xmlns="http://www.w3.org/2000/svg"
3571
+ >
3572
+ <path
3573
+ d="M931.4 498.9L94.9 79.5c-3.4-1.7-7.3-2.1-11-1.2-8.5 2.1-13.8 10.7-11.7 19.3l86.2 352.2c1.3 5.3 5.2 9.6 10.4 11.3l147.7 50.7-147.6 50.7c-5.2 1.8-9.1 6-10.3 11.3L72.2 926.5c-.9 3.7-.5 7.6 1.2 10.9 3.9 7.9 13.5 11.1 21.5 7.2l836.5-417c3.1-1.5 5.6-4.1 7.2-7.1 3.9-8 .7-17.6-7.2-21.6zM170.8 826.3l50.3-205.6 295.2-101.3c2.3-.8 4.2-2.6 5-5 1.4-4.2-.8-8.7-5-10.2L221.1 403 171 198.2l628 314.9-628.2 313.2z"
3574
+ />
3575
+ </svg>
3576
+ </span>
3577
+ </button>
3578
+ </fieldset>
3579
+ </div>
3580
+ </div>
3581
+ `;