stream-chat-react-native-core 5.38.1 → 5.39.0-beta.2

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 (242) hide show
  1. package/lib/commonjs/components/Channel/Channel.js +58 -25
  2. package/lib/commonjs/components/Channel/Channel.js.map +1 -1
  3. package/lib/commonjs/components/Channel/hooks/useCreateThreadContext.js +33 -21
  4. package/lib/commonjs/components/Channel/hooks/useCreateThreadContext.js.map +1 -1
  5. package/lib/commonjs/components/Chat/Chat.js +7 -0
  6. package/lib/commonjs/components/Chat/Chat.js.map +1 -1
  7. package/lib/commonjs/components/Indicators/EmptyStateIndicator.js +14 -0
  8. package/lib/commonjs/components/Indicators/EmptyStateIndicator.js.map +1 -1
  9. package/lib/commonjs/components/Indicators/LoadingIndicator.js +4 -0
  10. package/lib/commonjs/components/Indicators/LoadingIndicator.js.map +1 -1
  11. package/lib/commonjs/components/Message/hooks/useProcessReactions.js +13 -7
  12. package/lib/commonjs/components/Message/hooks/useProcessReactions.js.map +1 -1
  13. package/lib/commonjs/components/MessageList/InlineLoadingMoreRecentThreadIndicator.js +52 -0
  14. package/lib/commonjs/components/MessageList/InlineLoadingMoreRecentThreadIndicator.js.map +1 -0
  15. package/lib/commonjs/components/MessageList/MessageList.js +14 -6
  16. package/lib/commonjs/components/MessageList/MessageList.js.map +1 -1
  17. package/lib/commonjs/components/Thread/Thread.js +12 -5
  18. package/lib/commonjs/components/Thread/Thread.js.map +1 -1
  19. package/lib/commonjs/components/Thread/components/ThreadFooterComponent.js +41 -18
  20. package/lib/commonjs/components/Thread/components/ThreadFooterComponent.js.map +1 -1
  21. package/lib/commonjs/components/ThreadList/ThreadList.js +132 -0
  22. package/lib/commonjs/components/ThreadList/ThreadList.js.map +1 -0
  23. package/lib/commonjs/components/ThreadList/ThreadListItem.js +246 -0
  24. package/lib/commonjs/components/ThreadList/ThreadListItem.js.map +1 -0
  25. package/lib/commonjs/components/ThreadList/ThreadListUnreadBanner.js +66 -0
  26. package/lib/commonjs/components/ThreadList/ThreadListUnreadBanner.js.map +1 -0
  27. package/lib/commonjs/components/index.js +11 -11
  28. package/lib/commonjs/components/index.js.map +1 -1
  29. package/lib/commonjs/contexts/index.js +22 -0
  30. package/lib/commonjs/contexts/index.js.map +1 -1
  31. package/lib/commonjs/contexts/themeContext/utils/theme.js +19 -0
  32. package/lib/commonjs/contexts/themeContext/utils/theme.js.map +1 -1
  33. package/lib/commonjs/contexts/threadContext/ThreadContext.js.map +1 -1
  34. package/lib/commonjs/contexts/threadsContext/ThreadListItemContext.js +28 -0
  35. package/lib/commonjs/contexts/threadsContext/ThreadListItemContext.js.map +1 -0
  36. package/lib/commonjs/contexts/threadsContext/ThreadsContext.js +33 -0
  37. package/lib/commonjs/contexts/threadsContext/ThreadsContext.js.map +1 -0
  38. package/lib/commonjs/hooks/index.js +11 -0
  39. package/lib/commonjs/hooks/index.js.map +1 -1
  40. package/lib/commonjs/hooks/useStateStore.js +23 -0
  41. package/lib/commonjs/hooks/useStateStore.js.map +1 -0
  42. package/lib/commonjs/i18n/en.json +7 -0
  43. package/lib/commonjs/i18n/es.json +7 -0
  44. package/lib/commonjs/i18n/fr.json +7 -0
  45. package/lib/commonjs/i18n/he.json +7 -0
  46. package/lib/commonjs/i18n/hi.json +7 -0
  47. package/lib/commonjs/i18n/it.json +7 -0
  48. package/lib/commonjs/i18n/ja.json +7 -0
  49. package/lib/commonjs/i18n/ko.json +7 -0
  50. package/lib/commonjs/i18n/nl.json +7 -0
  51. package/lib/commonjs/i18n/pt-br.json +7 -0
  52. package/lib/commonjs/i18n/ru.json +7 -0
  53. package/lib/commonjs/i18n/tr.json +7 -0
  54. package/lib/commonjs/icons/MessageBubble.js +19 -0
  55. package/lib/commonjs/icons/MessageBubble.js.map +1 -0
  56. package/lib/commonjs/icons/MessageBubbleEmpty.js +19 -0
  57. package/lib/commonjs/icons/MessageBubbleEmpty.js.map +1 -0
  58. package/lib/commonjs/icons/Reload.js +19 -0
  59. package/lib/commonjs/icons/Reload.js.map +1 -0
  60. package/lib/commonjs/icons/index.js +33 -0
  61. package/lib/commonjs/icons/index.js.map +1 -1
  62. package/lib/commonjs/store/mappers/mapDateTimeToStorable.js.map +1 -1
  63. package/lib/commonjs/version.json +1 -1
  64. package/lib/module/components/Channel/Channel.js +58 -25
  65. package/lib/module/components/Channel/Channel.js.map +1 -1
  66. package/lib/module/components/Channel/hooks/useCreateThreadContext.js +33 -21
  67. package/lib/module/components/Channel/hooks/useCreateThreadContext.js.map +1 -1
  68. package/lib/module/components/Chat/Chat.js +7 -0
  69. package/lib/module/components/Chat/Chat.js.map +1 -1
  70. package/lib/module/components/Indicators/EmptyStateIndicator.js +14 -0
  71. package/lib/module/components/Indicators/EmptyStateIndicator.js.map +1 -1
  72. package/lib/module/components/Indicators/LoadingIndicator.js +4 -0
  73. package/lib/module/components/Indicators/LoadingIndicator.js.map +1 -1
  74. package/lib/module/components/Message/hooks/useProcessReactions.js +13 -7
  75. package/lib/module/components/Message/hooks/useProcessReactions.js.map +1 -1
  76. package/lib/module/components/MessageList/InlineLoadingMoreRecentThreadIndicator.js +52 -0
  77. package/lib/module/components/MessageList/InlineLoadingMoreRecentThreadIndicator.js.map +1 -0
  78. package/lib/module/components/MessageList/MessageList.js +14 -6
  79. package/lib/module/components/MessageList/MessageList.js.map +1 -1
  80. package/lib/module/components/Thread/Thread.js +12 -5
  81. package/lib/module/components/Thread/Thread.js.map +1 -1
  82. package/lib/module/components/Thread/components/ThreadFooterComponent.js +41 -18
  83. package/lib/module/components/Thread/components/ThreadFooterComponent.js.map +1 -1
  84. package/lib/module/components/ThreadList/ThreadList.js +132 -0
  85. package/lib/module/components/ThreadList/ThreadList.js.map +1 -0
  86. package/lib/module/components/ThreadList/ThreadListItem.js +246 -0
  87. package/lib/module/components/ThreadList/ThreadListItem.js.map +1 -0
  88. package/lib/module/components/ThreadList/ThreadListUnreadBanner.js +66 -0
  89. package/lib/module/components/ThreadList/ThreadListUnreadBanner.js.map +1 -0
  90. package/lib/module/components/index.js +11 -11
  91. package/lib/module/components/index.js.map +1 -1
  92. package/lib/module/contexts/index.js +22 -0
  93. package/lib/module/contexts/index.js.map +1 -1
  94. package/lib/module/contexts/themeContext/utils/theme.js +19 -0
  95. package/lib/module/contexts/themeContext/utils/theme.js.map +1 -1
  96. package/lib/module/contexts/threadContext/ThreadContext.js.map +1 -1
  97. package/lib/module/contexts/threadsContext/ThreadListItemContext.js +28 -0
  98. package/lib/module/contexts/threadsContext/ThreadListItemContext.js.map +1 -0
  99. package/lib/module/contexts/threadsContext/ThreadsContext.js +33 -0
  100. package/lib/module/contexts/threadsContext/ThreadsContext.js.map +1 -0
  101. package/lib/module/hooks/index.js +11 -0
  102. package/lib/module/hooks/index.js.map +1 -1
  103. package/lib/module/hooks/useStateStore.js +23 -0
  104. package/lib/module/hooks/useStateStore.js.map +1 -0
  105. package/lib/module/i18n/en.json +7 -0
  106. package/lib/module/i18n/es.json +7 -0
  107. package/lib/module/i18n/fr.json +7 -0
  108. package/lib/module/i18n/he.json +7 -0
  109. package/lib/module/i18n/hi.json +7 -0
  110. package/lib/module/i18n/it.json +7 -0
  111. package/lib/module/i18n/ja.json +7 -0
  112. package/lib/module/i18n/ko.json +7 -0
  113. package/lib/module/i18n/nl.json +7 -0
  114. package/lib/module/i18n/pt-br.json +7 -0
  115. package/lib/module/i18n/ru.json +7 -0
  116. package/lib/module/i18n/tr.json +7 -0
  117. package/lib/module/icons/MessageBubble.js +19 -0
  118. package/lib/module/icons/MessageBubble.js.map +1 -0
  119. package/lib/module/icons/MessageBubbleEmpty.js +19 -0
  120. package/lib/module/icons/MessageBubbleEmpty.js.map +1 -0
  121. package/lib/module/icons/Reload.js +19 -0
  122. package/lib/module/icons/Reload.js.map +1 -0
  123. package/lib/module/icons/index.js +33 -0
  124. package/lib/module/icons/index.js.map +1 -1
  125. package/lib/module/store/mappers/mapDateTimeToStorable.js.map +1 -1
  126. package/lib/module/version.json +1 -1
  127. package/lib/typescript/components/AttachmentPicker/AttachmentPicker.d.ts +1 -1
  128. package/lib/typescript/components/Channel/Channel.d.ts +3 -2
  129. package/lib/typescript/components/Channel/Channel.d.ts.map +1 -1
  130. package/lib/typescript/components/Channel/hooks/useCreateThreadContext.d.ts +34 -1
  131. package/lib/typescript/components/Channel/hooks/useCreateThreadContext.d.ts.map +1 -1
  132. package/lib/typescript/components/Chat/Chat.d.ts.map +1 -1
  133. package/lib/typescript/components/Indicators/EmptyStateIndicator.d.ts +1 -1
  134. package/lib/typescript/components/Indicators/EmptyStateIndicator.d.ts.map +1 -1
  135. package/lib/typescript/components/Indicators/LoadingIndicator.d.ts +1 -1
  136. package/lib/typescript/components/Indicators/LoadingIndicator.d.ts.map +1 -1
  137. package/lib/typescript/components/Message/hooks/useProcessReactions.d.ts.map +1 -1
  138. package/lib/typescript/components/MessageList/InlineLoadingMoreRecentThreadIndicator.d.ts +8 -0
  139. package/lib/typescript/components/MessageList/InlineLoadingMoreRecentThreadIndicator.d.ts.map +1 -0
  140. package/lib/typescript/components/MessageList/MessageList.d.ts +1 -1
  141. package/lib/typescript/components/MessageList/MessageList.d.ts.map +1 -1
  142. package/lib/typescript/components/Thread/Thread.d.ts +1 -1
  143. package/lib/typescript/components/Thread/Thread.d.ts.map +1 -1
  144. package/lib/typescript/components/Thread/components/ThreadFooterComponent.d.ts +1 -0
  145. package/lib/typescript/components/Thread/components/ThreadFooterComponent.d.ts.map +1 -1
  146. package/lib/typescript/components/ThreadList/ThreadList.d.ts +11 -0
  147. package/lib/typescript/components/ThreadList/ThreadList.d.ts.map +1 -0
  148. package/lib/typescript/components/ThreadList/ThreadListItem.d.ts +16 -0
  149. package/lib/typescript/components/ThreadList/ThreadListItem.d.ts.map +1 -0
  150. package/lib/typescript/components/ThreadList/ThreadListUnreadBanner.d.ts +3 -0
  151. package/lib/typescript/components/ThreadList/ThreadListUnreadBanner.d.ts.map +1 -0
  152. package/lib/typescript/components/index.d.ts +1 -1
  153. package/lib/typescript/components/index.d.ts.map +1 -1
  154. package/lib/typescript/contexts/attachmentPickerContext/AttachmentPickerContext.d.ts +1 -1
  155. package/lib/typescript/contexts/index.d.ts +2 -0
  156. package/lib/typescript/contexts/index.d.ts.map +1 -1
  157. package/lib/typescript/contexts/messageContext/MessageContext.d.ts +1 -1
  158. package/lib/typescript/contexts/messageInputContext/MessageInputContext.d.ts +1 -1
  159. package/lib/typescript/contexts/themeContext/utils/theme.d.ts +19 -0
  160. package/lib/typescript/contexts/themeContext/utils/theme.d.ts.map +1 -1
  161. package/lib/typescript/contexts/threadContext/ThreadContext.d.ts +11 -2
  162. package/lib/typescript/contexts/threadContext/ThreadContext.d.ts.map +1 -1
  163. package/lib/typescript/contexts/threadsContext/ThreadListItemContext.d.ts +19 -0
  164. package/lib/typescript/contexts/threadsContext/ThreadListItemContext.d.ts.map +1 -0
  165. package/lib/typescript/contexts/threadsContext/ThreadsContext.d.ts +25 -0
  166. package/lib/typescript/contexts/threadsContext/ThreadsContext.d.ts.map +1 -0
  167. package/lib/typescript/hooks/index.d.ts +1 -0
  168. package/lib/typescript/hooks/index.d.ts.map +1 -1
  169. package/lib/typescript/hooks/useStateStore.d.ts +4 -0
  170. package/lib/typescript/hooks/useStateStore.d.ts.map +1 -0
  171. package/lib/typescript/i18n/en.json +7 -0
  172. package/lib/typescript/i18n/es.json +7 -0
  173. package/lib/typescript/i18n/fr.json +7 -0
  174. package/lib/typescript/i18n/he.json +7 -0
  175. package/lib/typescript/i18n/hi.json +7 -0
  176. package/lib/typescript/i18n/it.json +7 -0
  177. package/lib/typescript/i18n/ja.json +7 -0
  178. package/lib/typescript/i18n/ko.json +7 -0
  179. package/lib/typescript/i18n/nl.json +7 -0
  180. package/lib/typescript/i18n/pt-br.json +7 -0
  181. package/lib/typescript/i18n/ru.json +7 -0
  182. package/lib/typescript/i18n/tr.json +7 -0
  183. package/lib/typescript/icons/MessageBubble.d.ts +4 -0
  184. package/lib/typescript/icons/MessageBubble.d.ts.map +1 -0
  185. package/lib/typescript/icons/MessageBubbleEmpty.d.ts +4 -0
  186. package/lib/typescript/icons/MessageBubbleEmpty.d.ts.map +1 -0
  187. package/lib/typescript/icons/Reload.d.ts +4 -0
  188. package/lib/typescript/icons/Reload.d.ts.map +1 -0
  189. package/lib/typescript/icons/index.d.ts +3 -0
  190. package/lib/typescript/icons/index.d.ts.map +1 -1
  191. package/lib/typescript/store/mappers/mapDateTimeToStorable.d.ts +1 -1
  192. package/lib/typescript/store/mappers/mapDateTimeToStorable.d.ts.map +1 -1
  193. package/lib/typescript/utils/i18n/Streami18n.d.ts +7 -0
  194. package/lib/typescript/utils/i18n/Streami18n.d.ts.map +1 -1
  195. package/package.json +2 -2
  196. package/src/components/Channel/Channel.tsx +54 -20
  197. package/src/components/Channel/hooks/useCreateThreadContext.ts +36 -31
  198. package/src/components/Chat/Chat.tsx +10 -0
  199. package/src/components/Indicators/EmptyStateIndicator.tsx +9 -2
  200. package/src/components/Indicators/LoadingIndicator.tsx +3 -1
  201. package/src/components/Message/hooks/useProcessReactions.ts +25 -4
  202. package/src/components/MessageList/InlineLoadingMoreRecentThreadIndicator.tsx +64 -0
  203. package/src/components/MessageList/MessageList.tsx +23 -9
  204. package/src/components/Thread/Thread.tsx +18 -9
  205. package/src/components/Thread/__tests__/__snapshots__/Thread.test.js.snap +6 -0
  206. package/src/components/Thread/components/ThreadFooterComponent.tsx +28 -2
  207. package/src/components/ThreadList/ThreadList.tsx +119 -0
  208. package/src/components/ThreadList/ThreadListItem.tsx +268 -0
  209. package/src/components/ThreadList/ThreadListUnreadBanner.tsx +52 -0
  210. package/src/components/index.ts +1 -1
  211. package/src/contexts/index.ts +2 -0
  212. package/src/contexts/themeContext/utils/theme.ts +36 -0
  213. package/src/contexts/threadContext/ThreadContext.tsx +9 -2
  214. package/src/contexts/threadsContext/ThreadListItemContext.tsx +41 -0
  215. package/src/contexts/threadsContext/ThreadsContext.tsx +62 -0
  216. package/src/hooks/index.ts +1 -0
  217. package/src/hooks/useStateStore.ts +31 -0
  218. package/src/i18n/en.json +7 -0
  219. package/src/i18n/es.json +7 -0
  220. package/src/i18n/fr.json +7 -0
  221. package/src/i18n/he.json +7 -0
  222. package/src/i18n/hi.json +7 -0
  223. package/src/i18n/it.json +7 -0
  224. package/src/i18n/ja.json +7 -0
  225. package/src/i18n/ko.json +7 -0
  226. package/src/i18n/nl.json +7 -0
  227. package/src/i18n/pt-br.json +7 -0
  228. package/src/i18n/ru.json +7 -0
  229. package/src/i18n/tr.json +7 -0
  230. package/src/icons/MessageBubble.tsx +12 -0
  231. package/src/icons/MessageBubbleEmpty.tsx +12 -0
  232. package/src/icons/Reload.tsx +12 -0
  233. package/src/icons/index.ts +3 -0
  234. package/src/store/mappers/mapDateTimeToStorable.ts +1 -1
  235. package/src/version.json +1 -1
  236. package/lib/commonjs/components/MessageList/InlineLoadingMoreThreadIndicator.js +0 -52
  237. package/lib/commonjs/components/MessageList/InlineLoadingMoreThreadIndicator.js.map +0 -1
  238. package/lib/module/components/MessageList/InlineLoadingMoreThreadIndicator.js +0 -52
  239. package/lib/module/components/MessageList/InlineLoadingMoreThreadIndicator.js.map +0 -1
  240. package/lib/typescript/components/MessageList/InlineLoadingMoreThreadIndicator.d.ts +0 -8
  241. package/lib/typescript/components/MessageList/InlineLoadingMoreThreadIndicator.d.ts.map +0 -1
  242. package/src/components/MessageList/InlineLoadingMoreThreadIndicator.tsx +0 -64
