@memori.ai/memori-react 6.5.3 → 6.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/dist/I18nWrapper.js +23 -1
  3. package/dist/I18nWrapper.js.map +1 -1
  4. package/dist/components/ChatBubble/ChatBubble.css +10 -1
  5. package/dist/components/ChatBubble/ChatBubble.js +25 -4
  6. package/dist/components/ChatBubble/ChatBubble.js.map +1 -1
  7. package/dist/components/ui/Table.css +7 -1
  8. package/dist/helpers/markedExtendedTables.d.ts +14 -0
  9. package/dist/helpers/markedExtendedTables.js +181 -0
  10. package/dist/helpers/markedExtendedTables.js.map +1 -0
  11. package/dist/index.js +23 -1
  12. package/dist/index.js.map +1 -1
  13. package/dist/styles.css +2 -0
  14. package/esm/I18nWrapper.js +24 -2
  15. package/esm/I18nWrapper.js.map +1 -1
  16. package/esm/components/ChatBubble/ChatBubble.css +10 -1
  17. package/esm/components/ChatBubble/ChatBubble.js +26 -5
  18. package/esm/components/ChatBubble/ChatBubble.js.map +1 -1
  19. package/esm/components/ui/Table.css +7 -1
  20. package/esm/helpers/markedExtendedTables.d.ts +14 -0
  21. package/esm/helpers/markedExtendedTables.js +178 -0
  22. package/esm/helpers/markedExtendedTables.js.map +1 -0
  23. package/esm/index.js +23 -1
  24. package/esm/index.js.map +1 -1
  25. package/esm/styles.css +2 -0
  26. package/package.json +8 -4
  27. package/src/I18nWrapper.tsx +34 -1
  28. package/src/components/Chat/__snapshots__/Chat.test.tsx.snap +231 -77
  29. package/src/components/ChatBubble/ChatBubble.css +10 -1
  30. package/src/components/ChatBubble/ChatBubble.stories.tsx +26 -0
  31. package/src/components/ChatBubble/ChatBubble.test.tsx +48 -2
  32. package/src/components/ChatBubble/ChatBubble.tsx +43 -5
  33. package/src/components/ChatBubble/__snapshots__/ChatBubble.test.tsx.snap +351 -10
  34. package/src/components/ui/Table.css +7 -1
  35. package/src/helpers/markedExtendedTables.js +217 -0
  36. package/src/index.tsx +31 -0
  37. package/src/styles.css +2 -0
@@ -35,7 +35,9 @@ exports[`renders Chat on X2a state unchanged 1`] = `
35
35
  <div
36
36
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
37
37
  >
38
- <div>
38
+ <div
39
+ class="memori-chat--bubble-content"
40
+ >
39
41
  <p>
40
42
  Ciao, io sono test, c'è qualcosa che vorresti chiedermi?
41
43
  </p>
@@ -51,7 +53,9 @@ exports[`renders Chat on X2a state unchanged 1`] = `
51
53
  <div
52
54
  class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
53
55
  >
54
- <div>
56
+ <div
57
+ class="memori-chat--bubble-content"
58
+ >
55
59
  <p>
56
60
  Prova
57
61
  </p>
@@ -92,7 +96,9 @@ exports[`renders Chat on X2a state unchanged 1`] = `
92
96
  <div
93
97
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
94
98
  >
95
- <div>
99
+ <div
100
+ class="memori-chat--bubble-content"
101
+ >
96
102
  <p>
97
103
  Mi dispiace, le mie risposte sono limitate. Devi farmi le domande giuste. C'è altro che vuoi sapere?
98
104
  </p>
@@ -108,7 +114,9 @@ exports[`renders Chat on X2a state unchanged 1`] = `
108
114
  <div
109
115
  class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
110
116
  >
111
- <div>
117
+ <div
118
+ class="memori-chat--bubble-content"
119
+ >
112
120
  <p>
113
121
  Come faccio a fare delle cose con questa cosa?
114
122
  </p>
