stream-chat-react-native-core 5.24.0-beta.5 → 5.24.0-beta.6

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 (86) hide show
  1. package/lib/commonjs/components/Attachment/Attachment.js +22 -14
  2. package/lib/commonjs/components/Attachment/Attachment.js.map +1 -1
  3. package/lib/commonjs/components/Attachment/Card.js +11 -4
  4. package/lib/commonjs/components/Attachment/Card.js.map +1 -1
  5. package/lib/commonjs/components/Attachment/Gallery.js +24 -16
  6. package/lib/commonjs/components/Attachment/Gallery.js.map +1 -1
  7. package/lib/commonjs/components/Message/Message.js +14 -7
  8. package/lib/commonjs/components/Message/Message.js.map +1 -1
  9. package/lib/commonjs/components/Message/MessageSimple/MessageContent.js +22 -16
  10. package/lib/commonjs/components/Message/MessageSimple/MessageContent.js.map +1 -1
  11. package/lib/commonjs/components/Message/MessageSimple/MessageSimple.js +14 -8
  12. package/lib/commonjs/components/Message/MessageSimple/MessageSimple.js.map +1 -1
  13. package/lib/commonjs/components/Message/MessageSimple/MessageTextContainer.js +10 -4
  14. package/lib/commonjs/components/Message/MessageSimple/MessageTextContainer.js.map +1 -1
  15. package/lib/commonjs/components/Message/hooks/useCreateMessageContext.js +6 -1
  16. package/lib/commonjs/components/Message/hooks/useCreateMessageContext.js.map +1 -1
  17. package/lib/commonjs/components/MessageOverlay/MessageOverlay.js +9 -3
  18. package/lib/commonjs/components/MessageOverlay/MessageOverlay.js.map +1 -1
  19. package/lib/commonjs/contexts/messageContext/MessageContext.js +2 -2
  20. package/lib/commonjs/contexts/messageContext/MessageContext.js.map +1 -1
  21. package/lib/commonjs/i18n/fr.json +24 -24
  22. package/lib/commonjs/i18n/hi.json +24 -24
  23. package/lib/commonjs/i18n/it.json +24 -24
  24. package/lib/commonjs/i18n/nl.json +24 -24
  25. package/lib/commonjs/i18n/ru.json +24 -24
  26. package/lib/commonjs/i18n/tr.json +24 -24
  27. package/lib/commonjs/version.json +1 -1
  28. package/lib/module/components/Attachment/Attachment.js +22 -14
  29. package/lib/module/components/Attachment/Attachment.js.map +1 -1
  30. package/lib/module/components/Attachment/Card.js +11 -4
  31. package/lib/module/components/Attachment/Card.js.map +1 -1
  32. package/lib/module/components/Attachment/Gallery.js +24 -16
  33. package/lib/module/components/Attachment/Gallery.js.map +1 -1
  34. package/lib/module/components/Message/Message.js +14 -7
  35. package/lib/module/components/Message/Message.js.map +1 -1
  36. package/lib/module/components/Message/MessageSimple/MessageContent.js +22 -16
  37. package/lib/module/components/Message/MessageSimple/MessageContent.js.map +1 -1
  38. package/lib/module/components/Message/MessageSimple/MessageSimple.js +14 -8
  39. package/lib/module/components/Message/MessageSimple/MessageSimple.js.map +1 -1
  40. package/lib/module/components/Message/MessageSimple/MessageTextContainer.js +10 -4
  41. package/lib/module/components/Message/MessageSimple/MessageTextContainer.js.map +1 -1
  42. package/lib/module/components/Message/hooks/useCreateMessageContext.js +6 -1
  43. package/lib/module/components/Message/hooks/useCreateMessageContext.js.map +1 -1
  44. package/lib/module/components/MessageOverlay/MessageOverlay.js +9 -3
  45. package/lib/module/components/MessageOverlay/MessageOverlay.js.map +1 -1
  46. package/lib/module/contexts/messageContext/MessageContext.js +2 -2
  47. package/lib/module/contexts/messageContext/MessageContext.js.map +1 -1
  48. package/lib/module/i18n/fr.json +24 -24
  49. package/lib/module/i18n/hi.json +24 -24
  50. package/lib/module/i18n/it.json +24 -24
  51. package/lib/module/i18n/nl.json +24 -24
  52. package/lib/module/i18n/ru.json +24 -24
  53. package/lib/module/i18n/tr.json +24 -24
  54. package/lib/module/version.json +1 -1
  55. package/lib/typescript/components/Attachment/Attachment.d.ts +2 -2
  56. package/lib/typescript/components/Attachment/Card.d.ts +2 -2
  57. package/lib/typescript/components/Attachment/Gallery.d.ts +1 -1
  58. package/lib/typescript/components/Message/MessageSimple/MessageContent.d.ts +1 -1
  59. package/lib/typescript/components/Message/MessageSimple/MessageSimple.d.ts +1 -1
  60. package/lib/typescript/components/Message/MessageSimple/MessageTextContainer.d.ts +1 -1
  61. package/lib/typescript/components/Message/hooks/useCreateMessageContext.d.ts +1 -1
  62. package/lib/typescript/contexts/messageContext/MessageContext.d.ts +8 -2
  63. package/lib/typescript/i18n/fr.json +24 -24
  64. package/lib/typescript/i18n/hi.json +24 -24
  65. package/lib/typescript/i18n/it.json +24 -24
  66. package/lib/typescript/i18n/nl.json +24 -24
  67. package/lib/typescript/i18n/ru.json +24 -24
  68. package/lib/typescript/i18n/tr.json +24 -24
  69. package/package.json +1 -1
  70. package/src/components/Attachment/Attachment.tsx +16 -2
  71. package/src/components/Attachment/Card.tsx +22 -4
  72. package/src/components/Attachment/Gallery.tsx +11 -0
  73. package/src/components/Message/Message.tsx +9 -0
  74. package/src/components/Message/MessageSimple/MessageContent.tsx +9 -0
  75. package/src/components/Message/MessageSimple/MessageSimple.tsx +9 -0
  76. package/src/components/Message/MessageSimple/MessageTextContainer.tsx +12 -2
  77. package/src/components/Message/hooks/useCreateMessageContext.ts +4 -0
  78. package/src/components/MessageOverlay/MessageOverlay.tsx +8 -0
  79. package/src/contexts/messageContext/MessageContext.tsx +7 -1
  80. package/src/i18n/fr.json +24 -24
  81. package/src/i18n/hi.json +24 -24
  82. package/src/i18n/it.json +24 -24
  83. package/src/i18n/nl.json +24 -24
  84. package/src/i18n/ru.json +24 -24
  85. package/src/i18n/tr.json +24 -24
  86. package/src/version.json +1 -1