@@ -38,12 +38,14 @@
38
38
  "Links are disabled": "लिंक अक्षम हैं",
39
39
  "Loading channels...": "चैनल लोड हो रहे हैं...",
40
40
  "Loading messages...": "मेसेजस लोड हो रहे हैं...",
41
+ "Loading threads...": "थ्रेड्स लोड हो रहे हैं...",
41
42
  "Loading...": "लोड हो रहा है...",
42
43
  "Message Reactions": "संदेश प्रतिक्रियाएँ",
43
44
  "Message deleted": "मैसेज हटा दिया गया",
44
45
  "Message flagged": "संदेश को ध्वजांकित किया गया",
45
46
  "Mute User": "उपयोगकर्ता को म्यूट करें",
46
47
  "No chats here yet…": "अभी तक यहाँ कोई चैट नहीं है...",
48
+ "No threads here yet": "यहाँ अभी तक कोई थ्रेड्स नहीं हैं",
47
49
  "Not supported": "समर्थित नहीं",
48
50
  "Nothing yet...": "कोई मैसेज नहीं है...",
49
51
  "Ok": "ठीक",
@@ -67,6 +69,8 @@
67
69
  "Sending links is not allowed in this conversation": "इस बातचीत में लिंक भेजने की अनुमति नहीं है",