@@ -149,7 +157,9 @@ exports[`renders Chat on X2a state unchanged 1`] = `
149
157
  <div
150
158
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
151
159
  >
152
- <div>
160
+ <div
161
+ class="memori-chat--bubble-content"
162
+ >
153
163
  <p>
154
164
  Ecco qui come.
155
165
  </p>
@@ -256,7 +266,9 @@ exports[`renders Chat on X2a state unchanged 1`] = `
256
266
  <div
257
267
  class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
258
268
  >
259
- <div>
269
+ <div
270
+ class="memori-chat--bubble-content"
271
+ >
260
272
  <p>
261
273
  Ah, grazie! Ciao!
262
274
  </p>
@@ -297,7 +309,9 @@ exports[`renders Chat on X2a state unchanged 1`] = `
297
309
  <div
298
310
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
299
311
  >
300
- <div>
312
+ <div
313
+ class="memori-chat--bubble-content"
314
+ >
301
315
  <p>
302
316
  Arrivederci.
303
317
  </p>
@@ -452,7 +466,9 @@ exports[`renders Chat on X3 state unchanged 1`] = `
452
466
  <div
453
467
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
454
468
  >
455
- <div>
469
+ <div
470
+ class="memori-chat--bubble-content"
471
+ >
456
472
  <p>
457
473
  Ciao, io sono test, c'è qualcosa che vorresti chiedermi?
458
474
  </p>
@@ -468,7 +484,9 @@ exports[`renders Chat on X3 state unchanged 1`] = `
468
484
  <div
469
485
  class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
470
486
  >
471
- <div>
487
+ <div
488
+ class="memori-chat--bubble-content"
489
+ >
472
490
  <p>
473
491
  Prova
474
492
  </p>
@@ -509,7 +527,9 @@ exports[`renders Chat on X3 state unchanged 1`] = `
509
527
  <div
510
528
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
511
529
  >
512
- <div>
530
+ <div
531
+ class="memori-chat--bubble-content"
532
+ >
513
533
  <p>
514
534
  Mi dispiace, le mie risposte sono limitate. Devi farmi le domande giuste. C'è altro che vuoi sapere?
515
535
  </p>
@@ -525,7 +545,9 @@ exports[`renders Chat on X3 state unchanged 1`] = `
525
545
  <div
526
546
  class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
527
547
  >
528
- <div>
548
+ <div
549
+ class="memori-chat--bubble-content"
550
+ >
529
551
  <p>
530
552
  Come faccio a fare delle cose con questa cosa?
531
553
  </p>
@@ -566,7 +588,9 @@ exports[`renders Chat on X3 state unchanged 1`] = `
566
588
  <div
567
589
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
568
590
  >
569
- <div>
591
+ <div
592
+ class="memori-chat--bubble-content"
593
+ >
570
594
  <p>
571
595
  Ecco qui come.
572
596
  </p>
@@ -673,7 +697,9 @@ exports[`renders Chat on X3 state unchanged 1`] = `
673
697
  <div
674
698
  class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
675
699
  >
676
- <div>
700
+ <div
701
+ class="memori-chat--bubble-content"
702
+ >
677
703
  <p>
678
704
  Ah, grazie! Ciao!
679
705
  </p>
@@ -714,7 +740,9 @@ exports[`renders Chat on X3 state unchanged 1`] = `
714
740
  <div
715
741
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
716
742
  >
717
- <div>
743
+ <div
744
+ class="memori-chat--bubble-content"
745
+ >
718
746
  <p>
719
747
  Arrivederci.
720
748
  </p>
@@ -902,7 +930,9 @@ exports[`renders Chat unchanged 1`] = `
902
930
  <div
903
931
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
904
932
  >
905
- <div>
933
+ <div
934
+ class="memori-chat--bubble-content"
935
+ >
906
936
  <p>
907
937
  Ciao, io sono test, c'è qualcosa che vorresti chiedermi?
908
938
  </p>
@@ -918,7 +948,9 @@ exports[`renders Chat unchanged 1`] = `
918
948
  <div
919
949
  class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
920
950
  >
921
- <div>
951
+ <div
952
+ class="memori-chat--bubble-content"
953
+ >
922
954
  <p>
923
955
  Prova
924
956
  </p>