@@ -1,9 +1,9 @@
1
1
  {
2
- "1 Reply": "1 Risposta",
2
+ "1 Reply": "",
3
3
  "1 Thread Reply": "",
4
- "Allow access to your Gallery": "Consenti l'accesso alla tua galleria",
5
- "Allow camera access in device settings": "Consenti l'accesso alla fotocamera nelle impostazioni del dispositivo",
6
- "Also send to channel": "",
4
+ "Allow access to your Gallery": "",
5
+ "Allow camera access in device settings": "",
6
+ "Also send to channel": "Invia anche al canale",
7
7
  "Are you sure you want to permanently delete this message?": "",
8
8
  "Are you sure?": "",
9
9
  "Block User": "",
@@ -13,11 +13,11 @@
13
13
  "Copy Message": "",
14
14
  "Delete": "",
15
15
  "Delete Message": "",
16
- "Device camera is used to take photos or videos.": "La fotocamera del dispositivo viene utilizzata per scattare foto o video.",
16
+ "Device camera is used to take photos or videos.": "",
17
17
  "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
18
  "Edit Message": "",
19
19
  "Editing Message": "Modificando il Messaggio",
20
- "Emoji matching": "Abbinamento emoji",
20
+ "Emoji matching": "",
21
21
  "Empty message...": "",
22
22
  "Error loading": "",
23
23
  "Error loading channel list...": "",
@@ -28,14 +28,14 @@
28
28
  "Flag Message": "",
29
29
  "Flag action failed either due to a network issue or the message is already flagged": "",
30
30
  "How about sending your first message to a friend?": "",
31
- "Instant Commands": "Comandi Istantanei",
31
+ "Instant Commands": "",
32
32
  "Let's start chatting!": "",
33
- "Links are disabled": "",
34
- "Loading channels...": "Caricamento canali in corso...",
35
- "Loading messages...": "Caricamento messaggi...",
36
- "Loading...": "Caricamento...",
37
- "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
38
- "Message Reactions": "",
33
+ "Links are disabled": "I link sono disabilitati",
34
+ "Loading channels...": "",
35
+ "Loading messages...": "",
36
+ "Loading...": "",
37
+ "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "È stato raggiunto il limite massimo di caricamento delle dimensioni del file. Carica un file inferiore a {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.",
38
+ "Message Reactions": "Reazioni ai Messaggi",
39
39
  "Message deleted": "",
40
40
  "Message flagged": "",
41
41
  "Mute User": "",
@@ -43,36 +43,36 @@
43
43
  "Nothing yet...": "",
44
44
  "Ok": "",
45
45
  "Only visible to you": "",
46
- "Open Settings": "Apri Impostazioni",
47
- "Photo": "",
48
- "Photos and Videos": "Foto e Video",
46
+ "Open Settings": "",
47
+ "Photo": "Foto",
48
+ "Photos and Videos": "",
49
49
  "Pin to Conversation": "",
50
50
  "Pinned by": "",
51
- "Please enable access to your photos and videos so you can share them.": "Abilita l'accesso alle tue foto e ai tuoi video in modo da poterli condividere.",
51
+ "Please enable access to your photos and videos so you can share them.": "",
52
52
  "Please select a channel first": "Seleziona un canale",
53
53
  "Reconnecting...": "",
54
54
  "Reply": "",
55
- "Reply to Message": "Rispondi al messaggio",
55
+ "Reply to Message": "",
56
56
  "Resend": "",
57
57
  "Search GIFs": "Cerca GIF",
58
- "Select More Photos": "Seleziona Altre foto",
58
+ "Select More Photos": "",
59
59
  "Send Anyway": "",
60
60
  "Send a message": "Mandare un messaggio",
61
- "Sending links is not allowed in this conversation": "",
61
+ "Sending links is not allowed in this conversation": "L'invio di link non è consentito in questa conversazione",
62
62
  "Slow mode ON": "Slowmode attiva",
63
63
  "The message has been reported to a moderator.": "",
64
64
  "Thread Reply": "",
65
65
  "Unblock User": "",
66
- "Unknown User": "Utente sconosciuto",
66
+ "Unknown User": "",
67
67
  "Unmute User": "",
68
68
  "Unpin from Conversation": "",
69
69
  "Unread Messages": "",
70
- "Video": "",
70
+ "Video": "Video",
71
71
  "You": "",
72
72
  "You can't send messages in this channel": "",
73
73
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
74
- "{{ index }} of {{ photoLength }}": "{{ index }} di {{ photoLength }}",
75
- "{{ replyCount }} Replies": "{{ replyCount }} Risposte",
74
+ "{{ index }} of {{ photoLength }}": "",
75
+ "{{ replyCount }} Replies": "",
76
76
  "{{ replyCount }} Thread Replies": "",
77
77
  "{{ user }} is typing": "",
78
78
  "🏙 Attachment...": ""
@@ -1,9 +1,9 @@
1
1
  {
2
- "1 Reply": "1 Antwoord",
2
+ "1 Reply": "",
3
3
  "1 Thread Reply": "",
4
- "Allow access to your Gallery": "Geef toegang tot uw galerij",
5
- "Allow camera access in device settings": "Sta cameratoegang toe in de apparaatinstellingen",
6
- "Also send to channel": "",
4
+ "Allow access to your Gallery": "",
5
+ "Allow camera access in device settings": "",
6
+ "Also send to channel": "Stuur ook naar kanaal",
7
7
  "Are you sure you want to permanently delete this message?": "",
8
8
  "Are you sure?": "",
9
9
  "Block User": "",
@@ -13,11 +13,11 @@
13
13
  "Copy Message": "",
14
14
  "Delete": "",
15
15
  "Delete Message": "",
16
- "Device camera is used to take photos or videos.": "De camera van het apparaat wordt gebruikt om foto's of video's te maken.",
16
+ "Device camera is used to take photos or videos.": "",
17
17
  "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
18
  "Edit Message": "",
19
19
  "Editing Message": "Bericht aanpassen",
20
- "Emoji matching": "Emoji-overeenkomsten",
20
+ "Emoji matching": "",
21
21
  "Empty message...": "",
22
22
  "Error loading": "",
23
23
  "Error loading channel list...": "",
@@ -28,14 +28,14 @@
28
28
  "Flag Message": "",
29
29
  "Flag action failed either due to a network issue or the message is already flagged": "",
30
30
  "How about sending your first message to a friend?": "",
31
- "Instant Commands": "Directe Opdrachten",
31
+ "Instant Commands": "",
32
32
  "Let's start chatting!": "",
33
- "Links are disabled": "",
34
- "Loading channels...": "Kanalen aan het laden...",
35
- "Loading messages...": "Berichten aan het laden...",
36
- "Loading...": "Aan het laden...",
37
- "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
38
- "Message Reactions": "",
33
+ "Links are disabled": "Het versturen van links staat uit",
34
+ "Loading channels...": "",
35
+ "Loading messages...": "",
36
+ "Loading...": "",
37
+ "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "Maximale uploadlimiet voor bestandsgrootte bereikt. Upload een bestand van minder dan {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.",
38
+ "Message Reactions": "Bericht Reacties",
39
39
  "Message deleted": "",
40
40
  "Message flagged": "",
41
41
  "Mute User": "",
@@ -43,36 +43,36 @@
43
43
  "Nothing yet...": "",
44
44
  "Ok": "",
45
45
  "Only visible to you": "",
46
- "Open Settings": "Open instellingen",
47
- "Photo": "",
48
- "Photos and Videos": "Foto's en video's",
46
+ "Open Settings": "",
47
+ "Photo": "Foto",
48
+ "Photos and Videos": "",
49
49
  "Pin to Conversation": "",
50
50
  "Pinned by": "",
51
- "Please enable access to your photos and videos so you can share them.": "Schakel toegang tot uw foto's en video's in zodat u ze kunt delen.",
51
+ "Please enable access to your photos and videos so you can share them.": "",
52
52
  "Please select a channel first": "Selecteer eerst een kanaal",
53
53
  "Reconnecting...": "",
54
54
  "Reply": "",
55
- "Reply to Message": "Beantwoord bericht",
55
+ "Reply to Message": "",
56
56
  "Resend": "",
57
57
  "Search GIFs": "Zoek GIF's",
58
- "Select More Photos": "Selecteer Meer foto's",
58
+ "Select More Photos": "",
59
59
  "Send Anyway": "",
60
60
  "Send a message": "Stuur een bericht",
61
- "Sending links is not allowed in this conversation": "",
61
+ "Sending links is not allowed in this conversation": "In dit gesprek is het niet toegestaan links te versturen",
62
62
  "Slow mode ON": "Langzame modus aan",
63
63
  "The message has been reported to a moderator.": "",
64
64
  "Thread Reply": "",
65
65
  "Unblock User": "",
66
- "Unknown User": "Onbekende gebruiker",
66
+ "Unknown User": "",
67
67
  "Unmute User": "",
68
68
  "Unpin from Conversation": "",
69
69
  "Unread Messages": "",
70
- "Video": "",
70
+ "Video": "Video",
71
71
  "You": "",
72
72
  "You can't send messages in this channel": "",
73
73
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
74
- "{{ index }} of {{ photoLength }}": "{{ index }} van {{ photoLength }}",
75
- "{{ replyCount }} Replies": "{{ replyCount }} Antwoorden",
74
+ "{{ index }} of {{ photoLength }}": "",
75
+ "{{ replyCount }} Replies": "",
76
76
  "{{ replyCount }} Thread Replies": "",
77
77
  "{{ user }} is typing": "",
78
78
  "🏙 Attachment...": ""
@@ -1,9 +1,9 @@
1
1
  {
2
- "1 Reply": "1 Ответ",
2
+ "1 Reply": "",
3
3
  "1 Thread Reply": "",
4
- "Allow access to your Gallery": "Разрешить доступ к вашей галерее",
5
- "Allow camera access in device settings": "Разрешите доступ к камере в настройках устройства.",
6
- "Also send to channel": "",
4
+ "Allow access to your Gallery": "",
5
+ "Allow camera access in device settings": "",
6
+ "Also send to channel": "Также отправить на канал",
7
7
  "Are you sure you want to permanently delete this message?": "",
8
8
  "Are you sure?": "",
9
9
  "Block User": "",
@@ -13,11 +13,11 @@
13
13
  "Copy Message": "",
14
14
  "Delete": "",
15
15
  "Delete Message": "",
16
- "Device camera is used to take photos or videos.": "Камера устройства используется для съемки фотографий или видео.",
16
+ "Device camera is used to take photos or videos.": "",
17
17
  "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
18
  "Edit Message": "",
19
19
  "Editing Message": "Редактирование сообщения",
20
- "Emoji matching": "Соответствие эмодзи",
20
+ "Emoji matching": "",
21
21
  "Empty message...": "",
22
22
  "Error loading": "",
23
23
  "Error loading channel list...": "",
@@ -28,14 +28,14 @@
28
28
  "Flag Message": "",
29
29
  "Flag action failed either due to a network issue or the message is already flagged": "",
30
30
  "How about sending your first message to a friend?": "",
31
- "Instant Commands": "Мгновенные Команды",
31
+ "Instant Commands": "",
32
32
  "Let's start chatting!": "",
33
- "Links are disabled": "",
34
- "Loading channels...": "Загружаю каналы...",
35
- "Loading messages...": "Загружаю сообщения...",
36
- "Loading...": "Загружаю...",
37
- "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
38
- "Message Reactions": "",
33
+ "Links are disabled": "Ссылки отключены",
34
+ "Loading channels...": "",
35
+ "Loading messages...": "",
36
+ "Loading...": "",
37
+ "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "Достигнут предел максимального размера файла для загрузки. Загрузите файл размером менее {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} МБ.",
38
+ "Message Reactions": "Сообщения Реакции",
39
39
  "Message deleted": "",
40
40
  "Message flagged": "",
41
41
  "Mute User": "",
@@ -43,36 +43,36 @@
43
43
  "Nothing yet...": "",
44
44
  "Ok": "",
45
45
  "Only visible to you": "",
46
- "Open Settings": "Открыть настройки",
47
- "Photo": "",
48
- "Photos and Videos": "Фото и видео",
46
+ "Open Settings": "",
47
+ "Photo": "Фото",
48
+ "Photos and Videos": "",
49
49
  "Pin to Conversation": "",
50
50
  "Pinned by": "",
51
- "Please enable access to your photos and videos so you can share them.": "Разрешите доступ к своим фотографиям и видео, чтобы вы могли ими поделиться.",
51
+ "Please enable access to your photos and videos so you can share them.": "",
52
52
  "Please select a channel first": "Пожалуйста, сначала выберите канал",
53
53
  "Reconnecting...": "",
54
54
  "Reply": "",
55
- "Reply to Message": "Ответить на сообщение",
55
+ "Reply to Message": "",
56
56
  "Resend": "",
57
57
  "Search GIFs": "Поиск GIF",
58
- "Select More Photos": "Выбрать больше фотографий",
58
+ "Select More Photos": "",
59
59
  "Send Anyway": "",
60
60
  "Send a message": "Отправить сообщение",
61
- "Sending links is not allowed in this conversation": "",
61
+ "Sending links is not allowed in this conversation": "Отправка ссылок недоступна в этом чате",
62
62
  "Slow mode ON": "Медленный режим включен",
63
63
  "The message has been reported to a moderator.": "",
64
64
  "Thread Reply": "",
65
65
  "Unblock User": "",
66
- "Unknown User": "Неизвестный пользователь",
66
+ "Unknown User": "",
67
67
  "Unmute User": "",
68
68
  "Unpin from Conversation": "",
69
69
  "Unread Messages": "",
70
- "Video": "",
70
+ "Video": "видео",
71
71
  "You": "",
72
72
  "You can't send messages in this channel": "",
73
73
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
74
- "{{ index }} of {{ photoLength }}": "{{ index }} из {{ photoLength }}",
75
- "{{ replyCount }} Replies": "{{ replyCount }} Ответов",
74
+ "{{ index }} of {{ photoLength }}": "",
75
+ "{{ replyCount }} Replies": "",
76
76
  "{{ replyCount }} Thread Replies": "",
77
77
  "{{ user }} is typing": "",
78
78
  "🏙 Attachment...": ""
@@ -1,9 +1,9 @@
1
1
  {
2
- "1 Reply": "1 Cevap",
2
+ "1 Reply": "",
3
3
  "1 Thread Reply": "",
4
- "Allow access to your Gallery": "Galerinize erişime izin verin",
5
- "Allow camera access in device settings": "Cihaz ayarlarında kamera erişimine izin ver",
6
- "Also send to channel": "",
4
+ "Allow access to your Gallery": "",
5
+ "Allow camera access in device settings": "",
6
+ "Also send to channel": "Kanala da gönder",
7
7
  "Are you sure you want to permanently delete this message?": "",
8
8
  "Are you sure?": "",
9
9
  "Block User": "",
@@ -13,11 +13,11 @@
13
13
  "Copy Message": "",
14
14
  "Delete": "",
15
15
  "Delete Message": "",
16
- "Device camera is used to take photos or videos.": "Cihaz kamerası fotoğraf veya video çekmek için kullanılır.",
16
+ "Device camera is used to take photos or videos.": "",
17
17
  "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
18
  "Edit Message": "",
19
19
  "Editing Message": "Mesaj Düzenleniyor",
20
- "Emoji matching": "Emoji eşleştirme",
20
+ "Emoji matching": "",
21
21
  "Empty message...": "",
22
22
  "Error loading": "",
23
23
  "Error loading channel list...": "",
@@ -28,14 +28,14 @@
28
28
  "Flag Message": "",
29
29
  "Flag action failed either due to a network issue or the message is already flagged": "",
30
30
  "How about sending your first message to a friend?": "",
31
- "Instant Commands": "Anlık Komutlar",
31
+ "Instant Commands": "",
32
32
  "Let's start chatting!": "",
33
- "Links are disabled": "",
34
- "Loading channels...": "Kanallar yükleniyor...",
35
- "Loading messages...": "Mesajlar yükleniyor...",
36
- "Loading...": "Yükleniyor...",
37
- "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
38
- "Message Reactions": "",
33
+ "Links are disabled": "Bağlantılar devre dışı",
34
+ "Loading channels...": "",
35
+ "Loading messages...": "",
36
+ "Loading...": "",
37
+ "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "Maksimum dosya boyutu yükleme sınırına ulaşıldı. Lütfen {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB'ın altında bir dosya yükleyin.",
38
+ "Message Reactions": "Mesaj Tepkileri",
39
39
  "Message deleted": "",
40
40
  "Message flagged": "",
41
41
  "Mute User": "",
@@ -43,36 +43,36 @@
43
43
  "Nothing yet...": "",
44
44
  "Ok": "",
45
45
  "Only visible to you": "",
46
- "Open Settings": "Ayarları aç",
47
- "Photo": "",
48
- "Photos and Videos": "Fotoğraflar ve Videolar",
46
+ "Open Settings": "",
47
+ "Photo": "Fotoğraf",
48
+ "Photos and Videos": "",
49
49
  "Pin to Conversation": "",
50
50
  "Pinned by": "",
51
- "Please enable access to your photos and videos so you can share them.": "Paylaşım yapabilmek için lutfen fotoğraflarınıza ve videolarınıza erişimi etkinleştirin.",
51
+ "Please enable access to your photos and videos so you can share them.": "",
52
52
  "Please select a channel first": "Lütfen önce bir kanal seçiniz",
53
53
  "Reconnecting...": "",
54
54
  "Reply": "",
55
- "Reply to Message": "Mesajı Yanıtla",
55
+ "Reply to Message": "",
56
56
  "Resend": "",
57
57
  "Search GIFs": "GIF Ara",
58
- "Select More Photos": "Daha Fazla Fotoğraf Seçin",
58
+ "Select More Photos": "",
59
59
  "Send Anyway": "",
60
60
  "Send a message": "Mesaj gönder",
61
- "Sending links is not allowed in this conversation": "",
61
+ "Sending links is not allowed in this conversation": "Bu konuşmada bağlantı göndermek desteklenmiyor",
62
62
  "Slow mode ON": "Yavaş Mod Açık",
63
63
  "The message has been reported to a moderator.": "",
64
64
  "Thread Reply": "",
65
65
  "Unblock User": "",
66
- "Unknown User": "Bilinmeyen kullanıcı",
66
+ "Unknown User": "",
67
67
  "Unmute User": "",
68
68
  "Unpin from Conversation": "",
69
69
  "Unread Messages": "",
70
- "Video": "",
70
+ "Video": "Video",
71
71
  "You": "",
72
72
  "You can't send messages in this channel": "",
73
73
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
74
- "{{ index }} of {{ photoLength }}": "{{ index }} / {{ photoLength }}",
75
- "{{ replyCount }} Replies": "{{ replyCount }} Cevap",
74
+ "{{ index }} of {{ photoLength }}": "",
75
+ "{{ replyCount }} Replies": "",
76
76
  "{{ replyCount }} Thread Replies": "",
77
77
  "{{ user }} is typing": "",
78
78
  "🏙 Attachment...": ""
@@ -1,3 +1,3 @@
1
1
  {
2
- "version": "5.24.0-beta.5"
2
+ "version": "5.24.0-beta.6"
3
3
  }
@@ -3,13 +3,13 @@ import type { Attachment as AttachmentType } from 'stream-chat';
3
3
  import { MessagesContextValue } from '../../contexts/messagesContext/MessagesContext';
4
4
  import type { DefaultStreamChatGenerics } from '../../types/types';
5
5
  export declare type ActionHandler = (name: string, value: string) => void;
6
- export declare type AttachmentPropsWithContext<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Pick<MessagesContextValue<StreamChatGenerics>, 'AttachmentActions' | 'Card' | 'FileAttachment' | 'Gallery' | 'giphyVersion' | 'Giphy' | 'isAttachmentEqual' | 'UrlPreview'> & {
6
+ export declare type AttachmentPropsWithContext<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Pick<MessagesContextValue<StreamChatGenerics>, 'AttachmentActions' | 'Card' | 'FileAttachment' | 'Gallery' | 'giphyVersion' | 'Giphy' | 'isAttachmentEqual' | 'UrlPreview' | 'myMessageTheme'> & {
7
7
  /**
8
8
  * The attachment to render
9
9
  */
10
10
  attachment: AttachmentType<StreamChatGenerics>;
11
11
  };
12
- export declare type AttachmentProps<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Partial<Pick<MessagesContextValue<StreamChatGenerics>, 'AttachmentActions' | 'Card' | 'FileAttachment' | 'Gallery' | 'Giphy' | 'giphyVersion' | 'UrlPreview' | 'isAttachmentEqual'>> & Pick<AttachmentPropsWithContext<StreamChatGenerics>, 'attachment'>;
12
+ export declare type AttachmentProps<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Partial<Pick<MessagesContextValue<StreamChatGenerics>, 'AttachmentActions' | 'Card' | 'FileAttachment' | 'Gallery' | 'Giphy' | 'giphyVersion' | 'myMessageTheme' | 'UrlPreview' | 'isAttachmentEqual'>> & Pick<AttachmentPropsWithContext<StreamChatGenerics>, 'attachment'>;
13
13
  /**
14
14
  * Attachment - The message attachment
15
15
  */
@@ -5,7 +5,7 @@ import { ChatContextValue } from '../../contexts/chatContext/ChatContext';
5
5
  import { MessageContextValue } from '../../contexts/messageContext/MessageContext';
6
6
  import { MessagesContextValue } from '../../contexts/messagesContext/MessagesContext';
7
7
  import type { DefaultStreamChatGenerics } from '../../types/types';
8
- export declare type CardPropsWithContext<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Attachment<StreamChatGenerics> & Pick<ChatContextValue, 'ImageComponent'> & Pick<MessageContextValue<StreamChatGenerics>, 'onLongPress' | 'onPress' | 'onPressIn' | 'preventPress'> & Pick<MessagesContextValue<StreamChatGenerics>, 'additionalTouchableProps' | 'CardCover' | 'CardFooter' | 'CardHeader'> & {
8
+ export declare type CardPropsWithContext<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Attachment<StreamChatGenerics> & Pick<ChatContextValue, 'ImageComponent'> & Pick<MessageContextValue<StreamChatGenerics>, 'onLongPress' | 'onPress' | 'onPressIn' | 'preventPress'> & Pick<MessagesContextValue<StreamChatGenerics>, 'additionalTouchableProps' | 'CardCover' | 'CardFooter' | 'CardHeader' | 'myMessageTheme'> & {
9
9
  channelId: string | undefined;
10
10
  messageId: string | undefined;
11
11
  styles?: Partial<{
@@ -21,7 +21,7 @@ export declare type CardPropsWithContext<StreamChatGenerics extends DefaultStrea
21
21
  title: StyleProp<TextStyle>;
22
22
  }>;
23
23
  };
24
- export declare type CardProps<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Attachment<StreamChatGenerics> & Partial<Pick<ChatContextValue<StreamChatGenerics>, 'ImageComponent'> & Pick<MessageContextValue<StreamChatGenerics>, 'onLongPress' | 'onPress' | 'onPressIn'> & Pick<MessagesContextValue<StreamChatGenerics>, 'additionalTouchableProps' | 'CardCover' | 'CardFooter' | 'CardHeader'>>;
24
+ export declare type CardProps<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Attachment<StreamChatGenerics> & Partial<Pick<ChatContextValue<StreamChatGenerics>, 'ImageComponent'> & Pick<MessageContextValue<StreamChatGenerics>, 'onLongPress' | 'onPress' | 'onPressIn' | 'myMessageTheme'> & Pick<MessagesContextValue<StreamChatGenerics>, 'additionalTouchableProps' | 'CardCover' | 'CardFooter' | 'CardHeader'>>;
25
25
  /**
26
26
  * UI component for card in attachments.
27
27
  */
@@ -5,7 +5,7 @@ import { MessageContextValue } from '../../contexts/messageContext/MessageContex
5
5
  import { MessagesContextValue } from '../../contexts/messagesContext/MessagesContext';
6
6
  import { OverlayContextValue } from '../../contexts/overlayContext/OverlayContext';
7
7
  import type { DefaultStreamChatGenerics } from '../../types/types';
8
- export declare type GalleryPropsWithContext<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Pick<ImageGalleryContextValue<StreamChatGenerics>, 'setSelectedMessage' | 'setMessages'> & Pick<MessageContextValue<StreamChatGenerics>, 'alignment' | 'groupStyles' | 'images' | 'videos' | 'onLongPress' | 'onPress' | 'onPressIn' | 'preventPress' | 'threadList'> & Pick<MessagesContextValue<StreamChatGenerics>, 'additionalTouchableProps' | 'legacyImageViewerSwipeBehaviour' | 'VideoThumbnail' | 'ImageLoadingIndicator' | 'ImageLoadingFailedIndicator'> & Pick<OverlayContextValue, 'setOverlay'> & {
8
+ export declare type GalleryPropsWithContext<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Pick<ImageGalleryContextValue<StreamChatGenerics>, 'setSelectedMessage' | 'setMessages'> & Pick<MessageContextValue<StreamChatGenerics>, 'alignment' | 'groupStyles' | 'images' | 'videos' | 'onLongPress' | 'onPress' | 'onPressIn' | 'preventPress' | 'threadList'> & Pick<MessagesContextValue<StreamChatGenerics>, 'additionalTouchableProps' | 'legacyImageViewerSwipeBehaviour' | 'VideoThumbnail' | 'ImageLoadingIndicator' | 'ImageLoadingFailedIndicator' | 'myMessageTheme'> & Pick<OverlayContextValue, 'setOverlay'> & {
9
9
  channelId: string | undefined;
10
10
  hasThreadReplies?: boolean;
11
11
  /**
@@ -3,7 +3,7 @@ import { MessageContextValue } from '../../../contexts/messageContext/MessageCon
3
3
  import { MessagesContextValue } from '../../../contexts/messagesContext/MessagesContext';
4
4
  import { TranslationContextValue } from '../../../contexts/translationContext/TranslationContext';
5
5
  import type { DefaultStreamChatGenerics } from '../../../types/types';
6
- export declare type MessageContentPropsWithContext<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Pick<MessageContextValue<StreamChatGenerics>, 'alignment' | 'disabled' | 'goToMessage' | 'groupStyles' | 'hasReactions' | 'isMyMessage' | 'lastGroupMessage' | 'members' | 'message' | 'messageContentOrder' | 'onLongPress' | 'onlyEmojis' | 'onPress' | 'onPressIn' | 'otherAttachments' | 'preventPress' | 'showMessageStatus' | 'threadList'> & Pick<MessagesContextValue<StreamChatGenerics>, 'additionalTouchableProps' | 'Attachment' | 'FileAttachmentGroup' | 'formatDate' | 'Gallery' | 'isAttachmentEqual' | 'MessageFooter' | 'MessageHeader' | 'MessageDeleted' | 'MessageError' | 'MessageReplies' | 'MessageStatus' | 'onPressInMessage' | 'Reply'> & Pick<TranslationContextValue, 't' | 'tDateTimeParser'> & {
6
+ export declare type MessageContentPropsWithContext<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Pick<MessageContextValue<StreamChatGenerics>, 'alignment' | 'disabled' | 'goToMessage' | 'groupStyles' | 'hasReactions' | 'isMyMessage' | 'lastGroupMessage' | 'members' | 'message' | 'messageContentOrder' | 'onLongPress' | 'onlyEmojis' | 'onPress' | 'onPressIn' | 'otherAttachments' | 'preventPress' | 'showMessageStatus' | 'threadList'> & Pick<MessagesContextValue<StreamChatGenerics>, 'additionalTouchableProps' | 'Attachment' | 'FileAttachmentGroup' | 'formatDate' | 'Gallery' | 'isAttachmentEqual' | 'MessageFooter' | 'MessageHeader' | 'MessageDeleted' | 'MessageError' | 'MessageReplies' | 'MessageStatus' | 'myMessageTheme' | 'onPressInMessage' | 'Reply'> & Pick<TranslationContextValue, 't' | 'tDateTimeParser'> & {
7
7
  setMessageContentWidth: React.Dispatch<React.SetStateAction<number>>;
8
8
  };
9
9
  export declare type MessageContentProps<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Partial<Omit<MessageContentPropsWithContext<StreamChatGenerics>, 'setMessageContentWidth'>> & Pick<MessageContentPropsWithContext<StreamChatGenerics>, 'setMessageContentWidth'>;
@@ -2,7 +2,7 @@
2
2
  import { MessageContextValue } from '../../../contexts/messageContext/MessageContext';
3
3
  import { MessagesContextValue } from '../../../contexts/messagesContext/MessagesContext';
4
4
  import type { DefaultStreamChatGenerics } from '../../../types/types';
5
- export declare type MessageSimplePropsWithContext<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Pick<MessageContextValue<StreamChatGenerics>, 'alignment' | 'channel' | 'groupStyles' | 'hasReactions' | 'message'> & Pick<MessagesContextValue<StreamChatGenerics>, 'enableMessageGroupingByUser' | 'MessageAvatar' | 'MessageContent' | 'MessagePinnedHeader' | 'ReactionList'>;
5
+ export declare type MessageSimplePropsWithContext<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Pick<MessageContextValue<StreamChatGenerics>, 'alignment' | 'channel' | 'groupStyles' | 'hasReactions' | 'message'> & Pick<MessagesContextValue<StreamChatGenerics>, 'enableMessageGroupingByUser' | 'myMessageTheme' | 'MessageAvatar' | 'MessageContent' | 'MessagePinnedHeader' | 'ReactionList'>;
6
6
  export declare type MessageSimpleProps<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Partial<MessageSimplePropsWithContext<StreamChatGenerics>>;
7
7
  /**
8
8
  *
@@ -11,7 +11,7 @@ export declare type MessageTextProps<StreamChatGenerics extends DefaultStreamCha
11
11
  theme: Theme;
12
12
  };
13
13
  };
14
- export declare type MessageTextContainerPropsWithContext<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Pick<MessageContextValue<StreamChatGenerics>, 'message' | 'onLongPress' | 'onlyEmojis' | 'onPress' | 'preventPress'> & Pick<MessagesContextValue<StreamChatGenerics>, 'markdownRules' | 'MessageText'> & {
14
+ export declare type MessageTextContainerPropsWithContext<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Pick<MessageContextValue<StreamChatGenerics>, 'message' | 'onLongPress' | 'onlyEmojis' | 'onPress' | 'preventPress'> & Pick<MessagesContextValue<StreamChatGenerics>, 'markdownRules' | 'MessageText' | 'myMessageTheme'> & {
15
15
  markdownStyles?: MarkdownStyle;
16
16
  messageOverlay?: boolean;
17
17
  messageTextNumberOfLines?: number;
@@ -1,3 +1,3 @@
1
1
  import type { MessageContextValue } from '../../../contexts/messageContext/MessageContext';
2
2
  import type { DefaultStreamChatGenerics } from '../../../types/types';
3
- export declare const useCreateMessageContext: <StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics>({ actionsEnabled, alignment, channel, disabled, files, goToMessage, groupStyles, handleAction, handleDeleteMessage, handleEditMessage, handleQuotedReplyMessage, handleResendMessage, handleToggleBanUser, handleToggleMuteUser, handleToggleReaction, hasReactions, images, isMyMessage, lastGroupMessage, lastReceivedId, members, message, messageContentOrder, onLongPress, onlyEmojis, onOpenThread, onPress, onPressIn, otherAttachments, preventPress, reactions, showAvatar, showMessageOverlay, showMessageStatus, threadList, videos, }: MessageContextValue<StreamChatGenerics>) => MessageContextValue<StreamChatGenerics>;
3
+ export declare const useCreateMessageContext: <StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics>({ actionsEnabled, alignment, channel, disabled, files, goToMessage, groupStyles, handleAction, handleDeleteMessage, handleEditMessage, handleQuotedReplyMessage, handleResendMessage, handleToggleBanUser, handleToggleMuteUser, handleToggleReaction, hasReactions, images, isMyMessage, lastGroupMessage, lastReceivedId, members, message, messageContentOrder, myMessageTheme, onLongPress, onlyEmojis, onOpenThread, onPress, onPressIn, otherAttachments, preventPress, reactions, showAvatar, showMessageOverlay, showMessageStatus, threadList, videos, }: MessageContextValue<StreamChatGenerics>) => MessageContextValue<StreamChatGenerics>;
@@ -5,6 +5,8 @@ import type { MessageTouchableHandlerPayload, TouchableHandlerPayload } from '..
5
5
  import type { GroupType, MessageType } from '../../components/MessageList/hooks/useMessageList';
6
6
  import type { ChannelContextValue } from '../../contexts/channelContext/ChannelContext';
7
7
  import type { MessageContentType } from '../../contexts/messagesContext/MessagesContext';
8
+ import type { DeepPartial } from '../../contexts/themeContext/ThemeContext';
9
+ import type { Theme } from '../../contexts/themeContext/utils/theme';
8
10
  import type { DefaultStreamChatGenerics, UnknownType } from '../../types/types';
9
11
  export declare type Alignment = 'right' | 'left';
10
12
  export declare type Reactions = {
@@ -76,7 +78,7 @@ export declare type MessageContextValue<StreamChatGenerics extends DefaultStream
76
78
  /** The images attached to a message */
77
79
  otherAttachments: Attachment<StreamChatGenerics>[];
78
80
  reactions: Reactions;
79
- showMessageOverlay: (messageReactions?: boolean) => void;
81
+ showMessageOverlay: (messageReactions?: boolean, error?: boolean) => void;
80
82
  showMessageStatus: boolean;
81
83
  /** Whether or not the Message is part of a Thread */
82
84
  threadList: boolean;
@@ -85,6 +87,10 @@ export declare type MessageContextValue<StreamChatGenerics extends DefaultStream
85
87
  goToMessage?: (messageId: string) => void;
86
88
  /** Latest message id on current channel */
87
89
  lastReceivedId?: string;
90
+ /**
91
+ * Theme provided only to messages that are the current users
92
+ */
93
+ myMessageTheme?: DeepPartial<Theme>;
88
94
  /** Prevent message being pressed for image viewer view */
89
95
  preventPress?: boolean;
90
96
  /** Whether or not the avatar show show next to Message */
@@ -100,4 +106,4 @@ export declare const useMessageContext: <StreamChatGenerics extends DefaultStrea
100
106
  * typing is desired while using the HOC withMessageContextContext the Props for the
101
107
  * wrapped component must be provided as the first generic.
102
108
  */
103
- export declare const withMessageContext: <P extends UnknownType, StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics>(Component: React.ComponentType<P>) => React.FC<Omit<P, "disabled" | "onPress" | "onPressIn" | "onLongPress" | "channel" | "message" | "reactions" | "members" | "threadList" | "alignment" | "actionsEnabled" | "files" | "groupStyles" | "handleAction" | "handleDeleteMessage" | "handleEditMessage" | "handleQuotedReplyMessage" | "handleResendMessage" | "handleToggleBanUser" | "handleToggleMuteUser" | "handleToggleReaction" | "hasReactions" | "images" | "isMyMessage" | "lastGroupMessage" | "messageContentOrder" | "onlyEmojis" | "onOpenThread" | "otherAttachments" | "showMessageOverlay" | "showMessageStatus" | "videos" | "goToMessage" | "lastReceivedId" | "preventPress" | "showAvatar">>;
109
+ export declare const withMessageContext: <P extends UnknownType, StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics>(Component: React.ComponentType<P>) => React.FC<Omit<P, "disabled" | "onPress" | "onPressIn" | "onLongPress" | "channel" | "message" | "reactions" | "members" | "threadList" | "alignment" | "actionsEnabled" | "files" | "groupStyles" | "handleAction" | "handleDeleteMessage" | "handleEditMessage" | "handleQuotedReplyMessage" | "handleResendMessage" | "handleToggleBanUser" | "handleToggleMuteUser" | "handleToggleReaction" | "hasReactions" | "images" | "isMyMessage" | "lastGroupMessage" | "messageContentOrder" | "onlyEmojis" | "onOpenThread" | "otherAttachments" | "showMessageOverlay" | "showMessageStatus" | "videos" | "goToMessage" | "lastReceivedId" | "myMessageTheme" | "preventPress" | "showAvatar">>;