@memori.ai/memori-react 8.8.5 → 8.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +38 -0
- package/README.md +28 -0
- package/dist/components/Avatar/AvatarView/AvatarComponent/avatarComponent.js +0 -1
- package/dist/components/Avatar/AvatarView/AvatarComponent/avatarComponent.js.map +1 -1
- package/dist/components/Avatar/AvatarView/AvatarComponent/components/FullbodyAvatar/fullbodyAvatar.js +0 -10
- package/dist/components/Avatar/AvatarView/AvatarComponent/components/FullbodyAvatar/fullbodyAvatar.js.map +1 -1
- package/dist/components/Avatar/AvatarView/AvatarComponent/components/controllers/AvatarAnimator.js +0 -9
- package/dist/components/Avatar/AvatarView/AvatarComponent/components/controllers/AvatarAnimator.js.map +1 -1
- package/dist/components/Chat/Chat.css +31 -0
- package/dist/components/Chat/Chat.js +18 -4
- package/dist/components/Chat/Chat.js.map +1 -1
- package/dist/components/ChatBubble/ChatBubble.js +1 -2
- package/dist/components/ChatBubble/ChatBubble.js.map +1 -1
- package/dist/components/ChatInputs/ChatInputs.css +23 -0
- package/dist/components/ChatInputs/ChatInputs.d.ts +1 -0
- package/dist/components/ChatInputs/ChatInputs.js +37 -21
- package/dist/components/ChatInputs/ChatInputs.js.map +1 -1
- package/dist/components/ChatTextArea/ChatTextArea.css +31 -0
- package/dist/components/ChatTextArea/ChatTextArea.d.ts +1 -0
- package/dist/components/ChatTextArea/ChatTextArea.js +9 -2
- package/dist/components/ChatTextArea/ChatTextArea.js.map +1 -1
- package/dist/components/FilePreview/FilePreview.css +39 -0
- package/dist/components/Header/Header.js +3 -16
- package/dist/components/Header/Header.js.map +1 -1
- package/dist/components/MediaWidget/LinkItemWidget.js +1 -1
- package/dist/components/MediaWidget/LinkItemWidget.js.map +1 -1
- package/dist/components/MediaWidget/MediaItemWidget.js +5 -9
- package/dist/components/MediaWidget/MediaItemWidget.js.map +1 -1
- package/dist/components/MemoriArtifactSystem/components/ArtifactHandler/ArtifactHandler.js +65 -51
- package/dist/components/MemoriArtifactSystem/components/ArtifactHandler/ArtifactHandler.js.map +1 -1
- package/dist/components/MemoriArtifactSystem/utils/ArtifactAPI.d.ts +5 -0
- package/dist/components/MemoriArtifactSystem/utils/ArtifactAPI.js +287 -0
- package/dist/components/MemoriArtifactSystem/utils/ArtifactAPI.js.map +1 -0
- package/dist/components/MemoriWidget/MemoriWidget.d.ts +12 -0
- package/dist/components/MemoriWidget/MemoriWidget.js +12 -3
- package/dist/components/MemoriWidget/MemoriWidget.js.map +1 -1
- package/dist/components/Snippet/Snippet.js +4 -3
- package/dist/components/Snippet/Snippet.js.map +1 -1
- package/dist/components/StartPanel/StartPanel.css +14 -0
- package/dist/components/StartPanel/StartPanel.js +2 -2
- package/dist/components/StartPanel/StartPanel.js.map +1 -1
- package/dist/components/UploadButton/UploadDocuments/UploadDocuments.js +0 -21
- package/dist/components/UploadButton/UploadDocuments/UploadDocuments.js.map +1 -1
- package/dist/components/VenueWidget/VenueWidget.js +0 -1
- package/dist/components/VenueWidget/VenueWidget.js.map +1 -1
- package/dist/components/layouts/HiddenChat.js +0 -15
- package/dist/components/layouts/HiddenChat.js.map +1 -1
- package/dist/components/layouts/chat.css +2 -2
- package/dist/context/visemeContext.js +0 -6
- package/dist/context/visemeContext.js.map +1 -1
- package/dist/helpers/constants.d.ts +11 -0
- package/dist/helpers/constants.js +24 -2
- package/dist/helpers/constants.js.map +1 -1
- package/dist/helpers/tts/useTTS.js +0 -3
- package/dist/helpers/tts/useTTS.js.map +1 -1
- package/dist/helpers/utils.d.ts +1 -0
- package/dist/helpers/utils.js +6 -1
- package/dist/helpers/utils.js.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/locales/de.json +2 -0
- package/dist/locales/en.json +2 -0
- package/dist/locales/es.json +2 -0
- package/dist/locales/fr.json +2 -0
- package/dist/locales/it.json +2 -0
- package/esm/components/Avatar/AvatarView/AvatarComponent/avatarComponent.js +0 -1
- package/esm/components/Avatar/AvatarView/AvatarComponent/avatarComponent.js.map +1 -1
- package/esm/components/Avatar/AvatarView/AvatarComponent/components/FullbodyAvatar/fullbodyAvatar.js +0 -10
- package/esm/components/Avatar/AvatarView/AvatarComponent/components/FullbodyAvatar/fullbodyAvatar.js.map +1 -1
- package/esm/components/Avatar/AvatarView/AvatarComponent/components/controllers/AvatarAnimator.js +0 -9
- package/esm/components/Avatar/AvatarView/AvatarComponent/components/controllers/AvatarAnimator.js.map +1 -1
- package/esm/components/Chat/Chat.css +31 -0
- package/esm/components/Chat/Chat.js +19 -5
- package/esm/components/Chat/Chat.js.map +1 -1
- package/esm/components/ChatBubble/ChatBubble.js +1 -2
- package/esm/components/ChatBubble/ChatBubble.js.map +1 -1
- package/esm/components/ChatInputs/ChatInputs.css +23 -0
- package/esm/components/ChatInputs/ChatInputs.d.ts +1 -0
- package/esm/components/ChatInputs/ChatInputs.js +37 -21
- package/esm/components/ChatInputs/ChatInputs.js.map +1 -1
- package/esm/components/ChatTextArea/ChatTextArea.css +31 -0
- package/esm/components/ChatTextArea/ChatTextArea.d.ts +1 -0
- package/esm/components/ChatTextArea/ChatTextArea.js +9 -2
- package/esm/components/ChatTextArea/ChatTextArea.js.map +1 -1
- package/esm/components/FilePreview/FilePreview.css +39 -0
- package/esm/components/Header/Header.js +3 -16
- package/esm/components/Header/Header.js.map +1 -1
- package/esm/components/MediaWidget/LinkItemWidget.js +1 -1
- package/esm/components/MediaWidget/LinkItemWidget.js.map +1 -1
- package/esm/components/MediaWidget/MediaItemWidget.js +5 -9
- package/esm/components/MediaWidget/MediaItemWidget.js.map +1 -1
- package/esm/components/MemoriArtifactSystem/components/ArtifactHandler/ArtifactHandler.js +65 -51
- package/esm/components/MemoriArtifactSystem/components/ArtifactHandler/ArtifactHandler.js.map +1 -1
- package/esm/components/MemoriArtifactSystem/utils/ArtifactAPI.d.ts +5 -0
- package/esm/components/MemoriArtifactSystem/utils/ArtifactAPI.js +282 -0
- package/esm/components/MemoriArtifactSystem/utils/ArtifactAPI.js.map +1 -0
- package/esm/components/MemoriWidget/MemoriWidget.d.ts +12 -0
- package/esm/components/MemoriWidget/MemoriWidget.js +12 -3
- package/esm/components/MemoriWidget/MemoriWidget.js.map +1 -1
- package/esm/components/Snippet/Snippet.js +4 -3
- package/esm/components/Snippet/Snippet.js.map +1 -1
- package/esm/components/StartPanel/StartPanel.css +14 -0
- package/esm/components/StartPanel/StartPanel.js +3 -3
- package/esm/components/StartPanel/StartPanel.js.map +1 -1
- package/esm/components/UploadButton/UploadDocuments/UploadDocuments.js +0 -21
- package/esm/components/UploadButton/UploadDocuments/UploadDocuments.js.map +1 -1
- package/esm/components/VenueWidget/VenueWidget.js +0 -1
- package/esm/components/VenueWidget/VenueWidget.js.map +1 -1
- package/esm/components/layouts/HiddenChat.js +0 -15
- package/esm/components/layouts/HiddenChat.js.map +1 -1
- package/esm/components/layouts/chat.css +2 -2
- package/esm/context/visemeContext.js +0 -6
- package/esm/context/visemeContext.js.map +1 -1
- package/esm/helpers/constants.d.ts +11 -0
- package/esm/helpers/constants.js +22 -1
- package/esm/helpers/constants.js.map +1 -1
- package/esm/helpers/tts/useTTS.js +0 -3
- package/esm/helpers/tts/useTTS.js.map +1 -1
- package/esm/helpers/utils.d.ts +1 -0
- package/esm/helpers/utils.js +4 -0
- package/esm/helpers/utils.js.map +1 -1
- package/esm/index.js.map +1 -1
- package/esm/locales/de.json +2 -0
- package/esm/locales/en.json +2 -0
- package/esm/locales/es.json +2 -0
- package/esm/locales/fr.json +2 -0
- package/esm/locales/it.json +2 -0
- package/package.json +1 -1
- package/src/components/Avatar/AvatarView/AvatarComponent/avatarComponent.tsx +0 -1
- package/src/components/Avatar/AvatarView/AvatarComponent/components/FullbodyAvatar/fullbodyAvatar.tsx +0 -17
- package/src/components/Avatar/AvatarView/AvatarComponent/components/controllers/AvatarAnimator.ts +0 -20
- package/src/components/Chat/Chat.css +31 -0
- package/src/components/Chat/Chat.stories.tsx +503 -9
- package/src/components/Chat/Chat.tsx +23 -3
- package/src/components/Chat/__snapshots__/Chat.test.tsx.snap +73 -73
- package/src/components/ChatBubble/ChatBubble.tsx +1 -2
- package/src/components/ChatBubble/__snapshots__/ChatBubble.test.tsx.snap +25 -25
- package/src/components/ChatInputs/ChatInputs.css +23 -0
- package/src/components/ChatInputs/ChatInputs.tsx +36 -14
- package/src/components/ChatTextArea/ChatTextArea.css +31 -0
- package/src/components/ChatTextArea/ChatTextArea.tsx +11 -1
- package/src/components/FilePreview/FilePreview.css +39 -0
- package/src/components/Header/Header.tsx +0 -13
- package/src/components/MediaWidget/LinkItemWidget.tsx +1 -1
- package/src/components/MediaWidget/MediaItemWidget.stories.tsx +33 -0
- package/src/components/MediaWidget/MediaItemWidget.tsx +7 -10
- package/src/components/MediaWidget/__snapshots__/LinkItemWidget.test.tsx.snap +4 -4
- package/src/components/MediaWidget/__snapshots__/MediaItemWidget.test.tsx.snap +6 -6
- package/src/components/MediaWidget/__snapshots__/MediaWidget.test.tsx.snap +2 -2
- package/src/components/MemoriArtifactSystem/ArtifactDrawer.stories.tsx +766 -2
- package/src/components/MemoriArtifactSystem/components/ArtifactHandler/ArtifactHandler.tsx +103 -89
- package/src/components/MemoriArtifactSystem/utils/ArtifactAPI.test.tsx +307 -0
- package/src/components/MemoriArtifactSystem/utils/ArtifactAPI.tsx +373 -0
- package/src/components/MemoriWidget/MemoriWidget.tsx +26 -4
- package/src/components/Snippet/Snippet.tsx +3 -2
- package/src/components/StartPanel/StartPanel.css +14 -0
- package/src/components/StartPanel/StartPanel.tsx +23 -10
- package/src/components/StartPanel/__snapshots__/StartPanel.test.tsx.snap +206 -84
- package/src/components/UploadButton/UploadDocuments/UploadDocuments.tsx +0 -23
- package/src/components/VenueWidget/VenueWidget.tsx +0 -1
- package/src/components/layouts/HiddenChat.tsx +0 -16
- package/src/components/layouts/__snapshots__/Chat.test.tsx.snap +204 -82
- package/src/components/layouts/__snapshots__/FullPage.test.tsx.snap +408 -164
- package/src/components/layouts/__snapshots__/HiddenChat.test.tsx.snap +204 -82
- package/src/components/layouts/__snapshots__/Totem.test.tsx.snap +204 -82
- package/src/components/layouts/__snapshots__/ZoomedFullBody.test.tsx.snap +204 -82
- package/src/components/layouts/chat.css +2 -2
- package/src/context/visemeContext.tsx +0 -7
- package/src/helpers/constants.ts +28 -3
- package/src/helpers/tts/useTTS.ts +0 -2
- package/src/helpers/utils.ts +5 -0
- package/src/index.tsx +0 -1
- package/src/locales/de.json +2 -0
- package/src/locales/en.json +2 -0
- package/src/locales/es.json +2 -0
- package/src/locales/fr.json +2 -0
- package/src/locales/it.json +2 -0
|
@@ -20,7 +20,7 @@ exports[`renders Chat unchanged 1`] = `
|
|
|
20
20
|
class="memori-chat--bubble-initial"
|
|
21
21
|
/>
|
|
22
22
|
<div
|
|
23
|
-
class="memori-chat--bubble-container"
|
|
23
|
+
class="memori-chat--bubble-container memori-chat-scroll-item"
|
|
24
24
|
>
|
|
25
25
|
<picture
|
|
26
26
|
class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
|
|
@@ -86,7 +86,7 @@ exports[`renders Chat unchanged 1`] = `
|
|
|
86
86
|
class="memori-media-widget"
|
|
87
87
|
/>
|
|
88
88
|
<div
|
|
89
|
-
class="memori-chat--bubble-container memori-chat--bubble-from-user"
|
|
89
|
+
class="memori-chat--bubble-container memori-chat-scroll-item memori-chat--bubble-from-user"
|
|
90
90
|
>
|
|
91
91
|
<div
|
|
92
92
|
class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
|
|
@@ -129,7 +129,7 @@ exports[`renders Chat unchanged 1`] = `
|
|
|
129
129
|
class="memori-media-widget"
|
|
130
130
|
/>
|
|
131
131
|
<div
|
|
132
|
-
class="memori-chat--bubble-container"
|
|
132
|
+
class="memori-chat--bubble-container memori-chat-scroll-item"
|
|
133
133
|
>
|
|
134
134
|
<picture
|
|
135
135
|
class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
|
|
@@ -195,7 +195,7 @@ exports[`renders Chat unchanged 1`] = `
|
|
|
195
195
|
class="memori-media-widget"
|
|
196
196
|
/>
|
|
197
197
|
<div
|
|
198
|
-
class="memori-chat--bubble-container memori-chat--bubble-from-user"
|
|
198
|
+
class="memori-chat--bubble-container memori-chat-scroll-item memori-chat--bubble-from-user"
|
|
199
199
|
>
|
|
200
200
|
<div
|
|
201
201
|
class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
|
|
@@ -238,7 +238,7 @@ exports[`renders Chat unchanged 1`] = `
|
|
|
238
238
|
class="memori-media-widget"
|
|
239
239
|
/>
|
|
240
240
|
<div
|
|
241
|
-
class="memori-chat--bubble-container"
|
|
241
|
+
class="memori-chat--bubble-container memori-chat-scroll-item"
|
|
242
242
|
>
|
|
243
243
|
<picture
|
|
244
244
|
class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
|
|
@@ -307,7 +307,7 @@ exports[`renders Chat unchanged 1`] = `
|
|
|
307
307
|
class="memori-link-items"
|
|
308
308
|
>
|
|
309
309
|
<div
|
|
310
|
-
class="memori-link-items--grid memori-link-items--agent"
|
|
310
|
+
class="memori-link-items--grid memori-chat-scroll-item memori-link-items--agent"
|
|
311
311
|
>
|
|
312
312
|
<div
|
|
313
313
|
class="memori-link-item ease-out duration-500 delay-0 opacity-0 scale-95"
|
|
@@ -380,7 +380,7 @@ exports[`renders Chat unchanged 1`] = `
|
|
|
380
380
|
</div>
|
|
381
381
|
</div>
|
|
382
382
|
<div
|
|
383
|
-
class="memori-chat--bubble-container memori-chat--bubble-from-user"
|
|
383
|
+
class="memori-chat--bubble-container memori-chat-scroll-item memori-chat--bubble-from-user"
|
|
384
384
|
>
|
|
385
385
|
<div
|
|
386
386
|
class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
|
|
@@ -423,7 +423,7 @@ exports[`renders Chat unchanged 1`] = `
|
|
|
423
423
|
class="memori-media-widget"
|
|
424
424
|
/>
|
|
425
425
|
<div
|
|
426
|
-
class="memori-chat--bubble-container"
|
|
426
|
+
class="memori-chat--bubble-container memori-chat-scroll-item"
|
|
427
427
|
>
|
|
428
428
|
<picture
|
|
429
429
|
class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
|
|
@@ -580,7 +580,7 @@ exports[`renders Chat with context vars unchanged 1`] = `
|
|
|
580
580
|
class="memori-chat--bubble-initial"
|
|
581
581
|
/>
|
|
582
582
|
<div
|
|
583
|
-
class="memori-chat--bubble-container"
|
|
583
|
+
class="memori-chat--bubble-container memori-chat-scroll-item"
|
|
584
584
|
>
|
|
585
585
|
<picture
|
|
586
586
|
class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
|
|
@@ -646,7 +646,7 @@ exports[`renders Chat with context vars unchanged 1`] = `
|
|
|
646
646
|
class="memori-media-widget"
|
|
647
647
|
/>
|
|
648
648
|
<div
|
|
649
|
-
class="memori-chat--bubble-container memori-chat--bubble-from-user"
|
|
649
|
+
class="memori-chat--bubble-container memori-chat-scroll-item memori-chat--bubble-from-user"
|
|
650
650
|
>
|
|
651
651
|
<div
|
|
652
652
|
class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
|
|
@@ -689,7 +689,7 @@ exports[`renders Chat with context vars unchanged 1`] = `
|
|
|
689
689
|
class="memori-media-widget"
|
|
690
690
|
/>
|
|
691
691
|
<div
|
|
692
|
-
class="memori-chat--bubble-container"
|
|
692
|
+
class="memori-chat--bubble-container memori-chat-scroll-item"
|
|
693
693
|
>
|
|
694
694
|
<picture
|
|
695
695
|
class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
|
|
@@ -755,7 +755,7 @@ exports[`renders Chat with context vars unchanged 1`] = `
|
|
|
755
755
|
class="memori-media-widget"
|
|
756
756
|
/>
|
|
757
757
|
<div
|
|
758
|
-
class="memori-chat--bubble-container memori-chat--bubble-from-user"
|
|
758
|
+
class="memori-chat--bubble-container memori-chat-scroll-item memori-chat--bubble-from-user"
|
|
759
759
|
>
|
|
760
760
|
<div
|
|
761
761
|
class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
|
|
@@ -798,7 +798,7 @@ exports[`renders Chat with context vars unchanged 1`] = `
|
|
|
798
798
|
class="memori-media-widget"
|
|
799
799
|
/>
|
|
800
800
|
<div
|
|
801
|
-
class="memori-chat--bubble-container"
|
|
801
|
+
class="memori-chat--bubble-container memori-chat-scroll-item"
|
|
802
802
|
>
|
|
803
803
|
<picture
|
|
804
804
|
class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
|
|
@@ -882,7 +882,7 @@ exports[`renders Chat with context vars unchanged 1`] = `
|
|
|
882
882
|
class="memori-link-items"
|
|
883
883
|
>
|
|
884
884
|
<div
|
|
885
|
-
class="memori-link-items--grid memori-link-items--agent"
|
|
885
|
+
class="memori-link-items--grid memori-chat-scroll-item memori-link-items--agent"
|
|
886
886
|
>
|
|
887
887
|
<div
|
|
888
888
|
class="memori-link-item ease-out duration-500 delay-0 opacity-0 scale-95"
|
|
@@ -955,7 +955,7 @@ exports[`renders Chat with context vars unchanged 1`] = `
|
|
|
955
955
|
</div>
|
|
956
956
|
</div>
|
|
957
957
|
<div
|
|
958
|
-
class="memori-chat--bubble-container memori-chat--bubble-from-user"
|
|
958
|
+
class="memori-chat--bubble-container memori-chat-scroll-item memori-chat--bubble-from-user"
|
|
959
959
|
>
|
|
960
960
|
<div
|
|
961
961
|
class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
|
|
@@ -998,7 +998,7 @@ exports[`renders Chat with context vars unchanged 1`] = `
|
|
|
998
998
|
class="memori-media-widget"
|
|
999
999
|
/>
|
|
1000
1000
|
<div
|
|
1001
|
-
class="memori-chat--bubble-container"
|
|
1001
|
+
class="memori-chat--bubble-container memori-chat-scroll-item"
|
|
1002
1002
|
>
|
|
1003
1003
|
<picture
|
|
1004
1004
|
class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
|
|
@@ -1170,7 +1170,7 @@ exports[`renders Chat with custom user avatar as react element unchanged 1`] = `
|
|
|
1170
1170
|
class="memori-chat--bubble-initial"
|
|
1171
1171
|
/>
|
|
1172
1172
|
<div
|
|
1173
|
-
class="memori-chat--bubble-container"
|
|
1173
|
+
class="memori-chat--bubble-container memori-chat-scroll-item"
|
|
1174
1174
|
>
|
|
1175
1175
|
<picture
|
|
1176
1176
|
class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
|
|
@@ -1236,7 +1236,7 @@ exports[`renders Chat with custom user avatar as react element unchanged 1`] = `
|
|
|
1236
1236
|
class="memori-media-widget"
|
|
1237
1237
|
/>
|
|
1238
1238
|
<div
|
|
1239
|
-
class="memori-chat--bubble-container memori-chat--bubble-from-user"
|
|
1239
|
+
class="memori-chat--bubble-container memori-chat-scroll-item memori-chat--bubble-from-user"
|
|
1240
1240
|
>
|
|
1241
1241
|
<div
|
|
1242
1242
|
class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
|
|
@@ -1271,7 +1271,7 @@ exports[`renders Chat with custom user avatar as react element unchanged 1`] = `
|
|
|
1271
1271
|
class="memori-media-widget"
|
|
1272
1272
|
/>
|
|
1273
1273
|
<div
|
|
1274
|
-
class="memori-chat--bubble-container"
|
|
1274
|
+
class="memori-chat--bubble-container memori-chat-scroll-item"
|
|
1275
1275
|
>
|
|
1276
1276
|
<picture
|
|
1277
1277
|
class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
|
|
@@ -1337,7 +1337,7 @@ exports[`renders Chat with custom user avatar as react element unchanged 1`] = `
|
|
|
1337
1337
|
class="memori-media-widget"
|
|
1338
1338
|
/>
|
|
1339
1339
|
<div
|
|
1340
|
-
class="memori-chat--bubble-container memori-chat--bubble-from-user"
|
|
1340
|
+
class="memori-chat--bubble-container memori-chat-scroll-item memori-chat--bubble-from-user"
|
|
1341
1341
|
>
|
|
1342
1342
|
<div
|
|
1343
1343
|
class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
|
|
@@ -1372,7 +1372,7 @@ exports[`renders Chat with custom user avatar as react element unchanged 1`] = `
|
|
|
1372
1372
|
class="memori-media-widget"
|
|
1373
1373
|
/>
|
|
1374
1374
|
<div
|
|
1375
|
-
class="memori-chat--bubble-container"
|
|
1375
|
+
class="memori-chat--bubble-container memori-chat-scroll-item"
|
|
1376
1376
|
>
|
|
1377
1377
|
<picture
|
|
1378
1378
|
class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
|
|
@@ -1441,7 +1441,7 @@ exports[`renders Chat with custom user avatar as react element unchanged 1`] = `
|
|
|
1441
1441
|
class="memori-link-items"
|
|
1442
1442
|
>
|
|
1443
1443
|
<div
|
|
1444
|
-
class="memori-link-items--grid memori-link-items--agent"
|
|
1444
|
+
class="memori-link-items--grid memori-chat-scroll-item memori-link-items--agent"
|
|
1445
1445
|
>
|
|
1446
1446
|
<div
|
|
1447
1447
|
class="memori-link-item ease-out duration-500 delay-0 opacity-0 scale-95"
|
|
@@ -1514,7 +1514,7 @@ exports[`renders Chat with custom user avatar as react element unchanged 1`] = `
|
|
|
1514
1514
|
</div>
|
|
1515
1515
|
</div>
|
|
1516
1516
|
<div
|
|
1517
|
-
class="memori-chat--bubble-container memori-chat--bubble-from-user"
|
|
1517
|
+
class="memori-chat--bubble-container memori-chat-scroll-item memori-chat--bubble-from-user"
|
|
1518
1518
|
>
|
|
1519
1519
|
<div
|
|
1520
1520
|
class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
|
|
@@ -1549,7 +1549,7 @@ exports[`renders Chat with custom user avatar as react element unchanged 1`] = `
|
|
|
1549
1549
|
class="memori-media-widget"
|
|
1550
1550
|
/>
|
|
1551
1551
|
<div
|
|
1552
|
-
class="memori-chat--bubble-container"
|
|
1552
|
+
class="memori-chat--bubble-container memori-chat-scroll-item"
|
|
1553
1553
|
>
|
|
1554
1554
|
<picture
|
|
1555
1555
|
class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
|
|
@@ -1706,7 +1706,7 @@ exports[`renders Chat with custom user avatar unchanged 1`] = `
|
|
|
1706
1706
|
class="memori-chat--bubble-initial"
|
|
1707
1707
|
/>
|
|
1708
1708
|
<div
|
|
1709
|
-
class="memori-chat--bubble-container"
|
|
1709
|
+
class="memori-chat--bubble-container memori-chat-scroll-item"
|
|
1710
1710
|
>
|
|
1711
1711
|
<picture
|
|
1712
1712
|
class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
|
|
@@ -1772,7 +1772,7 @@ exports[`renders Chat with custom user avatar unchanged 1`] = `
|
|
|
1772
1772
|
class="memori-media-widget"
|
|
1773
1773
|
/>
|
|
1774
1774
|
<div
|
|
1775
|
-
class="memori-chat--bubble-container memori-chat--bubble-from-user"
|
|
1775
|
+
class="memori-chat--bubble-container memori-chat-scroll-item memori-chat--bubble-from-user"
|
|
1776
1776
|
>
|
|
1777
1777
|
<div
|
|
1778
1778
|
class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
|
|
@@ -1809,7 +1809,7 @@ exports[`renders Chat with custom user avatar unchanged 1`] = `
|
|
|
1809
1809
|
class="memori-media-widget"
|
|
1810
1810
|
/>
|
|
1811
1811
|
<div
|
|
1812
|
-
class="memori-chat--bubble-container"
|
|
1812
|
+
class="memori-chat--bubble-container memori-chat-scroll-item"
|
|
1813
1813
|
>
|
|
1814
1814
|
<picture
|
|
1815
1815
|
class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
|
|
@@ -1875,7 +1875,7 @@ exports[`renders Chat with custom user avatar unchanged 1`] = `
|
|
|
1875
1875
|
class="memori-media-widget"
|
|
1876
1876
|
/>
|
|
1877
1877
|
<div
|
|
1878
|
-
class="memori-chat--bubble-container memori-chat--bubble-from-user"
|
|
1878
|
+
class="memori-chat--bubble-container memori-chat-scroll-item memori-chat--bubble-from-user"
|
|
1879
1879
|
>
|
|
1880
1880
|
<div
|
|
1881
1881
|
class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
|
|
@@ -1912,7 +1912,7 @@ exports[`renders Chat with custom user avatar unchanged 1`] = `
|
|
|
1912
1912
|
class="memori-media-widget"
|
|
1913
1913
|
/>
|
|
1914
1914
|
<div
|
|
1915
|
-
class="memori-chat--bubble-container"
|
|
1915
|
+
class="memori-chat--bubble-container memori-chat-scroll-item"
|
|
1916
1916
|
>
|
|
1917
1917
|
<picture
|
|
1918
1918
|
class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
|
|
@@ -1981,7 +1981,7 @@ exports[`renders Chat with custom user avatar unchanged 1`] = `
|
|
|
1981
1981
|
class="memori-link-items"
|
|
1982
1982
|
>
|
|
1983
1983
|
<div
|
|
1984
|
-
class="memori-link-items--grid memori-link-items--agent"
|
|
1984
|
+
class="memori-link-items--grid memori-chat-scroll-item memori-link-items--agent"
|
|
1985
1985
|
>
|
|
1986
1986
|
<div
|
|
1987
1987
|
class="memori-link-item ease-out duration-500 delay-0 opacity-0 scale-95"
|
|
@@ -2054,7 +2054,7 @@ exports[`renders Chat with custom user avatar unchanged 1`] = `
|
|
|
2054
2054
|
</div>
|
|
2055
2055
|
</div>
|
|
2056
2056
|
<div
|
|
2057
|
-
class="memori-chat--bubble-container memori-chat--bubble-from-user"
|
|
2057
|
+
class="memori-chat--bubble-container memori-chat-scroll-item memori-chat--bubble-from-user"
|
|
2058
2058
|
>
|
|
2059
2059
|
<div
|
|
2060
2060
|
class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
|
|
@@ -2091,7 +2091,7 @@ exports[`renders Chat with custom user avatar unchanged 1`] = `
|
|
|
2091
2091
|
class="memori-media-widget"
|
|
2092
2092
|
/>
|
|
2093
2093
|
<div
|
|
2094
|
-
class="memori-chat--bubble-container"
|
|
2094
|
+
class="memori-chat--bubble-container memori-chat-scroll-item"
|
|
2095
2095
|
>
|
|
2096
2096
|
<picture
|
|
2097
2097
|
class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
|
|
@@ -2248,7 +2248,7 @@ exports[`renders Chat with dates unchanged 1`] = `
|
|
|
2248
2248
|
class="memori-chat--bubble-initial"
|
|
2249
2249
|
/>
|
|
2250
2250
|
<div
|
|
2251
|
-
class="memori-chat--bubble-container"
|
|
2251
|
+
class="memori-chat--bubble-container memori-chat-scroll-item"
|
|
2252
2252
|
>
|
|
2253
2253
|
<picture
|
|
2254
2254
|
class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
|
|
@@ -2319,7 +2319,7 @@ exports[`renders Chat with dates unchanged 1`] = `
|
|
|
2319
2319
|
class="memori-media-widget"
|
|
2320
2320
|
/>
|
|
2321
2321
|
<div
|
|
2322
|
-
class="memori-chat--bubble-container memori-chat--bubble-from-user"
|
|
2322
|
+
class="memori-chat--bubble-container memori-chat-scroll-item memori-chat--bubble-from-user"
|
|
2323
2323
|
>
|
|
2324
2324
|
<div
|
|
2325
2325
|
class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
|
|
@@ -2367,7 +2367,7 @@ exports[`renders Chat with dates unchanged 1`] = `
|
|
|
2367
2367
|
class="memori-media-widget"
|
|
2368
2368
|
/>
|
|
2369
2369
|
<div
|
|
2370
|
-
class="memori-chat--bubble-container"
|
|
2370
|
+
class="memori-chat--bubble-container memori-chat-scroll-item"
|
|
2371
2371
|
>
|
|
2372
2372
|
<picture
|
|
2373
2373
|
class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
|
|
@@ -2438,7 +2438,7 @@ exports[`renders Chat with dates unchanged 1`] = `
|
|
|
2438
2438
|
class="memori-media-widget"
|
|
2439
2439
|
/>
|
|
2440
2440
|
<div
|
|
2441
|
-
class="memori-chat--bubble-container memori-chat--bubble-from-user"
|
|
2441
|
+
class="memori-chat--bubble-container memori-chat-scroll-item memori-chat--bubble-from-user"
|
|
2442
2442
|
>
|
|
2443
2443
|
<div
|
|
2444
2444
|
class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
|
|
@@ -2486,7 +2486,7 @@ exports[`renders Chat with dates unchanged 1`] = `
|
|
|
2486
2486
|
class="memori-media-widget"
|
|
2487
2487
|
/>
|
|
2488
2488
|
<div
|
|
2489
|
-
class="memori-chat--bubble-container"
|
|
2489
|
+
class="memori-chat--bubble-container memori-chat-scroll-item"
|
|
2490
2490
|
>
|
|
2491
2491
|
<picture
|
|
2492
2492
|
class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
|
|
@@ -2560,7 +2560,7 @@ exports[`renders Chat with dates unchanged 1`] = `
|
|
|
2560
2560
|
class="memori-link-items"
|
|
2561
2561
|
>
|
|
2562
2562
|
<div
|
|
2563
|
-
class="memori-link-items--grid memori-link-items--agent"
|
|
2563
|
+
class="memori-link-items--grid memori-chat-scroll-item memori-link-items--agent"
|
|
2564
2564
|
>
|
|
2565
2565
|
<div
|
|
2566
2566
|
class="memori-link-item ease-out duration-500 delay-0 opacity-0 scale-95"
|
|
@@ -2633,7 +2633,7 @@ exports[`renders Chat with dates unchanged 1`] = `
|
|
|
2633
2633
|
</div>
|
|
2634
2634
|
</div>
|
|
2635
2635
|
<div
|
|
2636
|
-
class="memori-chat--bubble-container memori-chat--bubble-from-user"
|
|
2636
|
+
class="memori-chat--bubble-container memori-chat-scroll-item memori-chat--bubble-from-user"
|
|
2637
2637
|
>
|
|
2638
2638
|
<div
|
|
2639
2639
|
class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
|
|
@@ -2681,7 +2681,7 @@ exports[`renders Chat with dates unchanged 1`] = `
|
|
|
2681
2681
|
class="memori-media-widget"
|
|
2682
2682
|
/>
|
|
2683
2683
|
<div
|
|
2684
|
-
class="memori-chat--bubble-container"
|
|
2684
|
+
class="memori-chat--bubble-container memori-chat-scroll-item"
|
|
2685
2685
|
>
|
|
2686
2686
|
<picture
|
|
2687
2687
|
class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
|
|
@@ -2843,7 +2843,7 @@ exports[`renders Chat with hints unchanged 1`] = `
|
|
|
2843
2843
|
class="memori-chat--bubble-initial"
|
|
2844
2844
|
/>
|
|
2845
2845
|
<div
|
|
2846
|
-
class="memori-chat--bubble-container"
|
|
2846
|
+
class="memori-chat--bubble-container memori-chat-scroll-item"
|
|
2847
2847
|
>
|
|
2848
2848
|
<picture
|
|
2849
2849
|
class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
|
|
@@ -2909,7 +2909,7 @@ exports[`renders Chat with hints unchanged 1`] = `
|
|
|
2909
2909
|
class="memori-media-widget"
|
|
2910
2910
|
/>
|
|
2911
2911
|
<div
|
|
2912
|
-
class="memori-chat--bubble-container memori-chat--bubble-from-user"
|
|
2912
|
+
class="memori-chat--bubble-container memori-chat-scroll-item memori-chat--bubble-from-user"
|
|
2913
2913
|
>
|
|
2914
2914
|
<div
|
|
2915
2915
|
class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
|
|
@@ -2952,7 +2952,7 @@ exports[`renders Chat with hints unchanged 1`] = `
|
|
|
2952
2952
|
class="memori-media-widget"
|
|
2953
2953
|
/>
|
|
2954
2954
|
<div
|
|
2955
|
-
class="memori-chat--bubble-container"
|
|
2955
|
+
class="memori-chat--bubble-container memori-chat-scroll-item"
|
|
2956
2956
|
>
|
|
2957
2957
|
<picture
|
|
2958
2958
|
class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
|
|
@@ -3018,7 +3018,7 @@ exports[`renders Chat with hints unchanged 1`] = `
|
|
|
3018
3018
|
class="memori-media-widget"
|
|
3019
3019
|
/>
|
|
3020
3020
|
<div
|
|
3021
|
-
class="memori-chat--bubble-container memori-chat--bubble-from-user"
|
|
3021
|
+
class="memori-chat--bubble-container memori-chat-scroll-item memori-chat--bubble-from-user"
|
|
3022
3022
|
>
|
|
3023
3023
|
<div
|
|
3024
3024
|
class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
|
|
@@ -3061,7 +3061,7 @@ exports[`renders Chat with hints unchanged 1`] = `
|
|
|
3061
3061
|
class="memori-media-widget"
|
|
3062
3062
|
/>
|
|
3063
3063
|
<div
|
|
3064
|
-
class="memori-chat--bubble-container"
|
|
3064
|
+
class="memori-chat--bubble-container memori-chat-scroll-item"
|
|
3065
3065
|
>
|
|
3066
3066
|
<picture
|
|
3067
3067
|
class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
|
|
@@ -3130,7 +3130,7 @@ exports[`renders Chat with hints unchanged 1`] = `
|
|
|
3130
3130
|
class="memori-link-items"
|
|
3131
3131
|
>
|
|
3132
3132
|
<div
|
|
3133
|
-
class="memori-link-items--grid memori-link-items--agent"
|
|
3133
|
+
class="memori-link-items--grid memori-chat-scroll-item memori-link-items--agent"
|
|
3134
3134
|
>
|
|
3135
3135
|
<div
|
|
3136
3136
|
class="memori-link-item ease-out duration-500 delay-0 opacity-0 scale-95"
|
|
@@ -3203,7 +3203,7 @@ exports[`renders Chat with hints unchanged 1`] = `
|
|
|
3203
3203
|
</div>
|
|
3204
3204
|
</div>
|
|
3205
3205
|
<div
|
|
3206
|
-
class="memori-chat--bubble-container memori-chat--bubble-from-user"
|
|
3206
|
+
class="memori-chat--bubble-container memori-chat-scroll-item memori-chat--bubble-from-user"
|
|
3207
3207
|
>
|
|
3208
3208
|
<div
|
|
3209
3209
|
class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
|
|
@@ -3246,7 +3246,7 @@ exports[`renders Chat with hints unchanged 1`] = `
|
|
|
3246
3246
|
class="memori-media-widget"
|
|
3247
3247
|
/>
|
|
3248
3248
|
<div
|
|
3249
|
-
class="memori-chat--bubble-container"
|
|
3249
|
+
class="memori-chat--bubble-container memori-chat-scroll-item"
|
|
3250
3250
|
>
|
|
3251
3251
|
<picture
|
|
3252
3252
|
class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
|
|
@@ -3429,7 +3429,7 @@ exports[`renders Chat with media unchanged 1`] = `
|
|
|
3429
3429
|
class="memori-chat--bubble-initial"
|
|
3430
3430
|
/>
|
|
3431
3431
|
<div
|
|
3432
|
-
class="memori-chat--bubble-container"
|
|
3432
|
+
class="memori-chat--bubble-container memori-chat-scroll-item"
|
|
3433
3433
|
>
|
|
3434
3434
|
<picture
|
|
3435
3435
|
class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
|
|
@@ -3495,7 +3495,7 @@ exports[`renders Chat with media unchanged 1`] = `
|
|
|
3495
3495
|
class="memori-media-widget"
|
|
3496
3496
|
/>
|
|
3497
3497
|
<div
|
|
3498
|
-
class="memori-chat--bubble-container memori-chat--bubble-from-user"
|
|
3498
|
+
class="memori-chat--bubble-container memori-chat-scroll-item memori-chat--bubble-from-user"
|
|
3499
3499
|
>
|
|
3500
3500
|
<div
|
|
3501
3501
|
class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
|
|
@@ -3538,7 +3538,7 @@ exports[`renders Chat with media unchanged 1`] = `
|
|
|
3538
3538
|
class="memori-media-widget"
|
|
3539
3539
|
/>
|
|
3540
3540
|
<div
|
|
3541
|
-
class="memori-chat--bubble-container"
|
|
3541
|
+
class="memori-chat--bubble-container memori-chat-scroll-item"
|
|
3542
3542
|
>
|
|
3543
3543
|
<picture
|
|
3544
3544
|
class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
|
|
@@ -3604,7 +3604,7 @@ exports[`renders Chat with media unchanged 1`] = `
|
|
|
3604
3604
|
class="memori-media-widget"
|
|
3605
3605
|
/>
|
|
3606
3606
|
<div
|
|
3607
|
-
class="memori-chat--bubble-container memori-chat--bubble-from-user"
|
|
3607
|
+
class="memori-chat--bubble-container memori-chat-scroll-item memori-chat--bubble-from-user"
|
|
3608
3608
|
>
|
|
3609
3609
|
<div
|
|
3610
3610
|
class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
|
|
@@ -3647,7 +3647,7 @@ exports[`renders Chat with media unchanged 1`] = `
|
|
|
3647
3647
|
class="memori-media-widget"
|
|
3648
3648
|
/>
|
|
3649
3649
|
<div
|
|
3650
|
-
class="memori-chat--bubble-container"
|
|
3650
|
+
class="memori-chat--bubble-container memori-chat-scroll-item"
|
|
3651
3651
|
>
|
|
3652
3652
|
<picture
|
|
3653
3653
|
class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
|
|
@@ -3716,7 +3716,7 @@ exports[`renders Chat with media unchanged 1`] = `
|
|
|
3716
3716
|
class="memori-media-items"
|
|
3717
3717
|
>
|
|
3718
3718
|
<div
|
|
3719
|
-
class="memori-media-items--grid memori-media-items--agent"
|
|
3719
|
+
class="memori-media-items--grid memori-chat-scroll-item memori-media-items--agent"
|
|
3720
3720
|
>
|
|
3721
3721
|
<div
|
|
3722
3722
|
class="memori-media-item ease-out duration-500 delay-0 opacity-0 scale-95"
|
|
@@ -3916,7 +3916,7 @@ exports[`renders Chat with media unchanged 1`] = `
|
|
|
3916
3916
|
class="memori-link-items"
|
|
3917
3917
|
>
|
|
3918
3918
|
<div
|
|
3919
|
-
class="memori-link-items--grid memori-link-items--agent"
|
|
3919
|
+
class="memori-link-items--grid memori-chat-scroll-item memori-link-items--agent"
|
|
3920
3920
|
>
|
|
3921
3921
|
<div
|
|
3922
3922
|
class="memori-link-item ease-out duration-500 delay-0 opacity-0 scale-95"
|
|
@@ -4190,7 +4190,7 @@ exports[`renders Chat with media unchanged 1`] = `
|
|
|
4190
4190
|
</div>
|
|
4191
4191
|
</div>
|
|
4192
4192
|
<div
|
|
4193
|
-
class="memori-chat--bubble-container memori-chat--bubble-from-user"
|
|
4193
|
+
class="memori-chat--bubble-container memori-chat-scroll-item memori-chat--bubble-from-user"
|
|
4194
4194
|
>
|
|
4195
4195
|
<div
|
|
4196
4196
|
class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
|
|
@@ -4233,7 +4233,7 @@ exports[`renders Chat with media unchanged 1`] = `
|
|
|
4233
4233
|
class="memori-media-widget"
|
|
4234
4234
|
/>
|
|
4235
4235
|
<div
|
|
4236
|
-
class="memori-chat--bubble-container"
|
|
4236
|
+
class="memori-chat--bubble-container memori-chat-scroll-item"
|
|
4237
4237
|
>
|
|
4238
4238
|
<picture
|
|
4239
4239
|
class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
|
|
@@ -4390,7 +4390,7 @@ exports[`renders Chat with memori typing unchanged 1`] = `
|
|
|
4390
4390
|
class="memori-chat--bubble-initial"
|
|
4391
4391
|
/>
|
|
4392
4392
|
<div
|
|
4393
|
-
class="memori-chat--bubble-container"
|
|
4393
|
+
class="memori-chat--bubble-container memori-chat-scroll-item"
|
|
4394
4394
|
>
|
|
4395
4395
|
<picture
|
|
4396
4396
|
class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
|
|
@@ -4456,7 +4456,7 @@ exports[`renders Chat with memori typing unchanged 1`] = `
|
|
|
4456
4456
|
class="memori-media-widget"
|
|
4457
4457
|
/>
|
|
4458
4458
|
<div
|
|
4459
|
-
class="memori-chat--bubble-container memori-chat--bubble-from-user"
|
|
4459
|
+
class="memori-chat--bubble-container memori-chat-scroll-item memori-chat--bubble-from-user"
|
|
4460
4460
|
>
|
|
4461
4461
|
<div
|
|
4462
4462
|
class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
|
|
@@ -4499,7 +4499,7 @@ exports[`renders Chat with memori typing unchanged 1`] = `
|
|
|
4499
4499
|
class="memori-media-widget"
|
|
4500
4500
|
/>
|
|
4501
4501
|
<div
|
|
4502
|
-
class="memori-chat--bubble-container"
|
|
4502
|
+
class="memori-chat--bubble-container memori-chat-scroll-item"
|
|
4503
4503
|
>
|
|
4504
4504
|
<picture
|
|
4505
4505
|
class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
|
|
@@ -4565,7 +4565,7 @@ exports[`renders Chat with memori typing unchanged 1`] = `
|
|
|
4565
4565
|
class="memori-media-widget"
|
|
4566
4566
|
/>
|
|
4567
4567
|
<div
|
|
4568
|
-
class="memori-chat--bubble-container memori-chat--bubble-from-user"
|
|
4568
|
+
class="memori-chat--bubble-container memori-chat-scroll-item memori-chat--bubble-from-user"
|
|
4569
4569
|
>
|
|
4570
4570
|
<div
|
|
4571
4571
|
class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
|
|
@@ -4608,7 +4608,7 @@ exports[`renders Chat with memori typing unchanged 1`] = `
|
|
|
4608
4608
|
class="memori-media-widget"
|
|
4609
4609
|
/>
|
|
4610
4610
|
<div
|
|
4611
|
-
class="memori-chat--bubble-container"
|
|
4611
|
+
class="memori-chat--bubble-container memori-chat-scroll-item"
|
|
4612
4612
|
>
|
|
4613
4613
|
<picture
|
|
4614
4614
|
class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
|
|
@@ -4677,7 +4677,7 @@ exports[`renders Chat with memori typing unchanged 1`] = `
|
|
|
4677
4677
|
class="memori-link-items"
|
|
4678
4678
|
>
|
|
4679
4679
|
<div
|
|
4680
|
-
class="memori-link-items--grid memori-link-items--agent"
|
|
4680
|
+
class="memori-link-items--grid memori-chat-scroll-item memori-link-items--agent"
|
|
4681
4681
|
>
|
|
4682
4682
|
<div
|
|
4683
4683
|
class="memori-link-item ease-out duration-500 delay-0 opacity-0 scale-95"
|
|
@@ -4750,7 +4750,7 @@ exports[`renders Chat with memori typing unchanged 1`] = `
|
|
|
4750
4750
|
</div>
|
|
4751
4751
|
</div>
|
|
4752
4752
|
<div
|
|
4753
|
-
class="memori-chat--bubble-container memori-chat--bubble-from-user"
|
|
4753
|
+
class="memori-chat--bubble-container memori-chat-scroll-item memori-chat--bubble-from-user"
|
|
4754
4754
|
>
|
|
4755
4755
|
<div
|
|
4756
4756
|
class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
|
|
@@ -4793,7 +4793,7 @@ exports[`renders Chat with memori typing unchanged 1`] = `
|
|
|
4793
4793
|
class="memori-media-widget"
|
|
4794
4794
|
/>
|
|
4795
4795
|
<div
|
|
4796
|
-
class="memori-chat--bubble-container"
|
|
4796
|
+
class="memori-chat--bubble-container memori-chat-scroll-item"
|
|
4797
4797
|
>
|
|
4798
4798
|
<picture
|
|
4799
4799
|
class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
|
|
@@ -4971,7 +4971,7 @@ exports[`renders Chat with user unchanged 1`] = `
|
|
|
4971
4971
|
class="memori-chat--bubble-initial"
|
|
4972
4972
|
/>
|
|
4973
4973
|
<div
|
|
4974
|
-
class="memori-chat--bubble-container"
|
|
4974
|
+
class="memori-chat--bubble-container memori-chat-scroll-item"
|
|
4975
4975
|
>
|
|
4976
4976
|
<picture
|
|
4977
4977
|
class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
|
|
@@ -5037,7 +5037,7 @@ exports[`renders Chat with user unchanged 1`] = `
|
|
|
5037
5037
|
class="memori-media-widget"
|
|
5038
5038
|
/>
|
|
5039
5039
|
<div
|
|
5040
|
-
class="memori-chat--bubble-container memori-chat--bubble-from-user"
|
|
5040
|
+
class="memori-chat--bubble-container memori-chat-scroll-item memori-chat--bubble-from-user"
|
|
5041
5041
|
>
|
|
5042
5042
|
<div
|
|
5043
5043
|
class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
|
|
@@ -5074,7 +5074,7 @@ exports[`renders Chat with user unchanged 1`] = `
|
|
|
5074
5074
|
class="memori-media-widget"
|
|
5075
5075
|
/>
|
|
5076
5076
|
<div
|
|
5077
|
-
class="memori-chat--bubble-container"
|
|
5077
|
+
class="memori-chat--bubble-container memori-chat-scroll-item"
|
|
5078
5078
|
>
|
|
5079
5079
|
<picture
|
|
5080
5080
|
class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
|
|
@@ -5140,7 +5140,7 @@ exports[`renders Chat with user unchanged 1`] = `
|
|
|
5140
5140
|
class="memori-media-widget"
|
|
5141
5141
|
/>
|
|
5142
5142
|
<div
|
|
5143
|
-
class="memori-chat--bubble-container memori-chat--bubble-from-user"
|
|
5143
|
+
class="memori-chat--bubble-container memori-chat-scroll-item memori-chat--bubble-from-user"
|
|
5144
5144
|
>
|
|
5145
5145
|
<div
|
|
5146
5146
|
class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
|
|
@@ -5177,7 +5177,7 @@ exports[`renders Chat with user unchanged 1`] = `
|
|
|
5177
5177
|
class="memori-media-widget"
|
|
5178
5178
|
/>
|
|
5179
5179
|
<div
|
|
5180
|
-
class="memori-chat--bubble-container"
|
|
5180
|
+
class="memori-chat--bubble-container memori-chat-scroll-item"
|
|
5181
5181
|
>
|
|
5182
5182
|
<picture
|
|
5183
5183
|
class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
|
|
@@ -5246,7 +5246,7 @@ exports[`renders Chat with user unchanged 1`] = `
|
|
|
5246
5246
|
class="memori-link-items"
|
|
5247
5247
|
>
|
|
5248
5248
|
<div
|
|
5249
|
-
class="memori-link-items--grid memori-link-items--agent"
|
|
5249
|
+
class="memori-link-items--grid memori-chat-scroll-item memori-link-items--agent"
|
|
5250
5250
|
>
|
|
5251
5251
|
<div
|
|
5252
5252
|
class="memori-link-item ease-out duration-500 delay-0 opacity-0 scale-95"
|
|
@@ -5319,7 +5319,7 @@ exports[`renders Chat with user unchanged 1`] = `
|
|
|
5319
5319
|
</div>
|
|
5320
5320
|
</div>
|
|
5321
5321
|
<div
|
|
5322
|
-
class="memori-chat--bubble-container memori-chat--bubble-from-user"
|
|
5322
|
+
class="memori-chat--bubble-container memori-chat-scroll-item memori-chat--bubble-from-user"
|
|
5323
5323
|
>
|
|
5324
5324
|
<div
|
|
5325
5325
|
class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
|
|
@@ -5356,7 +5356,7 @@ exports[`renders Chat with user unchanged 1`] = `
|
|
|
5356
5356
|
class="memori-media-widget"
|
|
5357
5357
|
/>
|
|
5358
5358
|
<div
|
|
5359
|
-
class="memori-chat--bubble-container"
|
|
5359
|
+
class="memori-chat--bubble-container memori-chat-scroll-item"
|
|
5360
5360
|
>
|
|
5361
5361
|
<picture
|
|
5362
5362
|
class="memori-chat--bubble-avatar transition ease-in-out duration-300 opacity-0 scale-075 translate-x--15"
|
|
@@ -166,7 +166,7 @@ const ChatBubble: React.FC<Props> = ({
|
|
|
166
166
|
show
|
|
167
167
|
appear
|
|
168
168
|
as="div"
|
|
169
|
-
className={cx('memori-chat--bubble-container', {
|
|
169
|
+
className={cx('memori-chat--bubble-container memori-chat-scroll-item', {
|
|
170
170
|
'memori-chat--bubble-from-user': !!message.fromUser,
|
|
171
171
|
'memori-chat--with-addon':
|
|
172
172
|
(message.generatedByAI && showAIicon) ||
|
|
@@ -320,7 +320,6 @@ const ChatBubble: React.FC<Props> = ({
|
|
|
320
320
|
/<think.*?>(.*?)<\/think>/gs,
|
|
321
321
|
''
|
|
322
322
|
)
|
|
323
|
-
console.log(text);
|
|
324
323
|
navigator.clipboard.writeText(text);
|
|
325
324
|
}}
|
|
326
325
|
/>
|