@@ -959,7 +991,9 @@ exports[`renders Chat unchanged 1`] = `
959
991
  <div
960
992
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
961
993
  >
962
- <div>
994
+ <div
995
+ class="memori-chat--bubble-content"
996
+ >
963
997
  <p>
964
998
  Mi dispiace, le mie risposte sono limitate. Devi farmi le domande giuste. C'è altro che vuoi sapere?
965
999
  </p>
@@ -975,7 +1009,9 @@ exports[`renders Chat unchanged 1`] = `
975
1009
  <div
976
1010
  class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
977
1011
  >
978
- <div>
1012
+ <div
1013
+ class="memori-chat--bubble-content"
1014
+ >
979
1015
  <p>
980
1016
  Come faccio a fare delle cose con questa cosa?
981
1017
  </p>
@@ -1016,7 +1052,9 @@ exports[`renders Chat unchanged 1`] = `
1016
1052
  <div
1017
1053
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
1018
1054
  >
1019
- <div>
1055
+ <div
1056
+ class="memori-chat--bubble-content"
1057
+ >
1020
1058
  <p>
1021
1059
  Ecco qui come.
1022
1060
  </p>
@@ -1108,7 +1146,9 @@ exports[`renders Chat unchanged 1`] = `
1108
1146
  <div
1109
1147
  class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
1110
1148
  >
1111
- <div>
1149
+ <div
1150
+ class="memori-chat--bubble-content"
1151
+ >
1112
1152
  <p>
1113
1153
  Ah, grazie! Ciao!
1114
1154
  </p>
@@ -1149,7 +1189,9 @@ exports[`renders Chat unchanged 1`] = `
1149
1189
  <div
1150
1190
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
1151
1191
  >
1152
- <div>
1192
+ <div
1193
+ class="memori-chat--bubble-content"
1194
+ >
1153
1195
  <p>
1154
1196
  Arrivederci.
1155
1197
  </p>
@@ -1288,7 +1330,9 @@ exports[`renders Chat with context vars unchanged 1`] = `
1288
1330
  <div
1289
1331
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
1290
1332
  >
1291
- <div>
1333
+ <div
1334
+ class="memori-chat--bubble-content"
1335
+ >
1292
1336
  <p>
1293
1337
  Ciao, io sono test, c'è qualcosa che vorresti chiedermi?
1294
1338
  </p>
@@ -1304,7 +1348,9 @@ exports[`renders Chat with context vars unchanged 1`] = `
1304
1348
  <div
1305
1349
  class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
1306
1350
  >
1307
- <div>
1351
+ <div
1352
+ class="memori-chat--bubble-content"
1353
+ >
1308
1354
  <p>
1309
1355
  Prova
1310
1356
  </p>
@@ -1345,7 +1391,9 @@ exports[`renders Chat with context vars unchanged 1`] = `
1345
1391
  <div
1346
1392
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
1347
1393
  >
1348
- <div>
1394
+ <div
1395
+ class="memori-chat--bubble-content"
1396
+ >
1349
1397
  <p>
1350
1398
  Mi dispiace, le mie risposte sono limitate. Devi farmi le domande giuste. C'è altro che vuoi sapere?
1351
1399
  </p>
@@ -1361,7 +1409,9 @@ exports[`renders Chat with context vars unchanged 1`] = `
1361
1409
  <div
1362
1410
  class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
1363
1411
  >
1364
- <div>
1412
+ <div
1413
+ class="memori-chat--bubble-content"
1414
+ >
1365
1415
  <p>
1366
1416
  Come faccio a fare delle cose con questa cosa?
1367
1417
  </p>
@@ -1402,7 +1452,9 @@ exports[`renders Chat with context vars unchanged 1`] = `
1402
1452
  <div
1403
1453
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
1404
1454
  >
1405
- <div>
1455
+ <div
1456
+ class="memori-chat--bubble-content"
1457
+ >
1406
1458
  <p>
1407
1459
  Ecco qui come.
1408
1460
  </p>