68
70
  "Slow mode ON": "स्लो मोड चालू",
69
71
  "The message has been reported to a moderator.": "संदेश एक मॉडरेटर को सूचित किया गया है।",
72
+ "The source message was deleted": "स्रोत संदेश हटा दिया गया है",
73
+ "This reply was deleted": "यह उत्तर हटा दिया गया है",
70
74
  "Thread Reply": "धागा जवाब",
71
75
  "Unban User": "उपयोगकर्ता को अनब्लॉक करें",
72
76
  "Unblock User": "उपयोगकर्ता को अनब्लॉक करें",
@@ -75,8 +79,10 @@
75
79
  "Unpin from Conversation": "बातचीत से अनपिन करें",
76
80
  "Unread Messages": "अपठित संदेश",
77
81
  "Video": "वीडियो",
82
+ "Voice message": "वॉइस संदेश",
78
83
  "You": "आप",
79
84
  "You can't send messages in this channel": "आप इस चैनल में संदेश नहीं भेज सकते",
85
+ "replied to": "को उत्तर दिया",
80
86
  "timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[कल]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[कल]\",\"nextWeek\":\"dddd [को] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
81
87
  "timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
82
88
  "timestamp/InlineDateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
@@ -84,6 +90,7 @@
84
90
  "timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
