@cometchat/chat-uikit-react 5.0.0-beta1 → 5.0.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 (357) hide show
  1. package/README.md +6 -5
  2. package/dist/assets/Send.svg +3 -0
  3. package/dist/assets/loading.svg +5 -16
  4. package/dist/index.d.ts +1159 -953
  5. package/dist/index.js +1 -1
  6. package/dist/index.js.map +1 -1
  7. package/dist/styles/CometChatCallButtons.css +1 -1
  8. package/dist/styles/CometChatCallLogs.css +3 -3
  9. package/dist/styles/{AIConversationStarter.css → CometChatConversationStarter.css} +2 -2
  10. package/dist/styles/{components/AIConversationSummary.css → CometChatConversationSummary.css} +12 -12
  11. package/dist/styles/CometChatConversations.css +10 -10
  12. package/dist/styles/CometChatEditPreview.css +1 -0
  13. package/dist/styles/CometChatFileBubble.css +2 -0
  14. package/dist/styles/CometChatGroupMembers.css +5 -5
  15. package/dist/styles/CometChatIncomingCall.css +1 -1
  16. package/dist/styles/CometChatList.css +15 -22
  17. package/dist/styles/CometChatListItem.css +2 -2
  18. package/dist/styles/CometChatMessageComposer.css +48 -40
  19. package/dist/styles/CometChatMessageHeader.css +32 -4
  20. package/dist/styles/CometChatMessageInformation.css +3 -2
  21. package/dist/styles/CometChatMessageList.css +6 -5
  22. package/dist/styles/CometChatOutgoingCall.css +5 -0
  23. package/dist/styles/{AISmartReplies.css → CometChatSmartReplies.css} +72 -79
  24. package/dist/styles/PollsBubble.css +7 -1
  25. package/dist/styles/components/CometChatCallButtons.css +1 -1
  26. package/dist/styles/components/CometChatCallLogs.css +3 -3
  27. package/dist/styles/components/{AIConversationStarter.css → CometChatConversationStarter.css} +2 -2
  28. package/dist/styles/{AIConversationSummary.css → components/CometChatConversationSummary.css} +12 -12
  29. package/dist/styles/components/CometChatConversations.css +10 -10
  30. package/dist/styles/components/CometChatEditPreview.css +1 -0
  31. package/dist/styles/components/CometChatFileBubble.css +2 -0
  32. package/dist/styles/components/CometChatGroupMembers.css +5 -5
  33. package/dist/styles/components/CometChatIncomingCall.css +1 -1
  34. package/dist/styles/components/CometChatList.css +15 -22
  35. package/dist/styles/components/CometChatListItem.css +2 -2
  36. package/dist/styles/components/CometChatMessageComposer.css +48 -40
  37. package/dist/styles/components/CometChatMessageHeader.css +32 -4
  38. package/dist/styles/components/CometChatMessageInformation.css +3 -2
  39. package/dist/styles/components/CometChatMessageList.css +6 -5
  40. package/dist/styles/components/CometChatOutgoingCall.css +5 -0
  41. package/dist/styles/components/{AISmartReplies.css → CometChatSmartReplies.css} +72 -79
  42. package/dist/styles/components/PollsBubble.css +7 -1
  43. package/dist/styles/components/index.css +4 -3
  44. package/dist/styles/index.css +4 -3
  45. package/dist/types/CometChatCustomHooks.d.ts +1 -1
  46. package/dist/types/CometChatUIKit/CometChatUIKit.d.ts +0 -6
  47. package/dist/types/CometChatUIKit/UIKitSettings.d.ts +0 -22
  48. package/dist/types/Enums/Enums.d.ts +9 -0
  49. package/dist/types/components/BaseComponents/CometChatConversationStarter/CometChatConversationStarter.d.ts +6 -0
  50. package/dist/types/components/BaseComponents/CometChatConversationSummary/CometChatConversationSummary.d.ts +6 -0
  51. package/dist/types/components/BaseComponents/CometChatList/CometChatList.d.ts +12 -12
  52. package/dist/types/components/BaseComponents/CometChatListItem/CometChatListItem.d.ts +3 -1
  53. package/dist/types/components/BaseComponents/CometChatSmartReplies/CometChatSmartReplies.d.ts +7 -0
  54. package/dist/types/components/Calling/CallButtonConfiguration.d.ts +1 -1
  55. package/dist/types/components/Calling/CallingExtensionDecorator.d.ts +2 -2
  56. package/dist/types/components/Calling/CometChatCallButtons/CometChatCallButtons.d.ts +30 -12
  57. package/dist/types/components/Calling/CometChatCallButtons/useCallButtons.d.ts +1 -1
  58. package/dist/types/components/Calling/CometChatCallLogs/CometChatCallLogs.d.ts +50 -38
  59. package/dist/types/components/Calling/CometChatCallLogs/useCometChatCallLogs.d.ts +1 -1
  60. package/dist/types/components/Calling/CometChatIncomingCall/CometChatIncomingCall.d.ts +48 -26
  61. package/dist/types/components/Calling/CometChatIncomingCall/useCometChatIncomingCall.d.ts +1 -1
  62. package/dist/types/components/Calling/CometChatOutgoingCall/CometChatOutgoingCall.d.ts +31 -15
  63. package/dist/types/components/Calling/CometChatOutgoingCall/useCometChatOutgoingCall.d.ts +1 -1
  64. package/dist/types/components/Calling/OutgoingCallConfiguration.d.ts +7 -3
  65. package/dist/types/components/CometChatConversations/CometChatConversations.d.ts +88 -87
  66. package/dist/types/components/CometChatConversations/controller.d.ts +10 -8
  67. package/dist/types/components/CometChatConversations/useCometChatConversations.d.ts +2 -5
  68. package/dist/types/components/CometChatGroupMembers/CometChatGroupMembers.d.ts +94 -76
  69. package/dist/types/components/CometChatGroupMembers/useCometChatGroupMembers.d.ts +2 -2
  70. package/dist/types/components/CometChatGroups/CometChatGroups.d.ts +74 -62
  71. package/dist/types/components/CometChatGroups/useCometChatGroups.d.ts +1 -0
  72. package/dist/types/components/CometChatMessageComposer/CometChatMessageComposer.d.ts +107 -49
  73. package/dist/types/components/CometChatMessageComposer/useCometChatMessageComposer.d.ts +1 -1
  74. package/dist/types/components/CometChatMessageHeader/CometChatMessageHeader.d.ts +77 -16
  75. package/dist/types/components/CometChatMessageHeader/useCometChatMessageHeader.d.ts +1 -1
  76. package/dist/types/components/CometChatMessageInformation/CometChatMessageInformation.d.ts +5 -0
  77. package/dist/types/components/CometChatMessageList/CometChatMessageList.d.ts +133 -55
  78. package/dist/types/components/CometChatMessageList/CometChatMessageListController.d.ts +3 -1
  79. package/dist/types/components/CometChatMessageList/useCometChatMessageList.d.ts +1 -1
  80. package/dist/types/components/CometChatThreadedMessagePreview/CometChatThreadedMessagePreview.d.ts +34 -2
  81. package/dist/types/components/CometChatUsers/CometChatUsers.d.ts +88 -89
  82. package/dist/types/components/CometChatUsers/useCometChatUsers.d.ts +2 -1
  83. package/dist/types/components/Extensions/CollaborativeDocument/CollaborativeDocumentExtensionDecorator.d.ts +4 -3
  84. package/dist/types/components/Extensions/CollaborativeWhiteboard/CollaborativeWhiteboardExtensionDecorator.d.ts +4 -3
  85. package/dist/types/components/Extensions/MessageTranslation/MessageTranslationExtensionDecorator.d.ts +3 -1
  86. package/dist/types/components/Extensions/Polls/PollsBubble.d.ts +5 -0
  87. package/dist/types/components/Extensions/Polls/PollsExtensionDecorator.d.ts +4 -3
  88. package/dist/types/components/Extensions/Stickers/StickersExtensionDecorator.d.ts +2 -3
  89. package/dist/types/components/Reactions/CometChatReactionInfo/CometChatReactionInfo.d.ts +3 -2
  90. package/dist/types/components/Reactions/CometChatReactionList/CometChatReactionList.d.ts +3 -2
  91. package/dist/types/components/Reactions/CometChatReactions/CometChatReactions.d.ts +3 -2
  92. package/dist/types/events/CometChatUIEvents.d.ts +2 -0
  93. package/dist/types/index.d.ts +8 -7
  94. package/dist/types/resources/CometChatLocalize/cometchat-localize.d.ts +129 -115
  95. package/dist/types/utils/DataSource.d.ts +17 -18
  96. package/dist/types/utils/DataSourceDecorator.d.ts +17 -18
  97. package/dist/types/utils/GroupMemberUtils.d.ts +1 -1
  98. package/dist/types/utils/MessageUtils.d.ts +1 -1
  99. package/dist/types/utils/MessagesDataSource.d.ts +29 -16
  100. package/dist/types/utils/util.d.ts +5 -0
  101. package/package.json +1 -1
  102. package/screenshots/sample_app_overview.png +0 -0
  103. package/dist/Collaborative_Whiteboard_Dark.png +0 -0
  104. package/dist/Collaborative_Whiteboard_Light.png +0 -0
  105. package/dist/assets/ai-empty.svg +0 -22
  106. package/dist/assets/ai-error.svg +0 -3
  107. package/dist/assets/heart-reaction.png +0 -0
  108. package/dist/assets/send.svg +0 -12
  109. package/dist/styles/AICard.css +0 -30
  110. package/dist/styles/CometChatBadge.css +0 -15
  111. package/dist/styles/CometChatCard.css +0 -41
  112. package/dist/styles/components/AICard.css +0 -30
  113. package/dist/styles/components/CometChatBadge.css +0 -15
  114. package/dist/styles/components/CometChatCard.css +0 -41
  115. package/dist/types/CometChatUIKit/CometChatUIKitSharedSettings.d.ts +0 -8
  116. package/dist/types/components/AI/AIBaseConfiguration.d.ts +0 -51
  117. package/dist/types/components/AI/AIConversationStarter/AIConversationStarterConfiguration.d.ts +0 -20
  118. package/dist/types/components/AI/AIConversationStarter/AIConversationStarterDecorator.d.ts +0 -18
  119. package/dist/types/components/AI/AIConversationStarter/AIConversationStarterExtension.d.ts +0 -8
  120. package/dist/types/components/AI/AIConversationStarter/AIConversationStarterView.d.ts +0 -8
  121. package/dist/types/components/AI/AIConversationSummary/AIConversationSummaryConfiguration.d.ts +0 -31
  122. package/dist/types/components/AI/AIConversationSummary/AIConversationSummaryDecorator.d.ts +0 -22
  123. package/dist/types/components/AI/AIConversationSummary/AIConversationSummaryExtension.d.ts +0 -8
  124. package/dist/types/components/AI/AIConversationSummary/AIConversationSummaryView.d.ts +0 -9
  125. package/dist/types/components/AI/AIExtensionDataSource.d.ts +0 -6
  126. package/dist/types/components/AI/AISmartReplies/AISmartRepliesConfiguration.d.ts +0 -28
  127. package/dist/types/components/AI/AISmartReplies/AISmartRepliesDecorator.d.ts +0 -21
  128. package/dist/types/components/AI/AISmartReplies/AISmartRepliesExtension.d.ts +0 -8
  129. package/dist/types/components/AI/AISmartReplies/AISmartRepliesView.d.ts +0 -11
  130. package/dist/types/components/BaseComponents/CometChatBadge/CometChatBadge.d.ts +0 -10
  131. package/dist/types/components/BaseComponents/CometChatCard/CometChatCard.d.ts +0 -15
  132. package/dist/types/components/BaseComponents/CometChatLiveReaction/CometChatLiveReaction.d.ts +0 -5
  133. package/dist/types/components/BaseComponents/CometChatLiveReaction/useLiveReactionHook.d.ts +0 -19
  134. package/dist/types/components/BaseComponents/CometChatQuickView/CometChatQuickView.d.ts +0 -9
  135. package/dist/types/components/BaseComponents/CometChatSingleSelect/CometChatSingleSelect.d.ts +0 -8
  136. package/dist/types/components/CometChatUserMemberWrapper/index.d.ts +0 -23
  137. package/dist/types/modals/InteractiveActions/APIAction.d.ts +0 -108
  138. package/dist/types/modals/InteractiveActions/CustomAction.d.ts +0 -12
  139. package/dist/types/modals/InteractiveActions/URLNavigationAction.d.ts +0 -30
  140. package/dist/types/modals/InteractiveActions/index.d.ts +0 -3
  141. package/dist/types/modals/InteractiveElements/BaseInputElement.d.ts +0 -50
  142. package/dist/types/modals/InteractiveElements/BaseInteractiveElement.d.ts +0 -25
  143. package/dist/types/modals/InteractiveElements/ButtonElement.d.ts +0 -48
  144. package/dist/types/modals/InteractiveElements/CheckboxElement.d.ts +0 -46
  145. package/dist/types/modals/InteractiveElements/DateTimePickerElement.d.ts +0 -124
  146. package/dist/types/modals/InteractiveElements/DropdownElement.d.ts +0 -55
  147. package/dist/types/modals/InteractiveElements/LabelElement.d.ts +0 -29
  148. package/dist/types/modals/InteractiveElements/OptionElement.d.ts +0 -35
  149. package/dist/types/modals/InteractiveElements/RadioButtonElement.d.ts +0 -54
  150. package/dist/types/modals/InteractiveElements/SingleSelectElement.d.ts +0 -50
  151. package/dist/types/modals/InteractiveElements/TextInputElement.d.ts +0 -69
  152. package/dist/types/modals/InteractiveElements/index.d.ts +0 -11
  153. package/dist/types/modals/InteractiveEntities/ActionEntity.d.ts +0 -32
  154. package/dist/types/modals/InteractiveEntities/ElementEntity.d.ts +0 -35
  155. package/dist/types/modals/InteractiveEntities/index.d.ts +0 -2
  156. package/dist/types/modals/InteractiveMessage/CardMessage.d.ts +0 -69
  157. package/dist/types/modals/InteractiveMessage/CustomInteractiveMessage.d.ts +0 -20
  158. package/dist/types/modals/InteractiveMessage/FormMessage.d.ts +0 -75
  159. package/dist/types/modals/InteractiveMessage/SchedulerMessage.d.ts +0 -230
  160. package/dist/types/modals/InteractiveMessage/index.d.ts +0 -5
  161. package/dist/types/src/CometChatCustomHooks.d.ts +0 -27
  162. package/dist/types/src/CometChatUIKit/CometChatCalls.d.ts +0 -1
  163. package/dist/types/src/CometChatUIKit/CometChatUIKit.d.ts +0 -147
  164. package/dist/types/src/CometChatUIKit/CometChatUIKitLoginListener.d.ts +0 -32
  165. package/dist/types/src/CometChatUIKit/CometChatUIKitUtility.d.ts +0 -81
  166. package/dist/types/src/CometChatUIKit/UIKitSettings.d.ts +0 -304
  167. package/dist/types/src/Enums/Enums.d.ts +0 -258
  168. package/dist/types/src/components/AI/AIBaseConfiguration.d.ts +0 -51
  169. package/dist/types/src/components/AI/AIConversationStarter/AIConversationStarterConfiguration.d.ts +0 -20
  170. package/dist/types/src/components/AI/AIConversationStarter/AIConversationStarterDecorator.d.ts +0 -18
  171. package/dist/types/src/components/AI/AIConversationStarter/AIConversationStarterExtension.d.ts +0 -8
  172. package/dist/types/src/components/AI/AIConversationStarter/AIConversationStarterView.d.ts +0 -8
  173. package/dist/types/src/components/AI/AIConversationSummary/AIConversationSummaryConfiguration.d.ts +0 -31
  174. package/dist/types/src/components/AI/AIConversationSummary/AIConversationSummaryDecorator.d.ts +0 -22
  175. package/dist/types/src/components/AI/AIConversationSummary/AIConversationSummaryExtension.d.ts +0 -8
  176. package/dist/types/src/components/AI/AIConversationSummary/AIConversationSummaryView.d.ts +0 -9
  177. package/dist/types/src/components/AI/AIExtensionDataSource.d.ts +0 -6
  178. package/dist/types/src/components/AI/AISmartReplies/AISmartRepliesConfiguration.d.ts +0 -28
  179. package/dist/types/src/components/AI/AISmartReplies/AISmartRepliesDecorator.d.ts +0 -21
  180. package/dist/types/src/components/AI/AISmartReplies/AISmartRepliesExtension.d.ts +0 -8
  181. package/dist/types/src/components/AI/AISmartReplies/AISmartRepliesView.d.ts +0 -11
  182. package/dist/types/src/components/BaseComponents/CometChatActionBubble/CometChatActionBubble.d.ts +0 -8
  183. package/dist/types/src/components/BaseComponents/CometChatActionSheet/CometChatActionSheet.d.ts +0 -7
  184. package/dist/types/src/components/BaseComponents/CometChatAudioBubble/CometChatAudioBubble.d.ts +0 -6
  185. package/dist/types/src/components/BaseComponents/CometChatAudioBubble/src/base-plugin.d.ts +0 -21
  186. package/dist/types/src/components/BaseComponents/CometChatAudioBubble/src/decoder.d.ts +0 -9
  187. package/dist/types/src/components/BaseComponents/CometChatAudioBubble/src/dom.d.ts +0 -13
  188. package/dist/types/src/components/BaseComponents/CometChatAudioBubble/src/draggable.d.ts +0 -1
  189. package/dist/types/src/components/BaseComponents/CometChatAudioBubble/src/event-emitter.d.ts +0 -21
  190. package/dist/types/src/components/BaseComponents/CometChatAudioBubble/src/fetcher.d.ts +0 -5
  191. package/dist/types/src/components/BaseComponents/CometChatAudioBubble/src/player.d.ts +0 -50
  192. package/dist/types/src/components/BaseComponents/CometChatAudioBubble/src/plugins/envelope.d.ts +0 -79
  193. package/dist/types/src/components/BaseComponents/CometChatAudioBubble/src/plugins/hover.d.ts +0 -36
  194. package/dist/types/src/components/BaseComponents/CometChatAudioBubble/src/plugins/minimap.d.ts +0 -65
  195. package/dist/types/src/components/BaseComponents/CometChatAudioBubble/src/plugins/record.d.ts +0 -89
  196. package/dist/types/src/components/BaseComponents/CometChatAudioBubble/src/plugins/regions.d.ts +0 -139
  197. package/dist/types/src/components/BaseComponents/CometChatAudioBubble/src/plugins/spectrogram.d.ts +0 -98
  198. package/dist/types/src/components/BaseComponents/CometChatAudioBubble/src/plugins/timeline.d.ts +0 -54
  199. package/dist/types/src/components/BaseComponents/CometChatAudioBubble/src/plugins/zoom.d.ts +0 -55
  200. package/dist/types/src/components/BaseComponents/CometChatAudioBubble/src/renderer.d.ts +0 -63
  201. package/dist/types/src/components/BaseComponents/CometChatAudioBubble/src/timer.d.ts +0 -11
  202. package/dist/types/src/components/BaseComponents/CometChatAudioBubble/src/wavesurfer.d.ts +0 -223
  203. package/dist/types/src/components/BaseComponents/CometChatAudioBubble/src/webaudio.d.ts +0 -63
  204. package/dist/types/src/components/BaseComponents/CometChatAvatar/CometChatAvatar.d.ts +0 -13
  205. package/dist/types/src/components/BaseComponents/CometChatButton/CometChatButton.d.ts +0 -12
  206. package/dist/types/src/components/BaseComponents/CometChatCallBubble/CometChatCallBubble.d.ts +0 -12
  207. package/dist/types/src/components/BaseComponents/CometChatChangeScope/CometChatChangeScope.d.ts +0 -10
  208. package/dist/types/src/components/BaseComponents/CometChatChangeScope/useCometChatChangeScope.d.ts +0 -10
  209. package/dist/types/src/components/BaseComponents/CometChatCheckbox/CometChatCheckbox.d.ts +0 -11
  210. package/dist/types/src/components/BaseComponents/CometChatCheckbox/useCometChatCheckbox.d.ts +0 -11
  211. package/dist/types/src/components/BaseComponents/CometChatConfirmDialog/CometChatConfirmDialog.d.ts +0 -16
  212. package/dist/types/src/components/BaseComponents/CometChatContextMenu/CometChatContextMenu.d.ts +0 -17
  213. package/dist/types/src/components/BaseComponents/CometChatDate/CometChatDate.d.ts +0 -13
  214. package/dist/types/src/components/BaseComponents/CometChatDate/useCometChatDate.d.ts +0 -8
  215. package/dist/types/src/components/BaseComponents/CometChatDeleteBubble/CometChatDeleteBubble.d.ts +0 -14
  216. package/dist/types/src/components/BaseComponents/CometChatDocumentBubble/CometChatDocumentBubble.d.ts +0 -11
  217. package/dist/types/src/components/BaseComponents/CometChatDropDown/CometChatDropDown.d.ts +0 -14
  218. package/dist/types/src/components/BaseComponents/CometChatDropDown/useCometChatDropDown.d.ts +0 -12
  219. package/dist/types/src/components/BaseComponents/CometChatEditPreview/CometChatEditPreview.d.ts +0 -21
  220. package/dist/types/src/components/BaseComponents/CometChatEmojiKeyboard/CometChatEmoji.d.ts +0 -22
  221. package/dist/types/src/components/BaseComponents/CometChatEmojiKeyboard/CometChatEmojiKeyboard.d.ts +0 -7
  222. package/dist/types/src/components/BaseComponents/CometChatEmojiKeyboard/emojis.d.ts +0 -6579
  223. package/dist/types/src/components/BaseComponents/CometChatEmojiKeyboard/useCometChatEmojiKeyboard.d.ts +0 -17
  224. package/dist/types/src/components/BaseComponents/CometChatFileBubble/CometChatFileBubble.d.ts +0 -9
  225. package/dist/types/src/components/BaseComponents/CometChatFullScreenViewer/CometChatFullScreenViewer.d.ts +0 -23
  226. package/dist/types/src/components/BaseComponents/CometChatImageBubble/CometChatImageBubble.d.ts +0 -10
  227. package/dist/types/src/components/BaseComponents/CometChatImageBubble/useCometChatImageBubble.d.ts +0 -7
  228. package/dist/types/src/components/BaseComponents/CometChatList/CometChatList.d.ts +0 -156
  229. package/dist/types/src/components/BaseComponents/CometChatList/useCometChatList.d.ts +0 -17
  230. package/dist/types/src/components/BaseComponents/CometChatListItem/CometChatListItem.d.ts +0 -15
  231. package/dist/types/src/components/BaseComponents/CometChatListItem/useCometChatListItem.d.ts +0 -12
  232. package/dist/types/src/components/BaseComponents/CometChatLiveReaction/CometChatLiveReaction.d.ts +0 -5
  233. package/dist/types/src/components/BaseComponents/CometChatLiveReaction/useLiveReactionHook.d.ts +0 -19
  234. package/dist/types/src/components/BaseComponents/CometChatMediaRecorder/CometChatMediaRecorder.d.ts +0 -8
  235. package/dist/types/src/components/BaseComponents/CometChatMessageBubble/CometChatMessageBubble.d.ts +0 -28
  236. package/dist/types/src/components/BaseComponents/CometChatPopover/CometChatPopover.d.ts +0 -24
  237. package/dist/types/src/components/BaseComponents/CometChatRadioButton/CometChatRadioButton.d.ts +0 -14
  238. package/dist/types/src/components/BaseComponents/CometChatRadioButton/useCometChatRadioButton.d.ts +0 -13
  239. package/dist/types/src/components/BaseComponents/CometChatSearchBar/CometChatSearchBar.d.ts +0 -9
  240. package/dist/types/src/components/BaseComponents/CometChatSearchBar/useCometChatSearchBar.d.ts +0 -10
  241. package/dist/types/src/components/BaseComponents/CometChatTextBubble/CometChatTextBubble.d.ts +0 -8
  242. package/dist/types/src/components/BaseComponents/CometChatTextBubble/useCometChatTextBubble.d.ts +0 -6
  243. package/dist/types/src/components/BaseComponents/CometChatToast/CometChatToast.d.ts +0 -27
  244. package/dist/types/src/components/BaseComponents/CometChatVideoBubble/CometChatVideoBubble.d.ts +0 -9
  245. package/dist/types/src/components/BaseComponents/CometChatVideoBubble/useCometChatVideoBubble.d.ts +0 -6
  246. package/dist/types/src/components/Calling/CallButtonConfiguration.d.ts +0 -10
  247. package/dist/types/src/components/Calling/CallingConfiguration.d.ts +0 -7
  248. package/dist/types/src/components/Calling/CallingExtension.d.ts +0 -9
  249. package/dist/types/src/components/Calling/CallingExtensionDecorator.d.ts +0 -29
  250. package/dist/types/src/components/Calling/CometChatCallButtons/CometChatCallButtons.d.ts +0 -36
  251. package/dist/types/src/components/Calling/CometChatCallButtons/useCallButtons.d.ts +0 -6
  252. package/dist/types/src/components/Calling/CometChatCallLogs/CometChatCallLogs.d.ts +0 -71
  253. package/dist/types/src/components/Calling/CometChatCallLogs/useCometChatCallLogs.d.ts +0 -2
  254. package/dist/types/src/components/Calling/CometChatIncomingCall/CometChatIncomingCall.d.ts +0 -59
  255. package/dist/types/src/components/Calling/CometChatIncomingCall/useCometChatIncomingCall.d.ts +0 -2
  256. package/dist/types/src/components/Calling/CometChatOngoingCall/CometChatOngoingCall.d.ts +0 -10
  257. package/dist/types/src/components/Calling/CometChatOngoingCall/useCometChatOngoingCall.d.ts +0 -2
  258. package/dist/types/src/components/Calling/CometChatOutgoingCall/CometChatOutgoingCall.d.ts +0 -36
  259. package/dist/types/src/components/Calling/CometChatOutgoingCall/useCometChatOutgoingCall.d.ts +0 -7
  260. package/dist/types/src/components/Calling/OutgoingCallConfiguration.d.ts +0 -8
  261. package/dist/types/src/components/Calling/Utils/utils.d.ts +0 -7
  262. package/dist/types/src/components/CometChatConversations/CometChatConversations.d.ts +0 -219
  263. package/dist/types/src/components/CometChatConversations/controller.d.ts +0 -74
  264. package/dist/types/src/components/CometChatConversations/useCometChatConversations.d.ts +0 -25
  265. package/dist/types/src/components/CometChatGroupMembers/CometChatGroupMembers.d.ts +0 -178
  266. package/dist/types/src/components/CometChatGroupMembers/controller.d.ts +0 -38
  267. package/dist/types/src/components/CometChatGroupMembers/useCometChatGroupMembers.d.ts +0 -22
  268. package/dist/types/src/components/CometChatGroups/CometChatGroups.d.ts +0 -150
  269. package/dist/types/src/components/CometChatGroups/controller.d.ts +0 -44
  270. package/dist/types/src/components/CometChatGroups/useCometChatGroups.d.ts +0 -15
  271. package/dist/types/src/components/CometChatMessageComposer/CometChatMessageComposer.d.ts +0 -166
  272. package/dist/types/src/components/CometChatMessageComposer/useCometChatMessageComposer.d.ts +0 -42
  273. package/dist/types/src/components/CometChatMessageHeader/CometChatMessageHeader.d.ts +0 -29
  274. package/dist/types/src/components/CometChatMessageHeader/useCometChatMessageHeader.d.ts +0 -3
  275. package/dist/types/src/components/CometChatMessageInformation/CometChatMessageInformation.d.ts +0 -6
  276. package/dist/types/src/components/CometChatMessageList/CometChatMessageList.d.ts +0 -132
  277. package/dist/types/src/components/CometChatMessageList/CometChatMessageListController.d.ts +0 -48
  278. package/dist/types/src/components/CometChatMessageList/useCometChatMessageList.d.ts +0 -6
  279. package/dist/types/src/components/CometChatThreadedMessagePreview/CometChatThreadedMessagePreview.d.ts +0 -11
  280. package/dist/types/src/components/CometChatUserMemberWrapper/CometChatUserMemberWrapper.d.ts +0 -21
  281. package/dist/types/src/components/CometChatUsers/CometChatUsers.d.ts +0 -193
  282. package/dist/types/src/components/CometChatUsers/controller.d.ts +0 -28
  283. package/dist/types/src/components/CometChatUsers/useCometChatUsers.d.ts +0 -19
  284. package/dist/types/src/components/Extensions/CollaborativeDocument/CollaborativeDocumentConfiguration.d.ts +0 -35
  285. package/dist/types/src/components/Extensions/CollaborativeDocument/CollaborativeDocumentConstants.d.ts +0 -15
  286. package/dist/types/src/components/Extensions/CollaborativeDocument/CollaborativeDocumentExtension.d.ts +0 -37
  287. package/dist/types/src/components/Extensions/CollaborativeDocument/CollaborativeDocumentExtensionDecorator.d.ts +0 -116
  288. package/dist/types/src/components/Extensions/CollaborativeWhiteboard/CollaborativeWhiteboardConfiguration.d.ts +0 -35
  289. package/dist/types/src/components/Extensions/CollaborativeWhiteboard/CollaborativeWhiteboardConstants.d.ts +0 -13
  290. package/dist/types/src/components/Extensions/CollaborativeWhiteboard/CollaborativeWhiteboardExtension.d.ts +0 -29
  291. package/dist/types/src/components/Extensions/CollaborativeWhiteboard/CollaborativeWhiteboardExtensionDecorator.d.ts +0 -94
  292. package/dist/types/src/components/Extensions/ExtensionsDataSource.d.ts +0 -29
  293. package/dist/types/src/components/Extensions/ExtensionsId.d.ts +0 -22
  294. package/dist/types/src/components/Extensions/LinkPreview/LinkPreview.d.ts +0 -37
  295. package/dist/types/src/components/Extensions/LinkPreview/LinkPreviewConstants.d.ts +0 -11
  296. package/dist/types/src/components/Extensions/LinkPreview/LinkPreviewExtension.d.ts +0 -24
  297. package/dist/types/src/components/Extensions/LinkPreview/LinkPreviewExtensionDecorator.d.ts +0 -60
  298. package/dist/types/src/components/Extensions/MessageTranslation/MessageTranslationBubble.d.ts +0 -35
  299. package/dist/types/src/components/Extensions/MessageTranslation/MessageTranslationConstants.d.ts +0 -12
  300. package/dist/types/src/components/Extensions/MessageTranslation/MessageTranslationExtension.d.ts +0 -30
  301. package/dist/types/src/components/Extensions/MessageTranslation/MessageTranslationExtensionDecorator.d.ts +0 -53
  302. package/dist/types/src/components/Extensions/Polls/CreatePolls.d.ts +0 -66
  303. package/dist/types/src/components/Extensions/Polls/PollsBubble.d.ts +0 -35
  304. package/dist/types/src/components/Extensions/Polls/PollsConfiguration.d.ts +0 -19
  305. package/dist/types/src/components/Extensions/Polls/PollsConstants.d.ts +0 -8
  306. package/dist/types/src/components/Extensions/Polls/PollsExtension.d.ts +0 -8
  307. package/dist/types/src/components/Extensions/Polls/PollsExtensionDecorator.d.ts +0 -112
  308. package/dist/types/src/components/Extensions/Stickers/StickersConstants.d.ts +0 -16
  309. package/dist/types/src/components/Extensions/Stickers/StickersExtension.d.ts +0 -31
  310. package/dist/types/src/components/Extensions/Stickers/StickersExtensionDecorator.d.ts +0 -112
  311. package/dist/types/src/components/Extensions/Stickers/StickersKeyboard.d.ts +0 -29
  312. package/dist/types/src/components/Extensions/ThumbnailGeneration/ThumbnailGenerationConstants.d.ts +0 -13
  313. package/dist/types/src/components/Extensions/ThumbnailGeneration/ThumbnailGenerationExtension.d.ts +0 -21
  314. package/dist/types/src/components/Extensions/ThumbnailGeneration/ThumbnailGenerationExtensionDecorator.d.ts +0 -40
  315. package/dist/types/src/components/Reactions/CometChatReactionInfo/CometChatReactionInfo.d.ts +0 -9
  316. package/dist/types/src/components/Reactions/CometChatReactionList/CometChatReactionList.d.ts +0 -8
  317. package/dist/types/src/components/Reactions/CometChatReactions/CometChatReactions.d.ts +0 -12
  318. package/dist/types/src/constants/CometChatUIKitConstants.d.ts +0 -139
  319. package/dist/types/src/constants/CometChatUtilityConstants.d.ts +0 -9
  320. package/dist/types/src/constants/index.d.ts +0 -1
  321. package/dist/types/src/events/CometChatCallEvents.d.ts +0 -10
  322. package/dist/types/src/events/CometChatConversationEvents.d.ts +0 -13
  323. package/dist/types/src/events/CometChatGroupEvents.d.ts +0 -63
  324. package/dist/types/src/events/CometChatMessageEvents.d.ts +0 -43
  325. package/dist/types/src/events/CometChatUIEvents.d.ts +0 -59
  326. package/dist/types/src/events/CometChatUserEvents.d.ts +0 -16
  327. package/dist/types/src/formatters/CometChatFormatters/CometChatMentionsFormatter/CometChatMentionsFormatter.d.ts +0 -210
  328. package/dist/types/src/formatters/CometChatFormatters/CometChatTextFormatter.d.ts +0 -268
  329. package/dist/types/src/formatters/CometChatFormatters/CometChatUrlsFormatter/CometChatUrlsFormatter.d.ts +0 -12
  330. package/dist/types/src/formatters/index.d.ts +0 -3
  331. package/dist/types/src/index.d.ts +0 -108
  332. package/dist/types/src/modals/CometChatActions.d.ts +0 -36
  333. package/dist/types/src/modals/CometChatActionsIcon.d.ts +0 -38
  334. package/dist/types/src/modals/CometChatActionsView.d.ts +0 -39
  335. package/dist/types/src/modals/CometChatMessageComposerAction.d.ts +0 -33
  336. package/dist/types/src/modals/CometChatMessageOption.d.ts +0 -37
  337. package/dist/types/src/modals/CometChatMessageTemplate.d.ts +0 -70
  338. package/dist/types/src/modals/CometChatOption.d.ts +0 -20
  339. package/dist/types/src/modals/index.d.ts +0 -7
  340. package/dist/types/src/resources/CometChatLocalize/cometchat-localize.d.ts +0 -5603
  341. package/dist/types/src/resources/CometChatSoundManager/CometChatSoundManager.d.ts +0 -128
  342. package/dist/types/src/resources/index.d.ts +0 -1
  343. package/dist/types/src/utils/CallingDetailsUtils.d.ts +0 -42
  344. package/dist/types/src/utils/ChatConfigurator.d.ts +0 -12
  345. package/dist/types/src/utils/ChatSdkEventInitializer.d.ts +0 -6
  346. package/dist/types/src/utils/ConversationUtils.d.ts +0 -69
  347. package/dist/types/src/utils/DataSource.d.ts +0 -55
  348. package/dist/types/src/utils/DataSourceDecorator.d.ts +0 -57
  349. package/dist/types/src/utils/GroupMemberUtils.d.ts +0 -32
  350. package/dist/types/src/utils/MessageReceiptUtils.d.ts +0 -44
  351. package/dist/types/src/utils/MessageUtils.d.ts +0 -55
  352. package/dist/types/src/utils/MessagesDataSource.d.ts +0 -110
  353. package/dist/types/src/utils/Storage.d.ts +0 -33
  354. package/dist/types/src/utils/util.d.ts +0 -26
  355. package/dist/types/utils/IcsToJson.d.ts +0 -19
  356. package/dist/types/utils/InteractiveMessageUtils.d.ts +0 -71
  357. /package/dist/assets/{ai.svg → conversation_summary.svg} +0 -0