@@ -1509,7 +1561,9 @@ exports[`renders Chat with context vars unchanged 1`] = `
1509
1561
  <div
1510
1562
  class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
1511
1563
  >
1512
- <div>
1564
+ <div
1565
+ class="memori-chat--bubble-content"
1566
+ >
1513
1567
  <p>
1514
1568
  Ah, grazie! Ciao!
1515
1569
  </p>
@@ -1550,7 +1604,9 @@ exports[`renders Chat with context vars unchanged 1`] = `
1550
1604
  <div
1551
1605
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
1552
1606
  >
1553
- <div>
1607
+ <div
1608
+ class="memori-chat--bubble-content"
1609
+ >
1554
1610
  <p>
1555
1611
  Arrivederci.
1556
1612
  </p>
@@ -1704,7 +1760,9 @@ exports[`renders Chat with custom user avatar as react element unchanged 1`] = `
1704
1760
  <div
1705
1761
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
1706
1762
  >
1707
- <div>
1763
+ <div
1764
+ class="memori-chat--bubble-content"
1765
+ >
1708
1766
  <p>
1709
1767
  Ciao, io sono test, c'è qualcosa che vorresti chiedermi?
1710
1768
  </p>
@@ -1720,7 +1778,9 @@ exports[`renders Chat with custom user avatar as react element unchanged 1`] = `
1720
1778
  <div
1721
1779
  class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
1722
1780
  >
1723
- <div>
1781
+ <div
1782
+ class="memori-chat--bubble-content"
1783
+ >
1724
1784
  <p>
1725
1785
  Prova
1726
1786
  </p>
@@ -1753,7 +1813,9 @@ exports[`renders Chat with custom user avatar as react element unchanged 1`] = `
1753
1813
  <div
1754
1814
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
1755
1815
  >
1756
- <div>
1816
+ <div
1817
+ class="memori-chat--bubble-content"
1818
+ >
1757
1819
  <p>
1758
1820
  Mi dispiace, le mie risposte sono limitate. Devi farmi le domande giuste. C'è altro che vuoi sapere?
1759
1821
  </p>
@@ -1769,7 +1831,9 @@ exports[`renders Chat with custom user avatar as react element unchanged 1`] = `
1769
1831
  <div
1770
1832
  class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
1771
1833
  >
1772
- <div>
1834
+ <div
1835
+ class="memori-chat--bubble-content"
1836
+ >
1773
1837
  <p>
1774
1838
  Come faccio a fare delle cose con questa cosa?
1775
1839
  </p>
@@ -1802,7 +1866,9 @@ exports[`renders Chat with custom user avatar as react element unchanged 1`] = `
1802
1866
  <div
1803
1867
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
1804
1868
  >
1805
- <div>
1869
+ <div
1870
+ class="memori-chat--bubble-content"
1871
+ >
1806
1872
  <p>
1807
1873
  Ecco qui come.
1808
1874
  </p>
@@ -1894,7 +1960,9 @@ exports[`renders Chat with custom user avatar as react element unchanged 1`] = `
1894
1960
  <div
1895
1961
  class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
1896
1962
  >
1897
- <div>
1963
+ <div
1964
+ class="memori-chat--bubble-content"
1965
+ >
1898
1966
  <p>
1899
1967
  Ah, grazie! Ciao!
1900
1968
  </p>
@@ -1927,7 +1995,9 @@ exports[`renders Chat with custom user avatar as react element unchanged 1`] = `
1927
1995
  <div
1928
1996
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
1929
1997
  >
1930
- <div>
1998
+ <div
1999
+ class="memori-chat--bubble-content"
2000
+ >
1931
2001
  <p>
1932
2002
  Arrivederci.
1933
2003
  </p>
@@ -2066,7 +2136,9 @@ exports[`renders Chat with custom user avatar unchanged 1`] = `
2066
2136
  <div
2067
2137
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
2068
2138
  >
2069
- <div>
2139
+ <div
2140
+ class="memori-chat--bubble-content"
2141
+ >
2070
2142
  <p>
2071
2143
  Ciao, io sono test, c'è qualcosa che vorresti chiedermi?
2072
2144
  </p>