85
91
  "timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
86
92
  "timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
93
+ "timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[कल]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[कल]\",\"nextWeek\":\"dddd [को] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
87
94
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} और {{ nonSelfUserLength }} अधिक टाइप कर रहे हैं",
88
95
  "{{ index }} of {{ photoLength }}": "{{ index }} / {{ photoLength }}",
89
96
  "{{ replyCount }} Replies": "{{ replyCount }} रिप्लाई",
@@ -38,12 +38,14 @@
38
38
  "Links are disabled": "I link sono disabilitati",
39
39
  "Loading channels...": "Caricamento canali in corso...",
40
40
  "Loading messages...": "Caricamento messaggi...",
41
+ "Loading threads...": "Caricamento dei thread...",
41
42
  "Loading...": "Caricamento...",
42
43
  "Message Reactions": "Reazioni ai Messaggi",
43
44
  "Message deleted": "Messaggio cancellato",
44
45
  "Message flagged": "Messaggio contrassegnato",
45
46
  "Mute User": "Utente Muto",
46
47
  "No chats here yet…": "Non ci sono ancora chat qui...",
48
+ "No threads here yet": "Nessun thread qui ancora",
47
49
  "Not supported": "non supportato",
48
50
  "Nothing yet...": "Ancora niente...",
49
51
  "Ok": "Ok",
@@ -67,6 +69,8 @@
67
69
  "Sending links is not allowed in this conversation": "L'invio di link non è consentito in questa conversazione",
68
70
  "Slow mode ON": "Slowmode attiva",
69
71
  "The message has been reported to a moderator.": "Il messaggio è stato segnalato a un moderatore.",
72
+ "The source message was deleted": "Il messaggio originale è stato eliminato",
73
+ "This reply was deleted": "Questa risposta è stata eliminata",
70
74
  "Thread Reply": "Rispondi alla Discussione",
71
75
  "Unban User": "Sblocca Utente",
72
76
  "Unblock User": "Sblocca utente",
@@ -75,8 +79,10 @@
75
79
  "Unpin from Conversation": "Rimuovi dagli elementi in evidenza",
76
80
  "Unread Messages": "Messaggi non letti",
77
81
  "Video": "Video",
82
+ "Voice message": "Messaggio vocale",
78
83
  "You": "Tu",