@@ -31,7 +31,7 @@
31
31
  .cometchat-outgoing-call__backdrop {
32
32
  display: flex;
33
33
  position: fixed;
34
- z-index: 1;
34
+ z-index: 3;
35
35
  left: 0;
36
36
  top: 0;
37
37
  justify-content: center;
@@ -27,7 +27,7 @@
27
27
  background-color: var(--cometchat-white-pressed, #E8E8E8);
28
28
  }
29
29
 
30
- .cometchat-call-logs__list-item-tail {
30
+ .cometchat-call-logs__list-item-trailing-view {
31
31
  height: 24px;
32
32
  width: 24px;
33
33
  display: flex;
@@ -40,12 +40,12 @@
40
40
  background:var(--cometchat-icon-color-primary,#FFF)
41
41
  }
42
42
 
43
- .cometchat-call-logs__list-item-tail-video {
43
+ .cometchat-call-logs__list-item-trailing-view-video {
44
44
  -webkit-mask: url("../../assets/call-log_video.svg") center center no-repeat;
45
45
  mask: url("../../assets/call-log_video.svg") center center no-repeat;
46
46
  }
47
47
 
48
- .cometchat-call-logs__list-item-tail-audio {
48
+ .cometchat-call-logs__list-item-trailing-view-audio {
49
49
  -webkit-mask: url("../../assets/call-log-audio.svg") center center no-repeat;
50
50
  mask: url("../../assets/call-log-audio.svg") center center no-repeat;
51
51
  }
@@ -1,4 +1,4 @@
1
- .cometchat-ai-conversation-starter {
1
+ .cometchat-conversation-starter {
2
2
  width: 100%;
3
3
  display: flex;
4
4
  justify-content: center;
@@ -61,7 +61,7 @@
61
61
  animation: shimmerAnimation 1.5s infinite linear;
62
62
  }
63
63
 
64
- .cometchat-ai-conversation-stater__error-view {
64
+ .cometchat-conversation-starter__error-view {
65
65
  color: var(--cometchat-text-color-secondary, #727272);
66
66
  text-align: center;
67
67
  font: var(--cometchat-font-body-regular);
@@ -1,10 +1,10 @@
1
- .cometchat-ai-conversation-summary__wrapper {
1
+ .cometchat-conversation-summary__wrapper {
2
2
  width: 100%;
3
3
  height: 100%;
4
4
  padding: var(--cometchat-padding-1, 4px) var(--cometchat-padding-2, 8px);
5
5
  }
6
6
 
7
- .cometchat-ai-conversation-summary {
7
+ .cometchat-conversation-summary {
8
8
  display: flex;
9
9
  height: 100%;
10
10
  width: 100%;
@@ -18,14 +18,14 @@
18
18
  gap: var(--cometchat-padding-2, 8px);
19
19
  }
20
20
 
21
- .cometchat-ai-conversation-summary__header {
21
+ .cometchat-conversation-summary__header {
22
22
  display: flex;
23
23
  justify-content: space-between;
24
24
  align-items: center;
25
25
  align-self: stretch;
26
26
  }
27
27
 
28
- .cometchat-ai-conversation-summary__header-title {
28
+ .cometchat-conversation-summary__header-title {
29
29
  overflow: hidden;
30
30
  color: var(--cometchat-text-color-primary, #141414);
31
31
  text-overflow: ellipsis;
@@ -33,7 +33,7 @@
33
33
  font-style: normal;
34
34
  }
35
35
 
36
- .cometchat-ai-conversation-summary__header-close-button {
36
+ .cometchat-conversation-summary__header-close-button {
37
37
  mask: url("../../assets/close.svg");
38
38
  -webkit-mask: url("../../assets/close.svg");
39
39
  background-color: var(--cometchat-icon-color-primary, #141414);
@@ -42,7 +42,7 @@
42
42
  cursor: pointer;
43
43
  }
44
44
 
45
- .cometchat-ai-conversation-summary__body {
45
+ .cometchat-conversation-summary__body {
46
46
  width: 100%;
47
47
  flex: 1 0 0;
48
48
  color: var(--cometchat-text-color-primary, #141414);
@@ -51,7 +51,7 @@
51
51
  text-align: left;
52
52
  }
53
53
 
54
- .cometchat-ai-conversation-summary__shimmer {
54
+ .cometchat-conversation-summary__shimmer {
55
55
  display: flex;
56
56
  width: 100%;
57
57
  flex-direction: column;
@@ -60,7 +60,7 @@
60
60
  gap: var(--cometchat-padding-2, 8px);
61
61
  }
62
62
 
63
- .cometchat-ai-conversation-summary__shimmer-item {
63
+ .cometchat-conversation-summary__shimmer-item {
64
64
  width: 100%;
65
65
  display: flex;
66
66
  height: 14px;
@@ -78,7 +78,7 @@
78
78
  /* Add animation properties */
79
79
  }
80
80
 
81
- .cometchat-ai-conversation-summary__shimmer .cometchat-ai-conversation-summary__shimmer-item:last-child {
81
+ .cometchat-conversation-summary__shimmer .cometchat-conversation-summary__shimmer-item:last-child {
82
82
  width: 70%;
83
83
  }
84
84
 
@@ -92,7 +92,7 @@
92
92
  }
93
93
  }
94
94
 
95
- .cometchat-ai-conversation-summary__shimmer-item {
95
+ .cometchat-conversation-summary__shimmer-item {
96
96
  background: var(--cometchat-shimmer-gradient-color, linear-gradient(90deg, #E0E0E0 0%, #EEE 100%));
97
97
  background-size: 800px 104px;
98
98
  /* Consistent background size for animation */
@@ -101,8 +101,8 @@
101
101
  }
102
102
 
103
103
 
104
- .cometchat-ai-conversation-summary__error-view,
105
- .cometchat-ai-conversation-summary__empty-view {
104
+ .cometchat-conversation-summary__error-view,
105
+ .cometchat-conversation-summary__empty-view {
106
106
  color: var(--cometchat-text-color-secondary, #727272);
107
107
  text-align: center;
108
108
  font: var(--cometchat-font-body-regular);
@@ -26,7 +26,7 @@
26
26
  min-height: 43px;
27
27
  }
28
28
 
29
- .cometchat-conversations .cometchat-list-item__tail-view{
29
+ .cometchat-conversations .cometchat-list-item__trailing-view{
30
30
  width: auto;
31
31
  height: 40px;
32
32
  }
@@ -230,19 +230,19 @@
230
230
  display: none;
231
231
  }
232
232
 
233
- .cometchat-conversations__tail-view {
233
+ .cometchat-conversations__trailing-view {
234
234
  display: flex;
235
235
  flex-direction: column;
236
236
  gap: var(--cometchat-padding-1,4px);
237
237
  }
238
238
 
239
- .cometchat-conversations__tail-view-badge {
239
+ .cometchat-conversations__trailing-view-badge {
240
240
  display: flex;
241
241
  justify-content: flex-end;
242
242
  gap: var(--cometchat-padding-1,4px);
243
243
  }
244
244
 
245
- .cometchat-conversations__tail-view-badge-count {
245
+ .cometchat-conversations__trailing-view-badge-count {
246
246
  display: flex;
247
247
  height: 20px;
248
248
  padding: 0px 8px;
@@ -356,7 +356,7 @@
356
356
  background:var(--cometchat-static-white,#FFF);
357
357
  }
358
358
 
359
- .cometchat-conversations__tail-view-options-delete-backdrop {
359
+ .cometchat-conversations__trailing-view-options-delete-backdrop {
360
360
  background: rgba(0, 0, 0, 0.5);
361
361
  position: absolute;
362
362
  top: 0;
@@ -370,17 +370,17 @@
370
370
  }
371
371
 
372
372
 
373
- .cometchat-conversations__tail-view-options .cometchat-menu-list__menu {
373
+ .cometchat-conversations__trailing-view-options .cometchat-menu-list__menu {
374
374
  background-color: transparent;
375
375
  }
376
376
 
377
- .cometchat-conversations__tail-view-options .cometchat-menu-list__main-menu-item{
377
+ .cometchat-conversations__trailing-view-options .cometchat-menu-list__main-menu-item{
378
378
  background-color: transparent;
379
379
  box-shadow: none;
380
380
  }
381
381
 
382
382
 
383
- .cometchat-conversations__tail-view-options .cometchat-menu-list__main-menu-item-icon-delete {
383
+ .cometchat-conversations__trailing-view-options .cometchat-menu-list__main-menu-item-icon-delete {
384
384
  -webkit-mask: url("../../assets/delete_icon.svg") center center no-repeat;
385
385
  mask: url("../../assets/delete_icon.svg") center center no-repeat;
386
386
  background: var(--cometchat-error-color,#F44649);
@@ -389,14 +389,14 @@
389
389
  -webkit-mask-size: contain;
390
390
  }
391
391
 
392
- .cometchat-conversations__tail-view-options .cometchat-menu-list__sub-menu-icon {
392
+ .cometchat-conversations__trailing-view-options .cometchat-menu-list__sub-menu-icon {
393
393
  width: 20px;
394
394
  height: 20px;
395
395
  background: var(--cometchat-icon-color-secondary, #A1A1A1);
396
396
  }
397
397
 
398
398
 
399
- .cometchat-conversations__tail-view-options .cometchat-menu-list__sub-menu {
399
+ .cometchat-conversations__trailing-view-options .cometchat-menu-list__sub-menu {
400
400
  display: flex;
401
401
  width: 20px;
402
402
  height: 20px;
@@ -53,6 +53,7 @@
53
53
  */
54
54
  .cometchat-edit-preview__subtitle {
55
55
  font-style: normal;
56
+ text-align: left;
56
57
  color: var(--cometchat-text-color-secondary);
57
58
  font: var(--cometchat-font-caption1-regular);
58
59
  }
@@ -21,6 +21,8 @@
21
21
  justify-content: flex-start;
22
22
  gap: var(--cometchat-padding-2, 8px);
23
23
  flex: 1 0 0;
24
+ width: inherit;
25
+ overflow: hidden;
24
26
  }
25
27
  /* Body section of the file bubble with text alignment and overflow settings */
26
28
  .cometchat-file-bubble__body {
@@ -34,7 +34,7 @@
34
34
  border-radius: 8px;
35
35
  }
36
36
 
37
- .cometchat-group-members .cometchat-group-members__tail-view-options {
37
+ .cometchat-group-members .cometchat-group-members__trailing-view-options {
38
38
  display: flex;
39
39
  padding: var(--cometchat-padding-1, 4px) var(--cometchat-padding-3, 12px);
40
40
  justify-content: center;
@@ -50,20 +50,20 @@
50
50
  text-transform: capitalize;
51
51
  }
52
52
 
53
- .cometchat-group-members .cometchat-group-members__tail-view-options-admin {
53
+ .cometchat-group-members .cometchat-group-members__trailing-view-options-admin {
54
54
  border: 1px solid var(--cometchat-border-color-highlight, #6852D6);
55
55
  }
56
56
 
57
- .cometchat-group-members .cometchat-group-members__tail-view-options-owner {
57
+ .cometchat-group-members .cometchat-group-members__trailing-view-options-owner {
58
58
  color: var(--cometchat-static-white, #F9F8FD);
59
59
  background: var(--cometchat-primary-color, #6852D6);
60
60
  }
61
61
 
62
- .cometchat-group-members .cometchat-group-members__tail-view-options-participant {
62
+ .cometchat-group-members .cometchat-group-members__trailing-view-options-participant {
63
63
  display: none;
64
64
  }
65
65
 
66
- .cometchat-group-members .cometchat-list-item__tail-view {
66
+ .cometchat-group-members .cometchat-list-item__trailing-view {
67
67
  width: auto;
68
68
  height: fit-content;
69
69
  }
@@ -32,7 +32,7 @@
32
32
  justify-content: space-around;
33
33
  }
34
34
 
35
- .cometchat-incoming-call .cometchat-list-item__tail-view {
35
+ .cometchat-incoming-call .cometchat-list-item__trailing-view {
36
36
  width: fit-content;
37
37
  height: fit-content;
38
38
  }
@@ -9,28 +9,6 @@
9
9
  overflow: hidden;
10
10
  position: relative;
11
11
  }
12
-
13
- /* Header section of the list, containing title and possibly other elements */
14
- .cometchat-list__header {
15
- flex-shrink: 0;
16
- display: flex;
17
- flex-direction: column;
18
- width: 100%;
19
- padding: 0;
20
- margin: 0;
21
- box-sizing: border-box;
22
- background: var(--cometchat-background-color-01);
23
- border-right: 1px solid var(--cometchat-border-color-light);
24
- border-bottom: 1px solid var(--cometchat-border-color-light);
25
- }
26
-
27
- /* Menu section of the header, containing custom view */
28
- .cometchat-list__header-menu {
29
- position: absolute;
30
- right: 16px;
31
- top: 20px;
32
- }
33
-
34
12
  /* Title section of the header, containing text or other elements */
35
13
  .cometchat-list__header-title {
36
14
  display: flex;
@@ -52,6 +30,21 @@
52
30
  align-self: stretch;
53
31
  }
54
32
 
33
+ /* Header section of the list, containing title and possibly other elements */
34
+ .cometchat-list__header {
35
+ flex-shrink: 0;
36
+ display: flex;
37
+ flex-direction: column;
38
+ width: 100%;
39
+ padding: 0;
40
+ margin: 0;
41
+ box-sizing: border-box;
42
+ background: var(--cometchat-background-color-01);
43
+ border-right: 1px solid var(--cometchat-border-color-light);
44
+ border-bottom: 1px solid var(--cometchat-border-color-light);
45
+ }
46
+
47
+
55
48
  /* Search bar section in the header */
56
49
  .cometchat-list__header-search-bar {
57
50
  display: flex;
@@ -51,7 +51,7 @@
51
51
  }
52
52
 
53
53
  .cometchat-list-item__menu-view,
54
- .cometchat-list-item__tail-view {
54
+ .cometchat-list-item__trailing-view {
55
55
  display: flex;
56
56
  width: 24px;
57
57
  height: 24px;
@@ -59,7 +59,7 @@
59
59
  align-items: center;
60
60
  }
61
61
 
62
- .cometchat-list-item__tail-view-hidden {
62
+ .cometchat-list-item__trailing-view-hidden {
63
63
  display: none;
64
64
  }
65
65
 
@@ -62,41 +62,7 @@
62
62
  width: fit-content;
63
63
  }
64
64
 
65
- /* AI button popover content */
66
- .cometchat-message-composer__auxilary-button-view-ai-button .cometchat-popover__content {
67
- min-height: 110px;
68
- width: fit-content;
69
- min-width: 280px;
70
- max-height: 240px;
71
- max-width: 280px;
72
- }
73
-
74
- .cometchat-message-composer__auxilary-button-view-ai-button .cometchat-popover__content>.cometchat {
75
- border-radius: inherit;
76
- }
77
-
78
- .cometchat-message-composer__auxilary-button-view-ai-button .cometchat-popover__content .cometchat-ai-smart-replies {
79
- height: 200px;
80
- }
81
-
82
- .cometchat-message-composer__auxilary-button-view-ai-button .cometchat-action-sheet__item {
83
- padding: var(--cometchat-padding-3, 12px);
84
- }
85
65
 
86
- .cometchat-message-composer__auxilary-button-view-ai-button .cometchat-action-sheet__item-body {
87
- font: var(--cometchat-font-body-regular);
88
-
89
- }
90
-
91
- .cometchat-message-composer__auxilary-button-view-ai-button .cometchat-action-sheet {
92
- justify-content: center;
93
- border: none;
94
- border-radius: inherit;
95
- background: inherit;
96
- box-shadow: none;
97
- width: 100%;
98
- height: 100%;
99
- }
100
66
 
101
67
  .cometchat-message-composer__input .cometchat-mentions>span {
102
68
  color: var(--cometchat-text-color-highlight, #6852D6);
@@ -141,6 +107,7 @@
141
107
  justify-content: space-between;
142
108
  align-items: flex-start;
143
109
  align-self: stretch;
110
+ flex-direction: column;
144
111
  }
145
112
 
146
113
  .cometchat-message-composer__header-error-state {
@@ -185,7 +152,6 @@
185
152
  flex-direction: column;
186
153
  justify-content: flex-end;
187
154
  z-index: 2;
188
- height: fit-content;
189
155
  min-height: 45px;
190
156
  padding: 0 0 1px 0;
191
157
  width: fit-content;
@@ -209,6 +175,9 @@
209
175
  overflow: hidden;
210
176
  border-radius: inherit;
211
177
  }
178
+ .cometchat-mention-list .cometchat-list .cometchat-list__header-title{
179
+ display: none;
180
+ }
212
181
 
213
182
  /* Message input area */
214
183
  .cometchat-message-composer__input {
@@ -240,7 +209,24 @@
240
209
  width: 100%;
241
210
  align-items: center;
242
211
  }
243
-
212
+ /* sticker button placement */
213
+ .cometchat-message-composer__sticker-button-view {
214
+ display: flex;
215
+ justify-content: flex-start;
216
+ gap: 12px;
217
+ width: fit-content;
218
+ align-items: center;
219
+ }
220
+ /* default buttons placement */
221
+ .cometchat-message-composer__default-buttons{
222
+ display: flex;
223
+ flex-direction: row;
224
+ align-items: center;
225
+ justify-content: flex-start;
226
+ gap: var(--cometchat-padding-4);
227
+ width:fit-content;
228
+ margin-right: auto;
229
+ }
244
230
  /* Placeholder styling when input is empty */
245
231
  .cometchat-message-composer__input:empty:before {
246
232
  content: attr(data-placeholder);
@@ -286,12 +272,34 @@
286
272
  background: var(--cometchat-primary-color);
287
273
  }
288
274
 
289
- /* Active AI button icon */
290
- .cometchat-message-composer div:not([class]) .cometchat-message-composer__auxilary-button-view-ai-button-active .cometchat-button__icon {
291
- background: var(--cometchat-primary-color);
292
- }
293
275
 
294
276
  /* Active stickerkeyboard button icon */
295
277
  .cometchat-message-composer div:not([class]) .cometchat-message-composer__auxilary-button-view-sticker-button-active .cometchat-button__icon {
296
278
  background: var(--cometchat-primary-color);
279
+ }
280
+ .cometchat-message-composer__input-mobile{
281
+ font: var( --cometchat-font-heading4-regular);
282
+ }
283
+ /**
284
+ * Default styling for each options in actionsheet
285
+ */
286
+ .cometchat-message-composer__secondary-button-view-attachment-button .cometchat-action-sheet{
287
+ min-width: 200px;
288
+ }
289
+ .cometchat-message-composer__secondary-button-view-attachment-button-1 .cometchat-popover__content{
290
+ height: 58px;
291
+ }
292
+ .cometchat-message-composer__secondary-button-view-attachment-button-2 .cometchat-popover__content{
293
+ height: 114px;
294
+ }
295
+ .cometchat-message-composer__secondary-button-view-attachment-button-3 .cometchat-popover__content{
296
+ height: 170px;
297
+
298
+ }
299
+ .cometchat-message-composer__secondary-button-view-attachment-button-4 .cometchat-popover__content{
300
+ height: 230px;
301
+
302
+ }
303
+ .cometchat-message-composer__secondary-button-view-attachment-button-5 .cometchat-popover__content{
304
+ height: 285px;
297
305
  }
@@ -10,6 +10,8 @@
10
10
  justify-content: space-between;
11
11
  height: 64px;
12
12
  background: var(--cometchat-background-color-01);
13
+ width: 100%;
14
+ overflow: hidden;
13
15
  }
14
16
 
15
17
  /* Subtitle styling within the message header */
@@ -50,6 +52,11 @@
50
52
  justify-content: flex-start;
51
53
  gap: var(--cometchat-padding-2, 8px);
52
54
  flex: 1 0 0;
55
+ width: 100%;
56
+ overflow: hidden;
57
+ }
58
+ .cometchat-message-header .cometchat-list-item__trailing-view{
59
+ display: none;
53
60
  }
54
61
 
55
62
  /* Styling for the back button in the message header */
@@ -66,7 +73,20 @@
66
73
  cursor: pointer;
67
74
  }
68
75
 
69
-
76
+ .cometchat-message-header .cometchat-message-header__conversation-summary-button .cometchat-button{
77
+ background: transparent;
78
+ border: none;
79
+ justify-content: center;
80
+ align-items: center;
81
+ height: fit-content;
82
+ width: fit-content;
83
+ padding: 0;
84
+ }
85
+ .cometchat-message-header .cometchat-message-header__conversation-summary-button .cometchat-button .cometchat-button__icon{
86
+ height: 24px;
87
+ width: 24px;
88
+ background: var(--cometchat-icon-color-primary, #141414);;
89
+ }
70
90
  /* List item container within the message header */
71
91
 
72
92
  .cometchat-message-header__listitem {
@@ -75,15 +95,18 @@
75
95
  display: flex;
76
96
  align-items: center;
77
97
  justify-content: flex-start;
98
+ overflow: hidden;
78
99
  }
79
100
 
80
101
  /* Menu container within the message header, aligned to the right */
81
102
 
82
- .cometchat-message-header__menu {
103
+ .cometchat-message-header__auxiliary-button-view {
83
104
  width: fit-content;
84
105
  display: flex;
106
+ gap: var(--cometchat-padding-4, 16px);
85
107
  align-items: center;
86
108
  justify-content: flex-end;
109
+ gap: 16px;
87
110
  }
88
111
 
89
112
  /* Removes padding for list items within the message header */
@@ -92,10 +115,12 @@
92
115
  padding: 0;
93
116
 
94
117
  }
95
- .cometchat-message-header .cometchat-list-item:hover{
118
+
119
+ .cometchat-message-header .cometchat-list-item:hover {
96
120
  background: transparent;
97
121
  cursor: default;
98
122
  }
123
+
99
124
  /* Removes padding for the body of the list item within the message header */
100
125
 
101
126
  .cometchat-message-header .cometchat-list-item__body {
@@ -137,7 +162,7 @@
137
162
  width: 100%;
138
163
  }
139
164
 
140
- .cometchat-message-header .cometchat-button__icon:hover{
165
+ .cometchat-message-header .cometchat-button__icon:hover {
141
166
  background: var(--cometchat-primary-color);
142
167
  }
143
168
 
@@ -148,6 +173,9 @@
148
173
  .cometchat-message-header__back-button {
149
174
  display: block;
150
175
  }
176
+ .cometchat-message-header .cometchat-list-item .cometchat-list-item__body-title {
177
+ display: initial;
178
+ }
151
179
  }
152
180
 
153
181
  @media (min-width: 769px) {
@@ -145,7 +145,7 @@
145
145
  align-items: flex-start;
146
146
  }
147
147
 
148
- .cometchat-message-information__receipts .cometchat-list-item__tail-view {
148
+ .cometchat-message-information__receipts .cometchat-list-item__trailing-view {
149
149
  display: none;
150
150
  }
151
151
 
@@ -204,7 +204,8 @@
204
204
  }
205
205
  }
206
206
 
207
- .cometchat-message-information .cometchat-date,
207
+ .cometchat-message-information__receipts-subtite-text,
208
+ .cometchat-message-information__receipts-subtitle .cometchat-date,
208
209
  .cometchat-message-information__receipts-subtite-text .cometchat-date {
209
210
  padding: 0px;
210
211
  overflow: hidden;
@@ -20,7 +20,9 @@
20
20
  border: none;
21
21
  align-self: center;
22
22
  }
23
-
23
+ .cometchat-message-list .cometchat-message-list__footer-smart-replies,.cometchat-message-list__footer-conversation-starter{
24
+ width: 100%;
25
+ }
24
26
  /* Body of the error state view */
25
27
  .cometchat-message-list__error-state-view-body {
26
28
  display: flex;
@@ -310,9 +312,7 @@ width: fit-content;
310
312
 
311
313
  /* Message indicator inside message list */
312
314
  .cometchat-message-list__message-indicator {
313
- z-index: 1;
314
- position: absolute;
315
- bottom: 8px;
315
+ margin-bottom: 8px;
316
316
  display: flex;
317
317
  width: 100;
318
318
  justify-content: center;
@@ -362,6 +362,7 @@ width: fit-content;
362
362
  justify-content: flex-start;
363
363
  width: 100%;
364
364
  box-sizing: border-box;
365
+ background: transparent;
365
366
  }
366
367
 
367
368
  /* Leading view inside message bubble */
@@ -698,7 +699,7 @@ width: fit-content;
698
699
  .cometchat-message-information__popup-wrapper {
699
700
  display: flex;
700
701
  position: fixed;
701
- z-index: 1;
702
+ z-index: 2;
702
703
  left: 0;
703
704
  top: 0;
704
705
  width: 100%;
@@ -21,6 +21,11 @@
21
21
  font: var(--cometchat-font-title-medium);
22
22
  }
23
23
 
24
+ .cometchat-outgoing-call__title-container {
25
+ display: flex;
26
+ flex-direction: column;
27
+ }
28
+
24
29
  /* Subtitle text for the outgoing call UI */
25
30
  .cometchat-outgoing-call__subtitle {
26
31
  color: var(--cometchat-text-color-secondary);