@@ -2082,7 +2154,9 @@ exports[`renders Chat with custom user avatar unchanged 1`] = `
2082
2154
  <div
2083
2155
  class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
2084
2156
  >
2085
- <div>
2157
+ <div
2158
+ class="memori-chat--bubble-content"
2159
+ >
2086
2160
  <p>
2087
2161
  Prova
2088
2162
  </p>
@@ -2117,7 +2191,9 @@ exports[`renders Chat with custom user avatar unchanged 1`] = `
2117
2191
  <div
2118
2192
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
2119
2193
  >
2120
- <div>
2194
+ <div
2195
+ class="memori-chat--bubble-content"
2196
+ >
2121
2197
  <p>
2122
2198
  Mi dispiace, le mie risposte sono limitate. Devi farmi le domande giuste. C'è altro che vuoi sapere?
2123
2199
  </p>
@@ -2133,7 +2209,9 @@ exports[`renders Chat with custom user avatar unchanged 1`] = `
2133
2209
  <div
2134
2210
  class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
2135
2211
  >
2136
- <div>
2212
+ <div
2213
+ class="memori-chat--bubble-content"
2214
+ >
2137
2215
  <p>
2138
2216
  Come faccio a fare delle cose con questa cosa?
2139
2217
  </p>
@@ -2168,7 +2246,9 @@ exports[`renders Chat with custom user avatar unchanged 1`] = `
2168
2246
  <div
2169
2247
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
2170
2248
  >
2171
- <div>
2249
+ <div
2250
+ class="memori-chat--bubble-content"
2251
+ >
2172
2252
  <p>
2173
2253
  Ecco qui come.
2174
2254
  </p>
@@ -2260,7 +2340,9 @@ exports[`renders Chat with custom user avatar unchanged 1`] = `
2260
2340
  <div
2261
2341
  class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
2262
2342
  >
2263
- <div>
2343
+ <div
2344
+ class="memori-chat--bubble-content"
2345
+ >
2264
2346
  <p>
2265
2347
  Ah, grazie! Ciao!
2266
2348
  </p>
@@ -2295,7 +2377,9 @@ exports[`renders Chat with custom user avatar unchanged 1`] = `
2295
2377
  <div
2296
2378
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
2297
2379
  >
2298
- <div>
2380
+ <div
2381
+ class="memori-chat--bubble-content"
2382
+ >
2299
2383
  <p>
2300
2384
  Arrivederci.
2301
2385
  </p>
@@ -2434,7 +2518,9 @@ exports[`renders Chat with dates unchanged 1`] = `
2434
2518
  <div
2435
2519
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
2436
2520
  >
2437
- <div>
2521
+ <div
2522
+ class="memori-chat--bubble-content"
2523
+ >
2438
2524
  <p>
2439
2525
  Ciao, io sono test, c'è qualcosa che vorresti chiedermi?
2440
2526
  </p>
@@ -2455,7 +2541,9 @@ exports[`renders Chat with dates unchanged 1`] = `
2455
2541
  <div
2456
2542
  class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
2457
2543
  >
2458
- <div>
2544
+ <div
2545
+ class="memori-chat--bubble-content"
2546
+ >
2459
2547
  <p>
2460
2548
  Prova
2461
2549
  </p>
@@ -2501,7 +2589,9 @@ exports[`renders Chat with dates unchanged 1`] = `
2501
2589
  <div
2502
2590
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
2503
2591
  >
2504
- <div>
2592
+ <div
2593
+ class="memori-chat--bubble-content"
2594
+ >
2505
2595
  <p>
2506
2596
  Mi dispiace, le mie risposte sono limitate. Devi farmi le domande giuste. C'è altro che vuoi sapere?
2507
2597
  </p>
@@ -2522,7 +2612,9 @@ exports[`renders Chat with dates unchanged 1`] = `
2522
2612
  <div
2523
2613
  class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
2524
2614
  >
2525
- <div>
2615
+ <div
2616
+ class="memori-chat--bubble-content"
2617
+ >
2526
2618
  <p>
2527
2619
  Come faccio a fare delle cose con questa cosa?
2528
2620
  </p>