79
84
  "You can't send messages in this channel": "Non puoi inviare messaggi in questo canale",
85
+ "replied to": "ha risposto a",
80
86
  "timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Ieri]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Domani]\",\"nextWeek\":\"dddd [alle] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
81
87
  "timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
82
88
  "timestamp/InlineDateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
@@ -84,6 +90,7 @@
84
90
  "timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
85
91
  "timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
86
92
  "timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
93
+ "timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Ieri]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Domani]\",\"nextWeek\":\"dddd [alle] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
87
94
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} e altri {{ nonSelfUserLength }} stanno scrivendo",
88
95
  "{{ index }} of {{ photoLength }}": "{{ index }} di {{ photoLength }}",
89
96
  "{{ replyCount }} Replies": "{{ replyCount }} Risposte",
@@ -38,12 +38,14 @@
38
38
  "Links are disabled": "リンク機能が無効になっています",
39
39
  "Loading channels...": "チャネルを読み込み中。。。",
40
40
  "Loading messages...": "メッセージを読み込み中。。。",
41
+ "Loading threads...": "スレッドを読み込み中...",
41
42
  "Loading...": "読み込み中。。。",
42
43
  "Message Reactions": "メッセージのリアクション",
43
44
  "Message deleted": "メッセージが削除されました",
44
45
  "Message flagged": "メッセージにフラグが付けられました",
45
46
  "Mute User": "ユーザーをミュートする",
46
47
  "No chats here yet…": "まだチャットはありません…",
48
+ "No threads here yet": "まだスレッドがありません",
47
49
  "Not supported": "サポートしていません",
48
50
  "Nothing yet...": "まだ何もありません...",
49
51
  "Ok": "確認",
@@ -67,6 +69,8 @@
67
69
  "Sending links is not allowed in this conversation": "この会話ではリンク機能を使用できません。",
68
70
  "Slow mode ON": "スローモードオン",
69
71
  "The message has been reported to a moderator.": "メッセージはモデレーターに報告されました。",
72
+ "The source message was deleted": "元のメッセージが削除されました",
73
+ "This reply was deleted": "この返信は削除されました",
70
74
  "Thread Reply": "スレッドの返信",
71
75
  "Unban User": "ユーザーの禁止を解除する",
72
76
  "Unblock User": "ユーザーのブロックを解除する",
@@ -75,8 +79,10 @@
75
79
  "Unpin from Conversation": "会話のピンを外す",
76
80
  "Unread Messages": "未読メッセージ",
77
81
  "Video": "ビデオ",
82
+ "Voice message": "ボイスメッセージ",
78
83
  "You": "あなた",
79
84
  "You can't send messages in this channel": "このチャンネルではメッセージを送信できません",
85
+ "replied to": "に返信しました",
80
86
  "timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[昨日]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[明日]\",\"nextWeek\":\"dddd [の] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
81
87
  "timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
82
88
  "timestamp/InlineDateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
@@ -84,6 +90,7 @@
84
90
  "timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
85
91
  "timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
86
92
  "timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
93
+ "timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[昨日]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[明日]\",\"nextWeek\":\"dddd [の] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
87
94
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }}と{{ nonSelfUserLength }}人がタイピングしています",
88
95
  "{{ index }} of {{ photoLength }}": "{{ index }} / {{ photoLength }}",
89
96
  "{{ replyCount }} Replies": "{{ replyCount }}件の返信",
@@ -38,12 +38,14 @@
38
38
  "Links are disabled": "링크 기능이 비활성화되었습니다",
39
39
  "Loading channels...": "채널을 로딩 중...",
40
40
  "Loading messages...": "메시지를 로딩 중...",
41
+ "Loading threads...": "스레드 로딩 중...",
41
42
  "Loading...": "로딩 중...",
42
43
  "Message Reactions": "메시지의 리액션",
43
44
  "Message deleted": "메시지가 삭제되었습니다.",
44
45
  "Message flagged": "메시지에 플래그가 지정되었습니다",
45
46
  "Mute User": "사용자를 음소거",
46
47
  "No chats here yet…": "아직 여기에 채팅이 없어요…",
48
+ "No threads here yet": "아직 스레드가 없습니다",
47
49
  "Not supported": "지원하지 않습니다",
48
50
  "Nothing yet...": "아직 아무것도...",
49
51
  "Ok": "확인",
@@ -67,6 +69,8 @@
67
69
  "Sending links is not allowed in this conversation": "이 대화에서는 링크 기능을 사용할 수 없습니다",
68
70
  "Slow mode ON": "슬로모드 켜짐",
69
71
  "The message has been reported to a moderator.": "메시지는 운영자에보고되었습니다.",
72
+ "The source message was deleted": "원본 메시지가 삭제되었습니다",
73
+ "This reply was deleted": "이 답글은 삭제되었습니다",
70
74
  "Thread Reply": "스레드\u3000답장",
71
75
  "Unban User": "사용자 차단 해제",
72
76
  "Unblock User": "사용자 차단 해제",
@@ -75,8 +79,10 @@
75
79
  "Unpin from Conversation": "대화의 핀을 분리합니다",
76
80
  "Unread Messages": "읽지 않은 메시지",
77
81
  "Video": "동영상",
82
+ "Voice message": "음성 메시지",
78
83
  "You": "당신",
79
84
  "You can't send messages in this channel": "이 채널에서는 메세지를 전송할 수 없습니다",
85
+ "replied to": "에 답장했습니다",
80
86
  "timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[어제]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[내일]\",\"nextWeek\":\"dddd [LT에]\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
81
87
  "timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
82
88
  "timestamp/InlineDateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
@@ -84,6 +90,7 @@
84
90
  "timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
85
91
  "timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
86
92
  "timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
93
+ "timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[어제]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[내일]\",\"nextWeek\":\"dddd [LT에]\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
87
94
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} 외 {{ nonSelfUserLength }}명이 입력 중입니다",
88
95
  "{{ index }} of {{ photoLength }}": "{{ index }} / {{ photoLength }}",
89
96
  "{{ replyCount }} Replies": "{{ replyCount }} 답글",
@@ -38,12 +38,14 @@
38
38
  "Links are disabled": "Het versturen van links staat uit",
39
39
  "Loading channels...": "Kanalen aan het laden...",
40
40
  "Loading messages...": "Berichten aan het laden...",
41
+ "Loading threads...": "Threads laden...",
41
42
  "Loading...": "Aan het laden...",
42
43
  "Message Reactions": "Bericht Reacties",
43
44
  "Message deleted": "Bericht verwijderd",
44
45
  "Message flagged": "Bericht gemarkeerd",
45
46
  "Mute User": "Gebruiker dempen",
46
47
  "No chats here yet…": "Nog geen chats hier…",
48
+ "No threads here yet": "Hier zijn nog geen threads",
47
49
  "Not supported": "niet ondersteund",
48
50
  "Nothing yet...": "Nog niets...",
49
51
  "Ok": "Oké",
@@ -67,6 +69,8 @@
67
69
  "Sending links is not allowed in this conversation": "In dit gesprek is het niet toegestaan links te versturen",
68
70
  "Slow mode ON": "Langzame modus aan",
69
71
  "The message has been reported to a moderator.": "Het bericht is gerapporteerd aan een moderator.",
72
+ "The source message was deleted": "Het oorspronkelijke bericht is verwijderd",
73
+ "This reply was deleted": "Deze reactie is verwijderd",
70
74
  "Thread Reply": "Discussie beantwoorden",
71
75
  "Unban User": "Gebruiker Deblokeren",
72
76
  "Unblock User": "Deblokkeer gebruiker",
@@ -75,8 +79,10 @@
75
79
  "Unpin from Conversation": "Losmaken van gesprek",
76
80
  "Unread Messages": "Ongelezen Berichten",
77
81
  "Video": "Video",
82
+ "Voice message": "Spraakbericht",
78
83
  "You": "U",
79
84
  "You can't send messages in this channel": "Je kan geen berichten sturen in dit kanaal",
85
+ "replied to": "reageerde op",
80
86
  "timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Gisteren]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Morgen]\",\"nextWeek\":\"dddd [om] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
81
87
  "timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
82
88
  "timestamp/InlineDateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
@@ -84,6 +90,7 @@
84
90
  "timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
85
91
  "timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
86
92
  "timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
93
+ "timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Gisteren]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Morgen]\",\"nextWeek\":\"dddd [om] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
87
94
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} en {{ nonSelfUserLength }} anderen zijn aan het typen",
88
95
  "{{ index }} of {{ photoLength }}": "{{ index }} van {{ photoLength }}",
89
96
  "{{ replyCount }} Replies": "{{ replyCount }} Antwoorden",
@@ -38,12 +38,14 @@
38
38
  "Links are disabled": "Links estão desabilitados",
39
39
  "Loading channels...": "Carregando canais...",
40
40
  "Loading messages...": "Carregando mensagens...",
41
+ "Loading threads...": "Carregando tópicos...",
41
42
  "Loading...": "Carregando...",
42
43
  "Message Reactions": "Reações à Mensagem",
43
44
  "Message deleted": "Mensagem excluída",
44
45
  "Message flagged": "Mensagem sinalizada",
45
46
  "Mute User": "Silenciar Usuário",
46
47
  "No chats here yet…": "Ainda não há chats aqui...",
48
+ "No threads here yet": "Ainda não há tópicos aqui",
47
49
  "Not supported": "Não suportado",
48
50
  "Nothing yet...": "Nada ainda...",
49
51
  "Ok": "Ok",
@@ -67,6 +69,8 @@
67
69
  "Sending links is not allowed in this conversation": "Não é permitido enviar links nesta conversa",
68
70
  "Slow mode ON": "Modo Lento ATIVADO",
69
71
  "The message has been reported to a moderator.": "A mensagem foi relatada a um moderador.",
72
+ "The source message was deleted": "A mensagem original foi excluída",
73
+ "This reply was deleted": "Esta resposta foi excluída",
70
74
  "Thread Reply": "Respostas de Tópico",
71
75
  "Unban User": "Desbanir Usuário",
72
76
  "Unblock User": "Desbloquear Usuário",
@@ -75,8 +79,10 @@
75
79
  "Unpin from Conversation": "Desmarcar como fixado na conversa",
76
80
  "Unread Messages": "Mensagens não lidas",
77
81
  "Video": "Vídeo",
82
+ "Voice message": "Mensagem de voz",
78
83
  "You": "Você",
79
84
  "You can't send messages in this channel": "Você não pode enviar mensagens neste canal",
85
+ "replied to": "respondeu a",
80
86
  "timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Ontem]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Amanhã]\",\"nextWeek\":\"dddd [às] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
81
87
  "timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
82
88
  "timestamp/InlineDateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
@@ -84,6 +90,7 @@
84
90
  "timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
85
91
  "timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
86
92
  "timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
93
+ "timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Ontem]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Amanhã]\",\"nextWeek\":\"dddd [às] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
87
94
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} e mais {{ nonSelfUserLength }} pessoa(s) estão digitando",
88
95
  "{{ index }} of {{ photoLength }}": "{{ index }} de {{ photoLength }}",
89
96
  "{{ replyCount }} Replies": "{{ replyCount }} Respostas",
@@ -38,12 +38,14 @@
38
38
  "Links are disabled": "Ссылки отключены",
39
39
  "Loading channels...": "Загружаю каналы...",
40
40
  "Loading messages...": "Загружаю сообщения...",
41
+ "Loading threads...": "Загрузка потоков...",
41
42
  "Loading...": "Загружаю...",
42
43
  "Message Reactions": "Сообщения Реакции",
43
44
  "Message deleted": "Сообщение удалено",
44
45
  "Message flagged": "Сообщение отмечено",
45
46
  "Mute User": "Отключить пользователя",
46
47
  "No chats here yet…": "Здесь пока нет чатов…",
48
+ "No threads here yet": "Здесь пока нет потоков",
47
49
  "Not supported": "не поддерживается",
48
50
  "Nothing yet...": "Пока ничего нет...",