@@ -2568,7 +2660,9 @@ exports[`renders Chat with dates unchanged 1`] = `
2568
2660
  <div
2569
2661
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
2570
2662
  >
2571
- <div>
2663
+ <div
2664
+ class="memori-chat--bubble-content"
2665
+ >
2572
2666
  <p>
2573
2667
  Ecco qui come.
2574
2668
  </p>
@@ -2665,7 +2759,9 @@ exports[`renders Chat with dates unchanged 1`] = `
2665
2759
  <div
2666
2760
  class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
2667
2761
  >
2668
- <div>
2762
+ <div
2763
+ class="memori-chat--bubble-content"
2764
+ >
2669
2765
  <p>
2670
2766
  Ah, grazie! Ciao!
2671
2767
  </p>
@@ -2711,7 +2807,9 @@ exports[`renders Chat with dates unchanged 1`] = `
2711
2807
  <div
2712
2808
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
2713
2809
  >
2714
- <div>
2810
+ <div
2811
+ class="memori-chat--bubble-content"
2812
+ >
2715
2813
  <p>
2716
2814
  Arrivederci.
2717
2815
  </p>
@@ -2855,7 +2953,9 @@ exports[`renders Chat with hints unchanged 1`] = `
2855
2953
  <div
2856
2954
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
2857
2955
  >
2858
- <div>
2956
+ <div
2957
+ class="memori-chat--bubble-content"
2958
+ >
2859
2959
  <p>
2860
2960
  Ciao, io sono test, c'è qualcosa che vorresti chiedermi?
2861
2961
  </p>
@@ -2871,7 +2971,9 @@ exports[`renders Chat with hints unchanged 1`] = `
2871
2971
  <div
2872
2972
  class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
2873
2973
  >
2874
- <div>
2974
+ <div
2975
+ class="memori-chat--bubble-content"
2976
+ >
2875
2977
  <p>
2876
2978
  Prova
2877
2979
  </p>
@@ -2912,7 +3014,9 @@ exports[`renders Chat with hints unchanged 1`] = `
2912
3014
  <div
2913
3015
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
2914
3016
  >
2915
- <div>
3017
+ <div
3018
+ class="memori-chat--bubble-content"
3019
+ >
2916
3020
  <p>
2917
3021
  Mi dispiace, le mie risposte sono limitate. Devi farmi le domande giuste. C'è altro che vuoi sapere?
2918
3022
  </p>
@@ -2928,7 +3032,9 @@ exports[`renders Chat with hints unchanged 1`] = `
2928
3032
  <div
2929
3033
  class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
2930
3034
  >
2931
- <div>
3035
+ <div
3036
+ class="memori-chat--bubble-content"
3037
+ >
2932
3038
  <p>
2933
3039
  Come faccio a fare delle cose con questa cosa?
2934
3040
  </p>
@@ -2969,7 +3075,9 @@ exports[`renders Chat with hints unchanged 1`] = `
2969
3075
  <div
2970
3076
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
2971
3077
  >
2972
- <div>
3078
+ <div
3079
+ class="memori-chat--bubble-content"
3080
+ >
2973
3081
  <p>
2974
3082
  Ecco qui come.
2975
3083
  </p>
@@ -3061,7 +3169,9 @@ exports[`renders Chat with hints unchanged 1`] = `
3061
3169
  <div
3062
3170
  class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
3063
3171
  >
3064
- <div>
3172
+ <div
3173
+ class="memori-chat--bubble-content"
3174
+ >
3065
3175
  <p>
3066
3176
  Ah, grazie! Ciao!
3067
3177
  </p>
@@ -3102,7 +3212,9 @@ exports[`renders Chat with hints unchanged 1`] = `
3102
3212
  <div
3103
3213
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
3104
3214
  >
3105
- <div>
3215
+ <div
3216
+ class="memori-chat--bubble-content"
3217
+ >
3106
3218
  <p>
3107
3219
  Arrivederci.
3108
3220
  </p>
@@ -3267,7 +3379,9 @@ exports[`renders Chat with media unchanged 1`] = `
3267
3379
  <div
3268
3380
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
3269
3381
  >
3270
- <div>
3382
+ <div
3383
+ class="memori-chat--bubble-content"
3384
+ >
3271
3385
  <p>
3272
3386
  Ciao, io sono test, c'è qualcosa che vorresti chiedermi?
3273
3387
  </p>
@@ -3283,7 +3397,9 @@ exports[`renders Chat with media unchanged 1`] = `
3283
3397
  <div