49
51
  "Ok": "Oк",
@@ -67,6 +69,8 @@
67
69
  "Sending links is not allowed in this conversation": "Отправка ссылок недоступна в этом чате",
68
70
  "Slow mode ON": "Медленный режим включен",
69
71
  "The message has been reported to a moderator.": "Сообщение отправлено модератору.",
72
+ "The source message was deleted": "Исходное сообщение было удалено",
73
+ "This reply was deleted": "Этот ответ был удалён",
70
74
  "Thread Reply": "Тема Ответить",
71
75
  "Unban User": "Разблокировать Пользователя",
72
76
  "Unblock User": "Разблокировать пользователя",
@@ -75,8 +79,10 @@
75
79
  "Unpin from Conversation": "Открепить от беседы",
76
80
  "Unread Messages": "Непрочитанные Сообщения",
77
81
  "Video": "видео",
82
+ "Voice message": "Голосовое сообщение",
78
83
  "You": "Вы",
79
84
  "You can't send messages in this channel": "Вы не можете отправлять сообщения в этот канал",
85
+ "replied to": "ответил на",
80
86
  "timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Вчера]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Завтра]\",\"nextWeek\":\"dddd [в] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
81
87
  "timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
82
88
  "timestamp/InlineDateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
@@ -84,6 +90,7 @@
84
90
  "timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
85
91
  "timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
86
92
  "timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
93
+ "timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Вчера]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Завтра]\",\"nextWeek\":\"dddd [в] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
87
94
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} и еще {{ nonSelfUserLength }} пишут",
88
95
  "{{ index }} of {{ photoLength }}": "{{ index }} из {{ photoLength }}",
89
96
  "{{ replyCount }} Replies": "{{ replyCount }} Ответов",
@@ -38,12 +38,14 @@
38
38
  "Links are disabled": "Bağlantılar devre dışı",
39
39
  "Loading channels...": "Kanallar yükleniyor...",
40
40
  "Loading messages...": "Mesajlar yükleniyor...",
41
+ "Loading threads...": "Akışlar yükleniyor...",
41
42
  "Loading...": "Yükleniyor...",
42
43
  "Message Reactions": "Mesaj Tepkileri",
43
44
  "Message deleted": "Mesaj silindi",
44
45
  "Message flagged": "Mesaj işaretlendi",
45
46
  "Mute User": "Kullanıcıyı sessize al",
46
47
  "No chats here yet…": "Henüz burada sohbet yok…",
48
+ "No threads here yet": "Burada henüz akış yok",
47
49
  "Not supported": "Desteklenmiyor",
48
50
  "Nothing yet...": "Henüz değil...",
49
51
  "Ok": "Tamam",
@@ -67,6 +69,8 @@
67
69
  "Sending links is not allowed in this conversation": "Bu konuşmada bağlantı göndermek desteklenmiyor",
68
70
  "Slow mode ON": "Yavaş Mod Açık",
69
71
  "The message has been reported to a moderator.": "Mesaj moderatöre bildirildi.",
72
+ "The source message was deleted": "Kaynak mesaj silindi",
73
+ "This reply was deleted": "Bu yanıt silindi",
70
74
  "Thread Reply": "Konu Yanıtı",
71
75
  "Unban User": "Kullanıcının Yasağını Kaldır",
72
76
  "Unblock User": "Kullanıcının engelini kaldır",
@@ -75,8 +79,10 @@
75
79
  "Unpin from Conversation": "Sabitlemeyi kaldır",
76
80
  "Unread Messages": "Okunmamış Mesajlar",
77
81
  "Video": "Video",
82
+ "Voice message": "Sesli mesaj",
78
83
  "You": "Sen",
79
84
  "You can't send messages in this channel": "Bu konuşmaya mesaj gönderemezsiniz",
85
+ "replied to": "yanıtladı",
80
86
  "timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Dün]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Yarın]\",\"nextWeek\":\"dddd [saat] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
81
87
  "timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
82
88
  "timestamp/InlineDateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
@@ -84,6 +90,7 @@
84
90
  "timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
85
91
  "timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
86
92
  "timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
93
+ "timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Dün]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Yarın]\",\"nextWeek\":\"dddd [saat] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
87
94
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} ve {{ nonSelfUserLength }} kişi daha yazıyor",
88
95
  "{{ index }} of {{ photoLength }}": "{{ index }} / {{ photoLength }}",
89
96
  "{{ replyCount }} Replies": "{{ replyCount }} Cevap",
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from './utils/base';
3
+ export declare const MessageBubble: (props: IconProps) => React.JSX.Element;
4
+ //# sourceMappingURL=MessageBubble.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MessageBubble.d.ts","sourceRoot":"","sources":["../../../src/icons/MessageBubble.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAqB,MAAM,cAAc,CAAC;AAE5D,eAAO,MAAM,aAAa,UAAW,SAAS,sBAO7C,CAAC"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from './utils/base';
3
+ export declare const MessageBubbleEmpty: (props: IconProps) => React.JSX.Element;
4
+ //# sourceMappingURL=MessageBubbleEmpty.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MessageBubbleEmpty.d.ts","sourceRoot":"","sources":["../../../src/icons/MessageBubbleEmpty.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAqB,MAAM,cAAc,CAAC;AAE5D,eAAO,MAAM,kBAAkB,UAAW,SAAS,sBAOlD,CAAC"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from './utils/base';
3
+ export declare const Reload: (props: IconProps) => React.JSX.Element;
4
+ //# sourceMappingURL=Reload.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Reload.d.ts","sourceRoot":"","sources":["../../../src/icons/Reload.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAqB,MAAM,cAAc,CAAC;AAE5D,eAAO,MAAM,MAAM,UAAW,SAAS,sBAOtC,CAAC"}
@@ -92,4 +92,7 @@ export * from './WutReaction';
92
92
  export * from './XLS';
93
93
  export * from './XLSX';
94
94
  export * from './ZIP';
95
+ export * from './MessageBubble';
96
+ export * from './MessageBubbleEmpty';
97
+ export * from './Reload';
95
98
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/icons/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAE7B,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC;AACxB,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,OAAO,CAAC;AACtB,cAAc,mBAAmB,CAAC;AAClC,cAAc,UAAU,CAAC;AACzB,cAAc,OAAO,CAAC;AACtB,cAAc,QAAQ,CAAC;AACvB,cAAc,QAAQ,CAAC;AACvB,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,OAAO,CAAC;AACtB,cAAc,QAAQ,CAAC;AACvB,cAAc,UAAU,CAAC;AACzB,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,kBAAkB,CAAC;AACjC,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,aAAa,CAAC;AAC5B,cAAc,QAAQ,CAAC;AACvB,cAAc,WAAW,CAAC;AAC1B,cAAc,QAAQ,CAAC;AACvB,cAAc,QAAQ,CAAC;AACvB,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,MAAM,CAAC;AACrB,cAAc,uBAAuB,CAAC;AACtC,cAAc,qBAAqB,CAAC;AACpC,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,OAAO,CAAC;AACtB,cAAc,QAAQ,CAAC;AACvB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,OAAO,CAAC;AACtB,cAAc,SAAS,CAAC;AACxB,cAAc,OAAO,CAAC;AACtB,cAAc,WAAW,CAAC;AAC1B,cAAc,OAAO,CAAC;AACtB,cAAc,aAAa,CAAC;AAC5B,cAAc,QAAQ,CAAC;AACvB,cAAc,OAAO,CAAC;AACtB,cAAc,QAAQ,CAAC;AACvB,cAAc,OAAO,CAAC;AACtB,cAAc,WAAW,CAAC;AAC1B,cAAc,UAAU,CAAC;AACzB,cAAc,OAAO,CAAC;AACtB,cAAc,UAAU,CAAC;AACzB,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC;AACxB,cAAc,mBAAmB,CAAC;AAClC,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,OAAO,CAAC;AACtB,cAAc,eAAe,CAAC;AAC9B,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC;AACnC,cAAc,QAAQ,CAAC;AACvB,cAAc,OAAO,CAAC;AACtB,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC;AACxB,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC;AAC9B,cAAc,OAAO,CAAC;AACtB,cAAc,QAAQ,CAAC;AACvB,cAAc,OAAO,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/icons/index.ts"],"names":[],"mappings":"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"}
@@ -1,2 +1,2 @@
1
- export declare const mapDateTimeToStorable: (datetime?: string | Date) => string;
1
+ export declare const mapDateTimeToStorable: (datetime?: string | Date | null) => string;
2
2
  //# sourceMappingURL=mapDateTimeToStorable.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"mapDateTimeToStorable.d.ts","sourceRoot":"","sources":["../../../../src/store/mappers/mapDateTimeToStorable.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,qBAAqB,cAAe,MAAM,GAAG,IAAI,WAI7D,CAAC"}
1
+ {"version":3,"file":"mapDateTimeToStorable.d.ts","sourceRoot":"","sources":["../../../../src/store/mappers/mapDateTimeToStorable.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,qBAAqB,cAAe,MAAM,GAAG,IAAI,GAAG,IAAI,WAIpE,CAAC"}
@@ -163,12 +163,14 @@ export declare class Streami18n {
163
163
  "Links are disabled": string;
164
164
  "Loading channels...": string;
165
165
  "Loading messages...": string;
166
+ "Loading threads...": string;
166
167
  "Loading...": string;
167
168
  "Message Reactions": string;
168
169
  "Message deleted": string;
169
170
  "Message flagged": string;
170
171
  "Mute User": string;
171
172
  "No chats here yet\u2026": string;
173
+ "No threads here yet": string;
172
174
  "Not supported": string;
173
175
  "Nothing yet...": string;
174
176
  Ok: string;
@@ -192,6 +194,8 @@ export declare class Streami18n {
192
194
  "Sending links is not allowed in this conversation": string;
193
195
  "Slow mode ON": string;
194
196
  "The message has been reported to a moderator.": string;
197
+ "The source message was deleted": string;
198
+ "This reply was deleted": string;
195
199
  "Thread Reply": string;
196
200
  "Unban User": string;
197
201
  "Unblock User": string;
@@ -200,8 +204,10 @@ export declare class Streami18n {
200
204
  "Unpin from Conversation": string;
201
205
  "Unread Messages": string;
202
206
  Video: string;
207
+ "Voice message": string;
203
208
  You: string;
204
209
  "You can't send messages in this channel": string;
210
+ "replied to": string;
205
211
  "timestamp/ChannelPreviewStatus": string;
206
212
  "timestamp/ImageGalleryHeader": string;
207
213
  "timestamp/InlineDateSeparator": string;
@@ -209,6 +215,7 @@ export declare class Streami18n {
209
215
  "timestamp/MessageSystem": string;
210
216
  "timestamp/MessageTimestamp": string;
211
217
  "timestamp/StickyHeader": string;
218
+ "timestamp/ThreadListItem": string;
212
219
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": string;
213
220
  "{{ index }} of {{ photoLength }}": string;
214
221
  "{{ replyCount }} Replies": string;
@@ -1 +1 @@
1
- {"version":3,"file":"Streami18n.d.ts","sourceRoot":"","sources":["../../../../src/utils/i18n/Streami18n.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"Streami18n.d.ts","sourceRoot":"","sources":["../../../../src/utils/i18n/Streami18n.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "stream-chat-react-native-core",
3
3
  "description": "The official React Native and Expo components for Stream Chat, a service for building chat applications",
4
- "version": "5.38.1",
4
+ "version": "5.39.0-beta.2",
5
5
  "author": {
6
6
  "company": "Stream.io Inc",
7
7
  "name": "Stream.io Inc"
@@ -78,7 +78,7 @@
78
78
  "path": "0.12.7",
79
79
  "react-native-markdown-package": "1.8.2",
80
80
  "react-native-url-polyfill": "^1.3.0",
81
- "stream-chat": "8.39.0"
81
+ "stream-chat": "8.40.8"
82
82
  },
83
83
  "peerDependencies": {
84
84
  "react-native-quick-sqlite": ">=5.1.0",