3284
3398
  class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
3285
3399
  >
3286
- <div>
3400
+ <div
3401
+ class="memori-chat--bubble-content"
3402
+ >
3287
3403
  <p>
3288
3404
  Prova
3289
3405
  </p>
@@ -3324,7 +3440,9 @@ exports[`renders Chat with media unchanged 1`] = `
3324
3440
  <div
3325
3441
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
3326
3442
  >
3327
- <div>
3443
+ <div
3444
+ class="memori-chat--bubble-content"
3445
+ >
3328
3446
  <p>
3329
3447
  Mi dispiace, le mie risposte sono limitate. Devi farmi le domande giuste. C'è altro che vuoi sapere?
3330
3448
  </p>
@@ -3340,7 +3458,9 @@ exports[`renders Chat with media unchanged 1`] = `
3340
3458
  <div
3341
3459
  class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
3342
3460
  >
3343
- <div>
3461
+ <div
3462
+ class="memori-chat--bubble-content"
3463
+ >
3344
3464
  <p>
3345
3465
  Come faccio a fare delle cose con questa cosa?
3346
3466
  </p>
@@ -3381,7 +3501,9 @@ exports[`renders Chat with media unchanged 1`] = `
3381
3501
  <div
3382
3502
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
3383
3503
  >
3384
- <div>
3504
+ <div
3505
+ class="memori-chat--bubble-content"
3506
+ >
3385
3507
  <p>
3386
3508
  Ecco qui delle cose per te.
3387
3509
  </p>
@@ -3874,7 +3996,9 @@ exports[`renders Chat with media unchanged 1`] = `
3874
3996
  <div
3875
3997
  class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
3876
3998
  >
3877
- <div>
3999
+ <div
4000
+ class="memori-chat--bubble-content"
4001
+ >
3878
4002
  <p>
3879
4003
  Ah, grazie! Ciao!
3880
4004
  </p>
@@ -3915,7 +4039,9 @@ exports[`renders Chat with media unchanged 1`] = `
3915
4039
  <div
3916
4040
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
3917
4041
  >
3918
- <div>
4042
+ <div
4043
+ class="memori-chat--bubble-content"
4044
+ >
3919
4045
  <p>
3920
4046
  Arrivederci.
3921
4047
  </p>
@@ -4054,7 +4180,9 @@ exports[`renders Chat with memori typing unchanged 1`] = `
4054
4180
  <div
4055
4181
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
4056
4182
  >
4057
- <div>
4183
+ <div
4184
+ class="memori-chat--bubble-content"
4185
+ >
4058
4186
  <p>
4059
4187
  Ciao, io sono test, c'è qualcosa che vorresti chiedermi?
4060
4188
  </p>
@@ -4070,7 +4198,9 @@ exports[`renders Chat with memori typing unchanged 1`] = `
4070
4198
  <div
4071
4199
  class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
4072
4200
  >
4073
- <div>
4201
+ <div
4202
+ class="memori-chat--bubble-content"
4203
+ >
4074
4204
  <p>
4075
4205
  Prova
4076
4206
  </p>
@@ -4111,7 +4241,9 @@ exports[`renders Chat with memori typing unchanged 1`] = `
4111
4241
  <div
4112
4242
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
4113
4243
  >
4114
- <div>
4244
+ <div
4245
+ class="memori-chat--bubble-content"
4246
+ >
4115
4247
  <p>
4116
4248
  Mi dispiace, le mie risposte sono limitate. Devi farmi le domande giuste. C'è altro che vuoi sapere?
4117
4249
  </p>
@@ -4127,7 +4259,9 @@ exports[`renders Chat with memori typing unchanged 1`] = `
4127
4259
  <div
4128
4260
  class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
4129
4261
  >
4130
- <div>
4262
+ <div
4263
+ class="memori-chat--bubble-content"
4264
+ >
4131
4265
  <p>
4132
4266
  Come faccio a fare delle cose con questa cosa?
4133
4267
  </p>
@@ -4168,7 +4302,9 @@ exports[`renders Chat with memori typing unchanged 1`] = `
4168
4302
  <div
4169
4303
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
4170
4304
  >
4171
- <div>
4305
+ <div
4306
+ class="memori-chat--bubble-content"
4307
+ >
4172
4308
  <p>
4173
4309
  Ecco qui come.
4174
4310
  </p>
@@ -4260,7 +4396,9 @@ exports[`renders Chat with memori typing unchanged 1`] = `
4260
4396
  <div
4261
4397
  class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
4262
4398
  >
4263
- <div>
4399
+ <div
4400
+ class="memori-chat--bubble-content"
4401
+ >
4264
4402
  <p>
4265
4403
  Ah, grazie! Ciao!
4266
4404
  </p>
@@ -4301,7 +4439,9 @@ exports[`renders Chat with memori typing unchanged 1`] = `
4301
4439
  <div
4302
4440
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
4303
4441
  >
4304
- <div>
4442
+ <div
4443
+ class="memori-chat--bubble-content"
4444
+ >
4305
4445
  <p>
4306
4446
  Arrivederci.
4307
4447
  </p>
@@ -4461,7 +4601,9 @@ exports[`renders Chat with user unchanged 1`] = `
4461
4601
  <div
4462
4602
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
4463
4603
  >
4464
- <div>
4604
+ <div
4605
+ class="memori-chat--bubble-content"
4606
+ >
4465
4607
  <p>
4466
4608
  Ciao, io sono test, c'è qualcosa che vorresti chiedermi?
4467
4609
  </p>
@@ -4477,7 +4619,9 @@ exports[`renders Chat with user unchanged 1`] = `
4477
4619
  <div
4478
4620
  class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
4479
4621
  >
4480
- <div>
4622
+ <div
4623
+ class="memori-chat--bubble-content"
4624
+ >
4481
4625
  <p>
4482
4626
  Prova
4483
4627
  </p>
@@ -4512,7 +4656,9 @@ exports[`renders Chat with user unchanged 1`] = `
4512
4656
  <div
4513
4657
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
4514
4658
  >
4515
- <div>
4659
+ <div
4660
+ class="memori-chat--bubble-content"
4661
+ >
4516
4662
  <p>
4517
4663
  Mi dispiace, le mie risposte sono limitate. Devi farmi le domande giuste. C'è altro che vuoi sapere?
4518
4664
  </p>
@@ -4528,7 +4674,9 @@ exports[`renders Chat with user unchanged 1`] = `
4528
4674
  <div
4529
4675
  class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
4530
4676
  >
4531
- <div>
4677
+ <div
4678
+ class="memori-chat--bubble-content"
4679
+ >
4532
4680
  <p>
4533
4681
  Come faccio a fare delle cose con questa cosa?
4534
4682
  </p>
@@ -4563,7 +4711,9 @@ exports[`renders Chat with user unchanged 1`] = `
4563
4711
  <div
4564
4712
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
4565
4713
  >
4566
- <div>
4714
+ <div
4715
+ class="memori-chat--bubble-content"
4716
+ >
4567
4717
  <p>
4568
4718
  Ecco qui come.
4569
4719
  </p>
@@ -4655,7 +4805,9 @@ exports[`renders Chat with user unchanged 1`] = `
4655
4805
  <div
4656
4806
  class="memori-chat--bubble memori-chat--user-bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x-30"
4657
4807
  >
4658
- <div>
4808
+ <div
4809
+ class="memori-chat--bubble-content"
4810
+ >
4659
4811
  <p>
4660
4812
  Ah, grazie! Ciao!
4661
4813
  </p>
@@ -4690,7 +4842,9 @@ exports[`renders Chat with user unchanged 1`] = `
4690
4842
  <div
4691
4843
  class="memori-chat--bubble transition ease-in-out duration-300 opacity-0 scale-09 translate-x--30"
4692
4844
  >
4693
- <div>
4845
+ <div
4846
+ class="memori-chat--bubble-content"
4847
+ >
4694
4848
  <p>
4695
4849
  Arrivederci.
4696
4850
  </p>