├── .DS_Store ├── AI ├── AIAssistBot │ ├── AIAssistBot.d.ts │ └── AIAssistBotDecorator.d.ts ├── AIConversationStarter │ ├── AIConversationStarter.d.ts │ └── AIConversationStarterDecorator.d.ts ├── AIConversationSummary │ ├── AIConversationSummary.d.ts │ └── AIConversationSummaryDecorator.d.ts └── AISmartReplies │ ├── AISmartReplies.d.ts │ └── AISmartRepliesDecorator.d.ts ├── Calls ├── CallingExtension.d.ts ├── CallingExtensionDecorator.d.ts ├── CometChatCallButtons │ ├── cometchat-call-buttons.module.d.ts │ └── cometchat-call-buttons │ │ └── cometchat-call-buttons.component.d.ts ├── CometChatCallLogDetails │ ├── cometchat-call-log-details.module.d.ts │ └── cometchat-call-log-details │ │ └── cometchat-call-log-details.component.d.ts ├── CometChatCallLogHistory │ ├── cometchat-call-log-history.module.d.ts │ └── cometchat-call-log-history │ │ └── cometchat-call-log-history.component.d.ts ├── CometChatCallLogParticipants │ ├── cometchat-call-log-participants.module.d.ts │ └── cometchat-call-log-participants │ │ └── cometchat-call-log-participants.component.d.ts ├── CometChatCallLogRecordings │ ├── cometchat-call-log-recordings.module.d.ts │ └── cometchat-call-log-recordings │ │ └── cometchat-call-log-recordings.component.d.ts ├── CometChatCallLogs │ ├── cometchat-call-logs.module.d.ts │ └── cometchat-call-logs │ │ └── cometchat-call-logs.component.d.ts ├── CometChatCallLogsWithDetails │ ├── cometchat-call-logs-with-details.module.d.ts │ └── cometchat-call-logs-with-details │ │ └── cometchat-call-logs-with-details.component.d.ts ├── CometChatIncomingCall │ ├── cometchat-incoming-call.module.d.ts │ └── cometchat-incoming-call │ │ └── cometchat-incoming-call.component.d.ts ├── CometChatOngoingCall │ ├── cometchat-ongoing-call.module.d.ts │ └── cometchat-ongoing-call │ │ └── cometchat-ongoing-call.component.d.ts └── CometChatOutgoingCall │ ├── cometchat-outgoing-call.module.d.ts │ └── cometchat-outgoing-call │ └── cometchat-outgoing-call.component.d.ts ├── CometChatAddMembers ├── cometchat-add-members.module.d.ts └── cometchat-add-members │ └── cometchat-add-members.component.d.ts ├── CometChatBannedMembers ├── cometchat-banned-members.module.d.ts └── cometchat-banned-members │ └── cometchat-banned-members.component.d.ts ├── CometChatContacts ├── cometchat-contacts.module.d.ts └── cometchat-contacts │ └── cometchat-contacts.component.d.ts ├── CometChatConversations ├── cometchat-conversations.module.d.ts └── cometchat-conversations │ └── cometchat-conversations.component.d.ts ├── CometChatConversationsWithMessages ├── cometchat-conversations-with-messages.module.d.ts └── cometchat-conversations-with-messages │ └── cometchat-conversations-with-messages.component.d.ts ├── CometChatDetails ├── cometchat-details.module.d.ts └── cometchat-details │ └── cometchat-details.component.d.ts ├── CometChatGroupMembers ├── cometchat-group-members.module.d.ts └── cometchat-group-members │ └── cometchat-group-members.component.d.ts ├── CometChatGroups ├── cometchat-groups.module.d.ts └── cometchat-groups │ └── cometchat-groups.component.d.ts ├── CometChatGroupsWithMessages ├── cometchat-groups-with-messages.module.d.ts └── cometchat-groups-with-messages │ └── cometchat-groups-with-messages.component.d.ts ├── CometChatList ├── cometchat-list.component.d.ts └── cometchat-list.module.d.ts ├── CometChatMessageBubble ├── cometchat-message-bubble.module.d.ts └── cometchat-message-bubble │ └── cometchat-message-bubble.component.d.ts ├── CometChatMessageComposer ├── cometchat-message-composer.module.d.ts └── cometchat-message-composer │ └── cometchat-message-composer.component.d.ts ├── CometChatMessageHeader ├── cometchat-message-header.module.d.ts └── cometchat-message-header │ └── cometchat-message-header.component.d.ts ├── CometChatMessageInformation ├── cometchat-message-information.module.d.ts └── cometchat-message-information │ └── cometchat-message-information.component.d.ts ├── CometChatMessageList ├── cometchat-message-list.module.d.ts └── cometchat-message-list │ └── cometchat-message-list.component.d.ts ├── CometChatMessages ├── cometchat-messages.module.d.ts └── cometchat-messages │ └── cometchat-messages.component.d.ts ├── CometChatTheme.service.d.ts ├── CometChatThreadedMessages ├── cometchat-threaded-messages.module.d.ts └── cometchat-threaded-messages │ └── cometchat-threaded-messages.component.d.ts ├── CometChatTransferOwnership ├── cometchat-transfer-ownership.module.d.ts └── cometchat-transfer-ownership │ └── cometchat-transfer-ownership.component.d.ts ├── CometChatUserMemberWrapper ├── cometchat-user-member-wrapper.component.d.ts └── cometchat-user-member-wrapper.module.d.ts ├── CometChatUsers ├── cometchat-users.module.d.ts └── cometchat-users │ └── cometchat-users.component.d.ts ├── CometChatUsersWithMessages ├── cometchat-users-with-messages.module.d.ts └── cometchat-users-with-messages │ └── cometchat-users-with-messages.component.d.ts ├── Extensions ├── CollaborativeDocument │ ├── CollaborativeDocumentExtension.d.ts │ └── CollaborativeDocumentExtensionDecorator.d.ts ├── CollaborativeWhiteboard │ ├── CollaborativeWhiteboardExtension.d.ts │ └── CollaborativeWhiteboardExtensionDecorator.d.ts ├── ImageModeration │ ├── ImageModerationExtension.d.ts │ └── ImageModerationExtensionDecorator.d.ts ├── LinkPreviewExtension │ ├── LinkPreviewExtension.d.ts │ └── LinkPreviewExtensionDecorator.d.ts ├── MessageTranslation │ ├── MessageTranslationExtension.d.ts │ └── MessageTranslationExtensionDecorator.d.ts ├── PollsExtension │ ├── PollsExtension.d.ts │ └── PollsExtensionDecorator.d.ts ├── SmartReplies │ ├── SmartRepliesExtension.d.ts │ └── SmartRepliesExtensionDecorator.d.ts ├── Stickers │ ├── StickersExtension.d.ts │ └── StickersExtensionDecorator.d.ts ├── TextModerator │ ├── TextModeratorExtension.d.ts │ └── TextModeratorExtensionDecorator.d.ts └── ThumbnailGeneration │ ├── ThumbnailGenerationExtension.d.ts │ └── ThumbnailGenerationExtensionDecorator.d.ts ├── README.md ├── Screenshots └── overview_cometchat_screens.png ├── Shared ├── CometChatUIkit │ └── CometChatUIKit.d.ts ├── Framework │ ├── AIExtensionDataSource.d.ts │ ├── ChatConfigurator.d.ts │ ├── DataSource.d.ts │ ├── DataSourceDecorator.d.ts │ └── ExtensionDataSource.d.ts ├── Utils │ ├── CallDetailUtils.d.ts │ ├── CallLogUtils.d.ts │ ├── ComeChatException.d.ts │ ├── MessageUtils.d.ts │ └── UtilityFunctions.d.ts └── Views │ ├── AIAssistBotMessageList │ ├── aiassist-bot-message-list.module.d.ts │ └── aiassist-bot-message-list │ │ └── aiassist-bot-message-list.component.d.ts │ └── CometChatTabs │ ├── cometchat-tabs.module.d.ts │ └── cometchat-tabs │ └── cometchat-tabs.component.d.ts ├── assets ├── ._.DS_Store ├── ._.gitkeep ├── ._Audio-Call.svg ├── ._Heart.svg ├── ._Locked.svg ├── ._More@2x.svg ├── ._Private.svg ├── ._Spinner.svg ├── ._Stickers.svg ├── ._Video-call.svg ├── ._Video-call2x.svg ├── ._activity.svg ├── ._back.png ├── ._backbutton.svg ├── ._call.svg ├── ._chats.svg ├── ._close2x.svg ├── ._collaborativedocument.svg ├── ._down-arrow.svg ├── ._file-upload.svg ├── ._flags.svg ├── ._food.svg ├── ._location.svg ├── ._message-delivered.png ├── ._message-delivered.svg ├── ._message-read.png ├── ._message-read.svg ├── ._message-sent.png ├── ._message-sent.svg ├── ._objects.svg ├── ._password-protected-group.svg ├── ._pause-icon.svg ├── ._placeholder.png ├── ._privacy.svg ├── ._record-icon.svg ├── ._search.png ├── ._start-chat.svg ├── ._start-conversation.svg ├── ._thread-icon.svg ├── ._unsafe-content.svg ├── ._user.svg ├── ._video-upload.svg ├── ._wait.png ├── ._warning-small.png ├── .gitkeep ├── Audio-Call.svg ├── Audio-Call2x.svg ├── Copy.svg ├── Grid-layout.svg ├── Heart.svg ├── Imagemoderation.svg ├── Info.svg ├── InfoIcon.svg ├── InfoSimpleIcon.svg ├── Locked.svg ├── More@2x.svg ├── Plus.svg ├── Private.svg ├── Reactionsicon.svg ├── Reply@2x.svg ├── Send.svg ├── Spinner.svg ├── Stickers.svg ├── Stipop.svg ├── Video-call.svg ├── Video-call2x.svg ├── activity.svg ├── addreaction.svg ├── ai-bot.svg ├── ai-empty.svg ├── ai-error.svg ├── animals.svg ├── attachment-file.svg ├── audio-file.svg ├── back.png ├── backbutton.svg ├── call.svg ├── chats.svg ├── checkmark.svg ├── close.svg ├── close2x.svg ├── collaborativedocument.svg ├── collaborativewhiteboard.svg ├── create-button.svg ├── declaration.d.ts ├── delete.svg ├── deleteicon.svg ├── down-arrow.svg ├── download.svg ├── editicon.svg ├── emoji.svg ├── empty-slot.svg ├── file-upload.svg ├── flags.svg ├── food.svg ├── greaterThanIcon.svg ├── group.svg ├── heart-reaction.png ├── heart.png ├── image.svg ├── incomingAudioCallIconUrl.svg ├── incomingVideoCallIconUrl.svg ├── incomingcall.wav ├── increase-size.svg ├── location.svg ├── message-delivered.png ├── message-delivered.svg ├── message-privately.svg ├── message-read.png ├── message-read.svg ├── message-sent.png ├── message-sent.svg ├── mic.svg ├── missedAudioCallIconUrl.svg ├── missedVideoCallIconUrl.svg ├── moreicon.svg ├── new-chat.svg ├── new-message-icon.svg ├── objects.svg ├── open-thread.svg ├── outgoingAudioCallIconUrl.svg ├── outgoingVideoCallIconUrl.svg ├── password-protected-group.svg ├── pause-icon.svg ├── photolibrary.svg ├── placeholder.png ├── play-icon.svg ├── plus-rotated.svg ├── polls.svg ├── privacy.svg ├── private-group.svg ├── public.svg ├── record-icon.svg ├── reduce-size.svg ├── right-arrow.svg ├── search.png ├── search.svg ├── side-arrow.svg ├── smileys.svg ├── start-chat.svg ├── start-conversation.svg ├── stop.svg ├── symbols.svg ├── thread-arrow.svg ├── thread-icon.svg ├── threadIndicatorIcon.svg ├── threadicon.svg ├── translation.svg ├── travel.svg ├── unsafe-content.svg ├── user.svg ├── video-upload.svg ├── video.svg ├── wait.png ├── wait.svg ├── warning-small.png └── warning-small.svg ├── cometchat-chat-uikit-angular.d.ts ├── esm2020 ├── AI │ ├── AIAssistBot │ │ ├── AIAssistBot.mjs │ │ └── AIAssistBotDecorator.mjs │ ├── AIConversationStarter │ │ ├── AIConversationStarter.mjs │ │ └── AIConversationStarterDecorator.mjs │ ├── AIConversationSummary │ │ ├── AIConversationSummary.mjs │ │ └── AIConversationSummaryDecorator.mjs │ └── AISmartReplies │ │ ├── AISmartReplies.mjs │ │ └── AISmartRepliesDecorator.mjs ├── Calls │ ├── CallingExtension.mjs │ ├── CallingExtensionDecorator.mjs │ ├── CometChatCallButtons │ │ ├── cometchat-call-buttons.module.mjs │ │ └── cometchat-call-buttons │ │ │ └── cometchat-call-buttons.component.mjs │ ├── CometChatCallLogDetails │ │ ├── cometchat-call-log-details.module.mjs │ │ └── cometchat-call-log-details │ │ │ └── cometchat-call-log-details.component.mjs │ ├── CometChatCallLogHistory │ │ ├── cometchat-call-log-history.module.mjs │ │ └── cometchat-call-log-history │ │ │ └── cometchat-call-log-history.component.mjs │ ├── CometChatCallLogParticipants │ │ ├── cometchat-call-log-participants.module.mjs │ │ └── cometchat-call-log-participants │ │ │ └── cometchat-call-log-participants.component.mjs │ ├── CometChatCallLogRecordings │ │ ├── cometchat-call-log-recordings.module.mjs │ │ └── cometchat-call-log-recordings │ │ │ └── cometchat-call-log-recordings.component.mjs │ ├── CometChatCallLogs │ │ ├── cometchat-call-logs.module.mjs │ │ └── cometchat-call-logs │ │ │ └── cometchat-call-logs.component.mjs │ ├── CometChatCallLogsWithDetails │ │ ├── cometchat-call-logs-with-details.module.mjs │ │ └── cometchat-call-logs-with-details │ │ │ └── cometchat-call-logs-with-details.component.mjs │ ├── CometChatIncomingCall │ │ ├── cometchat-incoming-call.module.mjs │ │ └── cometchat-incoming-call │ │ │ └── cometchat-incoming-call.component.mjs │ ├── CometChatOngoingCall │ │ ├── cometchat-ongoing-call.module.mjs │ │ └── cometchat-ongoing-call │ │ │ └── cometchat-ongoing-call.component.mjs │ └── CometChatOutgoingCall │ │ ├── cometchat-outgoing-call.module.mjs │ │ └── cometchat-outgoing-call │ │ └── cometchat-outgoing-call.component.mjs ├── CometChatAddMembers │ ├── cometchat-add-members.module.mjs │ └── cometchat-add-members │ │ └── cometchat-add-members.component.mjs ├── CometChatBannedMembers │ ├── cometchat-banned-members.module.mjs │ └── cometchat-banned-members │ │ └── cometchat-banned-members.component.mjs ├── CometChatContacts │ ├── cometchat-contacts.module.mjs │ └── cometchat-contacts │ │ └── cometchat-contacts.component.mjs ├── CometChatConversations │ ├── cometchat-conversations.module.mjs │ └── cometchat-conversations │ │ └── cometchat-conversations.component.mjs ├── CometChatConversationsWithMessages │ ├── cometchat-conversations-with-messages.module.mjs │ └── cometchat-conversations-with-messages │ │ └── cometchat-conversations-with-messages.component.mjs ├── CometChatDetails │ ├── cometchat-details.module.mjs │ └── cometchat-details │ │ └── cometchat-details.component.mjs ├── CometChatGroupMembers │ ├── cometchat-group-members.module.mjs │ └── cometchat-group-members │ │ └── cometchat-group-members.component.mjs ├── CometChatGroups │ ├── cometchat-groups.module.mjs │ └── cometchat-groups │ │ └── cometchat-groups.component.mjs ├── CometChatGroupsWithMessages │ ├── cometchat-groups-with-messages.module.mjs │ └── cometchat-groups-with-messages │ │ └── cometchat-groups-with-messages.component.mjs ├── CometChatList │ ├── cometchat-list.component.mjs │ └── cometchat-list.module.mjs ├── CometChatMessageBubble │ ├── cometchat-message-bubble.module.mjs │ └── cometchat-message-bubble │ │ └── cometchat-message-bubble.component.mjs ├── CometChatMessageComposer │ ├── cometchat-message-composer.module.mjs │ └── cometchat-message-composer │ │ └── cometchat-message-composer.component.mjs ├── CometChatMessageHeader │ ├── cometchat-message-header.module.mjs │ └── cometchat-message-header │ │ └── cometchat-message-header.component.mjs ├── CometChatMessageInformation │ ├── cometchat-message-information.module.mjs │ └── cometchat-message-information │ │ └── cometchat-message-information.component.mjs ├── CometChatMessageList │ ├── cometchat-message-list.module.mjs │ └── cometchat-message-list │ │ └── cometchat-message-list.component.mjs ├── CometChatMessages │ ├── cometchat-messages.module.mjs │ └── cometchat-messages │ │ └── cometchat-messages.component.mjs ├── CometChatTheme.service.mjs ├── CometChatThreadedMessages │ ├── cometchat-threaded-messages.module.mjs │ └── cometchat-threaded-messages │ │ └── cometchat-threaded-messages.component.mjs ├── CometChatTransferOwnership │ ├── cometchat-transfer-ownership.module.mjs │ └── cometchat-transfer-ownership │ │ └── cometchat-transfer-ownership.component.mjs ├── CometChatUserMemberWrapper │ ├── cometchat-user-member-wrapper.component.mjs │ └── cometchat-user-member-wrapper.module.mjs ├── CometChatUsers │ ├── cometchat-users.module.mjs │ └── cometchat-users │ │ └── cometchat-users.component.mjs ├── CometChatUsersWithMessages │ ├── cometchat-users-with-messages.module.mjs │ └── cometchat-users-with-messages │ │ └── cometchat-users-with-messages.component.mjs ├── Extensions │ ├── CollaborativeDocument │ │ ├── CollaborativeDocumentExtension.mjs │ │ └── CollaborativeDocumentExtensionDecorator.mjs │ ├── CollaborativeWhiteboard │ │ ├── CollaborativeWhiteboardExtension.mjs │ │ └── CollaborativeWhiteboardExtensionDecorator.mjs │ ├── ImageModeration │ │ ├── ImageModerationExtension.mjs │ │ └── ImageModerationExtensionDecorator.mjs │ ├── LinkPreviewExtension │ │ ├── LinkPreviewExtension.mjs │ │ └── LinkPreviewExtensionDecorator.mjs │ ├── MessageTranslation │ │ ├── MessageTranslationExtension.mjs │ │ └── MessageTranslationExtensionDecorator.mjs │ ├── PollsExtension │ │ ├── PollsExtension.mjs │ │ └── PollsExtensionDecorator.mjs │ ├── SmartReplies │ │ ├── SmartRepliesExtension.mjs │ │ └── SmartRepliesExtensionDecorator.mjs │ ├── Stickers │ │ ├── StickersExtension.mjs │ │ └── StickersExtensionDecorator.mjs │ ├── TextModerator │ │ ├── TextModeratorExtension.mjs │ │ └── TextModeratorExtensionDecorator.mjs │ └── ThumbnailGeneration │ │ ├── ThumbnailGenerationExtension.mjs │ │ └── ThumbnailGenerationExtensionDecorator.mjs ├── Shared │ ├── CometChatUIkit │ │ └── CometChatUIKit.mjs │ ├── Framework │ │ ├── AIExtensionDataSource.mjs │ │ ├── ChatConfigurator.mjs │ │ ├── DataSource.mjs │ │ ├── DataSourceDecorator.mjs │ │ └── ExtensionDataSource.mjs │ ├── Utils │ │ ├── CallDetailUtils.mjs │ │ ├── CallLogUtils.mjs │ │ ├── ComeChatException.mjs │ │ ├── MessageUtils.mjs │ │ └── UtilityFunctions.mjs │ └── Views │ │ ├── AIAssistBotMessageList │ │ ├── aiassist-bot-message-list.module.mjs │ │ └── aiassist-bot-message-list │ │ │ └── aiassist-bot-message-list.component.mjs │ │ └── CometChatTabs │ │ ├── cometchat-tabs.module.mjs │ │ └── cometchat-tabs │ │ └── cometchat-tabs.component.mjs ├── cometchat-chat-uikit-angular.mjs └── public-api.mjs ├── examples └── sample-app │ └── README.md ├── fesm2015 ├── cometchat-chat-uikit-angular.mjs └── cometchat-chat-uikit-angular.mjs.map ├── fesm2020 ├── cometchat-chat-uikit-angular.mjs └── cometchat-chat-uikit-angular.mjs.map ├── package.json └── public-api.d.ts /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/.DS_Store -------------------------------------------------------------------------------- /AI/AIAssistBot/AIAssistBot.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/AI/AIAssistBot/AIAssistBot.d.ts -------------------------------------------------------------------------------- /AI/AIAssistBot/AIAssistBotDecorator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/AI/AIAssistBot/AIAssistBotDecorator.d.ts -------------------------------------------------------------------------------- /AI/AIConversationStarter/AIConversationStarter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/AI/AIConversationStarter/AIConversationStarter.d.ts -------------------------------------------------------------------------------- /AI/AIConversationStarter/AIConversationStarterDecorator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/AI/AIConversationStarter/AIConversationStarterDecorator.d.ts -------------------------------------------------------------------------------- /AI/AIConversationSummary/AIConversationSummary.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/AI/AIConversationSummary/AIConversationSummary.d.ts -------------------------------------------------------------------------------- /AI/AIConversationSummary/AIConversationSummaryDecorator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/AI/AIConversationSummary/AIConversationSummaryDecorator.d.ts -------------------------------------------------------------------------------- /AI/AISmartReplies/AISmartReplies.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/AI/AISmartReplies/AISmartReplies.d.ts -------------------------------------------------------------------------------- /AI/AISmartReplies/AISmartRepliesDecorator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/AI/AISmartReplies/AISmartRepliesDecorator.d.ts -------------------------------------------------------------------------------- /Calls/CallingExtension.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Calls/CallingExtension.d.ts -------------------------------------------------------------------------------- /Calls/CallingExtensionDecorator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Calls/CallingExtensionDecorator.d.ts -------------------------------------------------------------------------------- /Calls/CometChatCallButtons/cometchat-call-buttons.module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Calls/CometChatCallButtons/cometchat-call-buttons.module.d.ts -------------------------------------------------------------------------------- /Calls/CometChatCallButtons/cometchat-call-buttons/cometchat-call-buttons.component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Calls/CometChatCallButtons/cometchat-call-buttons/cometchat-call-buttons.component.d.ts -------------------------------------------------------------------------------- /Calls/CometChatCallLogDetails/cometchat-call-log-details.module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Calls/CometChatCallLogDetails/cometchat-call-log-details.module.d.ts -------------------------------------------------------------------------------- /Calls/CometChatCallLogDetails/cometchat-call-log-details/cometchat-call-log-details.component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Calls/CometChatCallLogDetails/cometchat-call-log-details/cometchat-call-log-details.component.d.ts -------------------------------------------------------------------------------- /Calls/CometChatCallLogHistory/cometchat-call-log-history.module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Calls/CometChatCallLogHistory/cometchat-call-log-history.module.d.ts -------------------------------------------------------------------------------- /Calls/CometChatCallLogHistory/cometchat-call-log-history/cometchat-call-log-history.component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Calls/CometChatCallLogHistory/cometchat-call-log-history/cometchat-call-log-history.component.d.ts -------------------------------------------------------------------------------- /Calls/CometChatCallLogParticipants/cometchat-call-log-participants.module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Calls/CometChatCallLogParticipants/cometchat-call-log-participants.module.d.ts -------------------------------------------------------------------------------- /Calls/CometChatCallLogParticipants/cometchat-call-log-participants/cometchat-call-log-participants.component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Calls/CometChatCallLogParticipants/cometchat-call-log-participants/cometchat-call-log-participants.component.d.ts -------------------------------------------------------------------------------- /Calls/CometChatCallLogRecordings/cometchat-call-log-recordings.module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Calls/CometChatCallLogRecordings/cometchat-call-log-recordings.module.d.ts -------------------------------------------------------------------------------- /Calls/CometChatCallLogRecordings/cometchat-call-log-recordings/cometchat-call-log-recordings.component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Calls/CometChatCallLogRecordings/cometchat-call-log-recordings/cometchat-call-log-recordings.component.d.ts -------------------------------------------------------------------------------- /Calls/CometChatCallLogs/cometchat-call-logs.module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Calls/CometChatCallLogs/cometchat-call-logs.module.d.ts -------------------------------------------------------------------------------- /Calls/CometChatCallLogs/cometchat-call-logs/cometchat-call-logs.component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Calls/CometChatCallLogs/cometchat-call-logs/cometchat-call-logs.component.d.ts -------------------------------------------------------------------------------- /Calls/CometChatCallLogsWithDetails/cometchat-call-logs-with-details.module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Calls/CometChatCallLogsWithDetails/cometchat-call-logs-with-details.module.d.ts -------------------------------------------------------------------------------- /Calls/CometChatCallLogsWithDetails/cometchat-call-logs-with-details/cometchat-call-logs-with-details.component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Calls/CometChatCallLogsWithDetails/cometchat-call-logs-with-details/cometchat-call-logs-with-details.component.d.ts -------------------------------------------------------------------------------- /Calls/CometChatIncomingCall/cometchat-incoming-call.module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Calls/CometChatIncomingCall/cometchat-incoming-call.module.d.ts -------------------------------------------------------------------------------- /Calls/CometChatIncomingCall/cometchat-incoming-call/cometchat-incoming-call.component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Calls/CometChatIncomingCall/cometchat-incoming-call/cometchat-incoming-call.component.d.ts -------------------------------------------------------------------------------- /Calls/CometChatOngoingCall/cometchat-ongoing-call.module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Calls/CometChatOngoingCall/cometchat-ongoing-call.module.d.ts -------------------------------------------------------------------------------- /Calls/CometChatOngoingCall/cometchat-ongoing-call/cometchat-ongoing-call.component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Calls/CometChatOngoingCall/cometchat-ongoing-call/cometchat-ongoing-call.component.d.ts -------------------------------------------------------------------------------- /Calls/CometChatOutgoingCall/cometchat-outgoing-call.module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Calls/CometChatOutgoingCall/cometchat-outgoing-call.module.d.ts -------------------------------------------------------------------------------- /Calls/CometChatOutgoingCall/cometchat-outgoing-call/cometchat-outgoing-call.component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Calls/CometChatOutgoingCall/cometchat-outgoing-call/cometchat-outgoing-call.component.d.ts -------------------------------------------------------------------------------- /CometChatAddMembers/cometchat-add-members.module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatAddMembers/cometchat-add-members.module.d.ts -------------------------------------------------------------------------------- /CometChatAddMembers/cometchat-add-members/cometchat-add-members.component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatAddMembers/cometchat-add-members/cometchat-add-members.component.d.ts -------------------------------------------------------------------------------- /CometChatBannedMembers/cometchat-banned-members.module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatBannedMembers/cometchat-banned-members.module.d.ts -------------------------------------------------------------------------------- /CometChatBannedMembers/cometchat-banned-members/cometchat-banned-members.component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatBannedMembers/cometchat-banned-members/cometchat-banned-members.component.d.ts -------------------------------------------------------------------------------- /CometChatContacts/cometchat-contacts.module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatContacts/cometchat-contacts.module.d.ts -------------------------------------------------------------------------------- /CometChatContacts/cometchat-contacts/cometchat-contacts.component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatContacts/cometchat-contacts/cometchat-contacts.component.d.ts -------------------------------------------------------------------------------- /CometChatConversations/cometchat-conversations.module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatConversations/cometchat-conversations.module.d.ts -------------------------------------------------------------------------------- /CometChatConversations/cometchat-conversations/cometchat-conversations.component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatConversations/cometchat-conversations/cometchat-conversations.component.d.ts -------------------------------------------------------------------------------- /CometChatConversationsWithMessages/cometchat-conversations-with-messages.module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatConversationsWithMessages/cometchat-conversations-with-messages.module.d.ts -------------------------------------------------------------------------------- /CometChatConversationsWithMessages/cometchat-conversations-with-messages/cometchat-conversations-with-messages.component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatConversationsWithMessages/cometchat-conversations-with-messages/cometchat-conversations-with-messages.component.d.ts -------------------------------------------------------------------------------- /CometChatDetails/cometchat-details.module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatDetails/cometchat-details.module.d.ts -------------------------------------------------------------------------------- /CometChatDetails/cometchat-details/cometchat-details.component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatDetails/cometchat-details/cometchat-details.component.d.ts -------------------------------------------------------------------------------- /CometChatGroupMembers/cometchat-group-members.module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatGroupMembers/cometchat-group-members.module.d.ts -------------------------------------------------------------------------------- /CometChatGroupMembers/cometchat-group-members/cometchat-group-members.component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatGroupMembers/cometchat-group-members/cometchat-group-members.component.d.ts -------------------------------------------------------------------------------- /CometChatGroups/cometchat-groups.module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatGroups/cometchat-groups.module.d.ts -------------------------------------------------------------------------------- /CometChatGroups/cometchat-groups/cometchat-groups.component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatGroups/cometchat-groups/cometchat-groups.component.d.ts -------------------------------------------------------------------------------- /CometChatGroupsWithMessages/cometchat-groups-with-messages.module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatGroupsWithMessages/cometchat-groups-with-messages.module.d.ts -------------------------------------------------------------------------------- /CometChatGroupsWithMessages/cometchat-groups-with-messages/cometchat-groups-with-messages.component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatGroupsWithMessages/cometchat-groups-with-messages/cometchat-groups-with-messages.component.d.ts -------------------------------------------------------------------------------- /CometChatList/cometchat-list.component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatList/cometchat-list.component.d.ts -------------------------------------------------------------------------------- /CometChatList/cometchat-list.module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatList/cometchat-list.module.d.ts -------------------------------------------------------------------------------- /CometChatMessageBubble/cometchat-message-bubble.module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatMessageBubble/cometchat-message-bubble.module.d.ts -------------------------------------------------------------------------------- /CometChatMessageBubble/cometchat-message-bubble/cometchat-message-bubble.component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatMessageBubble/cometchat-message-bubble/cometchat-message-bubble.component.d.ts -------------------------------------------------------------------------------- /CometChatMessageComposer/cometchat-message-composer.module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatMessageComposer/cometchat-message-composer.module.d.ts -------------------------------------------------------------------------------- /CometChatMessageComposer/cometchat-message-composer/cometchat-message-composer.component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatMessageComposer/cometchat-message-composer/cometchat-message-composer.component.d.ts -------------------------------------------------------------------------------- /CometChatMessageHeader/cometchat-message-header.module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatMessageHeader/cometchat-message-header.module.d.ts -------------------------------------------------------------------------------- /CometChatMessageHeader/cometchat-message-header/cometchat-message-header.component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatMessageHeader/cometchat-message-header/cometchat-message-header.component.d.ts -------------------------------------------------------------------------------- /CometChatMessageInformation/cometchat-message-information.module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatMessageInformation/cometchat-message-information.module.d.ts -------------------------------------------------------------------------------- /CometChatMessageInformation/cometchat-message-information/cometchat-message-information.component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatMessageInformation/cometchat-message-information/cometchat-message-information.component.d.ts -------------------------------------------------------------------------------- /CometChatMessageList/cometchat-message-list.module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatMessageList/cometchat-message-list.module.d.ts -------------------------------------------------------------------------------- /CometChatMessageList/cometchat-message-list/cometchat-message-list.component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatMessageList/cometchat-message-list/cometchat-message-list.component.d.ts -------------------------------------------------------------------------------- /CometChatMessages/cometchat-messages.module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatMessages/cometchat-messages.module.d.ts -------------------------------------------------------------------------------- /CometChatMessages/cometchat-messages/cometchat-messages.component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatMessages/cometchat-messages/cometchat-messages.component.d.ts -------------------------------------------------------------------------------- /CometChatTheme.service.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatTheme.service.d.ts -------------------------------------------------------------------------------- /CometChatThreadedMessages/cometchat-threaded-messages.module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatThreadedMessages/cometchat-threaded-messages.module.d.ts -------------------------------------------------------------------------------- /CometChatThreadedMessages/cometchat-threaded-messages/cometchat-threaded-messages.component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatThreadedMessages/cometchat-threaded-messages/cometchat-threaded-messages.component.d.ts -------------------------------------------------------------------------------- /CometChatTransferOwnership/cometchat-transfer-ownership.module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatTransferOwnership/cometchat-transfer-ownership.module.d.ts -------------------------------------------------------------------------------- /CometChatTransferOwnership/cometchat-transfer-ownership/cometchat-transfer-ownership.component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatTransferOwnership/cometchat-transfer-ownership/cometchat-transfer-ownership.component.d.ts -------------------------------------------------------------------------------- /CometChatUserMemberWrapper/cometchat-user-member-wrapper.component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatUserMemberWrapper/cometchat-user-member-wrapper.component.d.ts -------------------------------------------------------------------------------- /CometChatUserMemberWrapper/cometchat-user-member-wrapper.module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatUserMemberWrapper/cometchat-user-member-wrapper.module.d.ts -------------------------------------------------------------------------------- /CometChatUsers/cometchat-users.module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatUsers/cometchat-users.module.d.ts -------------------------------------------------------------------------------- /CometChatUsers/cometchat-users/cometchat-users.component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatUsers/cometchat-users/cometchat-users.component.d.ts -------------------------------------------------------------------------------- /CometChatUsersWithMessages/cometchat-users-with-messages.module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatUsersWithMessages/cometchat-users-with-messages.module.d.ts -------------------------------------------------------------------------------- /CometChatUsersWithMessages/cometchat-users-with-messages/cometchat-users-with-messages.component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/CometChatUsersWithMessages/cometchat-users-with-messages/cometchat-users-with-messages.component.d.ts -------------------------------------------------------------------------------- /Extensions/CollaborativeDocument/CollaborativeDocumentExtension.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Extensions/CollaborativeDocument/CollaborativeDocumentExtension.d.ts -------------------------------------------------------------------------------- /Extensions/CollaborativeDocument/CollaborativeDocumentExtensionDecorator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Extensions/CollaborativeDocument/CollaborativeDocumentExtensionDecorator.d.ts -------------------------------------------------------------------------------- /Extensions/CollaborativeWhiteboard/CollaborativeWhiteboardExtension.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Extensions/CollaborativeWhiteboard/CollaborativeWhiteboardExtension.d.ts -------------------------------------------------------------------------------- /Extensions/CollaborativeWhiteboard/CollaborativeWhiteboardExtensionDecorator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Extensions/CollaborativeWhiteboard/CollaborativeWhiteboardExtensionDecorator.d.ts -------------------------------------------------------------------------------- /Extensions/ImageModeration/ImageModerationExtension.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Extensions/ImageModeration/ImageModerationExtension.d.ts -------------------------------------------------------------------------------- /Extensions/ImageModeration/ImageModerationExtensionDecorator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Extensions/ImageModeration/ImageModerationExtensionDecorator.d.ts -------------------------------------------------------------------------------- /Extensions/LinkPreviewExtension/LinkPreviewExtension.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Extensions/LinkPreviewExtension/LinkPreviewExtension.d.ts -------------------------------------------------------------------------------- /Extensions/LinkPreviewExtension/LinkPreviewExtensionDecorator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Extensions/LinkPreviewExtension/LinkPreviewExtensionDecorator.d.ts -------------------------------------------------------------------------------- /Extensions/MessageTranslation/MessageTranslationExtension.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Extensions/MessageTranslation/MessageTranslationExtension.d.ts -------------------------------------------------------------------------------- /Extensions/MessageTranslation/MessageTranslationExtensionDecorator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Extensions/MessageTranslation/MessageTranslationExtensionDecorator.d.ts -------------------------------------------------------------------------------- /Extensions/PollsExtension/PollsExtension.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Extensions/PollsExtension/PollsExtension.d.ts -------------------------------------------------------------------------------- /Extensions/PollsExtension/PollsExtensionDecorator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Extensions/PollsExtension/PollsExtensionDecorator.d.ts -------------------------------------------------------------------------------- /Extensions/SmartReplies/SmartRepliesExtension.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Extensions/SmartReplies/SmartRepliesExtension.d.ts -------------------------------------------------------------------------------- /Extensions/SmartReplies/SmartRepliesExtensionDecorator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Extensions/SmartReplies/SmartRepliesExtensionDecorator.d.ts -------------------------------------------------------------------------------- /Extensions/Stickers/StickersExtension.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Extensions/Stickers/StickersExtension.d.ts -------------------------------------------------------------------------------- /Extensions/Stickers/StickersExtensionDecorator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Extensions/Stickers/StickersExtensionDecorator.d.ts -------------------------------------------------------------------------------- /Extensions/TextModerator/TextModeratorExtension.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Extensions/TextModerator/TextModeratorExtension.d.ts -------------------------------------------------------------------------------- /Extensions/TextModerator/TextModeratorExtensionDecorator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Extensions/TextModerator/TextModeratorExtensionDecorator.d.ts -------------------------------------------------------------------------------- /Extensions/ThumbnailGeneration/ThumbnailGenerationExtension.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Extensions/ThumbnailGeneration/ThumbnailGenerationExtension.d.ts -------------------------------------------------------------------------------- /Extensions/ThumbnailGeneration/ThumbnailGenerationExtensionDecorator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Extensions/ThumbnailGeneration/ThumbnailGenerationExtensionDecorator.d.ts -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/overview_cometchat_screens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Screenshots/overview_cometchat_screens.png -------------------------------------------------------------------------------- /Shared/CometChatUIkit/CometChatUIKit.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Shared/CometChatUIkit/CometChatUIKit.d.ts -------------------------------------------------------------------------------- /Shared/Framework/AIExtensionDataSource.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Shared/Framework/AIExtensionDataSource.d.ts -------------------------------------------------------------------------------- /Shared/Framework/ChatConfigurator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Shared/Framework/ChatConfigurator.d.ts -------------------------------------------------------------------------------- /Shared/Framework/DataSource.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Shared/Framework/DataSource.d.ts -------------------------------------------------------------------------------- /Shared/Framework/DataSourceDecorator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Shared/Framework/DataSourceDecorator.d.ts -------------------------------------------------------------------------------- /Shared/Framework/ExtensionDataSource.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Shared/Framework/ExtensionDataSource.d.ts -------------------------------------------------------------------------------- /Shared/Utils/CallDetailUtils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Shared/Utils/CallDetailUtils.d.ts -------------------------------------------------------------------------------- /Shared/Utils/CallLogUtils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Shared/Utils/CallLogUtils.d.ts -------------------------------------------------------------------------------- /Shared/Utils/ComeChatException.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Shared/Utils/ComeChatException.d.ts -------------------------------------------------------------------------------- /Shared/Utils/MessageUtils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Shared/Utils/MessageUtils.d.ts -------------------------------------------------------------------------------- /Shared/Utils/UtilityFunctions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Shared/Utils/UtilityFunctions.d.ts -------------------------------------------------------------------------------- /Shared/Views/AIAssistBotMessageList/aiassist-bot-message-list.module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Shared/Views/AIAssistBotMessageList/aiassist-bot-message-list.module.d.ts -------------------------------------------------------------------------------- /Shared/Views/AIAssistBotMessageList/aiassist-bot-message-list/aiassist-bot-message-list.component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Shared/Views/AIAssistBotMessageList/aiassist-bot-message-list/aiassist-bot-message-list.component.d.ts -------------------------------------------------------------------------------- /Shared/Views/CometChatTabs/cometchat-tabs.module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Shared/Views/CometChatTabs/cometchat-tabs.module.d.ts -------------------------------------------------------------------------------- /Shared/Views/CometChatTabs/cometchat-tabs/cometchat-tabs.component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/Shared/Views/CometChatTabs/cometchat-tabs/cometchat-tabs.component.d.ts -------------------------------------------------------------------------------- /assets/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._.DS_Store -------------------------------------------------------------------------------- /assets/._.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._.gitkeep -------------------------------------------------------------------------------- /assets/._Audio-Call.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._Audio-Call.svg -------------------------------------------------------------------------------- /assets/._Heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._Heart.svg -------------------------------------------------------------------------------- /assets/._Locked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._Locked.svg -------------------------------------------------------------------------------- /assets/._More@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._More@2x.svg -------------------------------------------------------------------------------- /assets/._Private.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._Private.svg -------------------------------------------------------------------------------- /assets/._Spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._Spinner.svg -------------------------------------------------------------------------------- /assets/._Stickers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._Stickers.svg -------------------------------------------------------------------------------- /assets/._Video-call.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._Video-call.svg -------------------------------------------------------------------------------- /assets/._Video-call2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._Video-call2x.svg -------------------------------------------------------------------------------- /assets/._activity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._activity.svg -------------------------------------------------------------------------------- /assets/._back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._back.png -------------------------------------------------------------------------------- /assets/._backbutton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._backbutton.svg -------------------------------------------------------------------------------- /assets/._call.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._call.svg -------------------------------------------------------------------------------- /assets/._chats.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._chats.svg -------------------------------------------------------------------------------- /assets/._close2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._close2x.svg -------------------------------------------------------------------------------- /assets/._collaborativedocument.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._collaborativedocument.svg -------------------------------------------------------------------------------- /assets/._down-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._down-arrow.svg -------------------------------------------------------------------------------- /assets/._file-upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._file-upload.svg -------------------------------------------------------------------------------- /assets/._flags.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._flags.svg -------------------------------------------------------------------------------- /assets/._food.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._food.svg -------------------------------------------------------------------------------- /assets/._location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._location.svg -------------------------------------------------------------------------------- /assets/._message-delivered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._message-delivered.png -------------------------------------------------------------------------------- /assets/._message-delivered.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._message-delivered.svg -------------------------------------------------------------------------------- /assets/._message-read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._message-read.png -------------------------------------------------------------------------------- /assets/._message-read.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._message-read.svg -------------------------------------------------------------------------------- /assets/._message-sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._message-sent.png -------------------------------------------------------------------------------- /assets/._message-sent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._message-sent.svg -------------------------------------------------------------------------------- /assets/._objects.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._objects.svg -------------------------------------------------------------------------------- /assets/._password-protected-group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._password-protected-group.svg -------------------------------------------------------------------------------- /assets/._pause-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._pause-icon.svg -------------------------------------------------------------------------------- /assets/._placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._placeholder.png -------------------------------------------------------------------------------- /assets/._privacy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._privacy.svg -------------------------------------------------------------------------------- /assets/._record-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._record-icon.svg -------------------------------------------------------------------------------- /assets/._search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._search.png -------------------------------------------------------------------------------- /assets/._start-chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._start-chat.svg -------------------------------------------------------------------------------- /assets/._start-conversation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._start-conversation.svg -------------------------------------------------------------------------------- /assets/._thread-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._thread-icon.svg -------------------------------------------------------------------------------- /assets/._unsafe-content.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._unsafe-content.svg -------------------------------------------------------------------------------- /assets/._user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._user.svg -------------------------------------------------------------------------------- /assets/._video-upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._video-upload.svg -------------------------------------------------------------------------------- /assets/._wait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._wait.png -------------------------------------------------------------------------------- /assets/._warning-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/._warning-small.png -------------------------------------------------------------------------------- /assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/Audio-Call.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/Audio-Call.svg -------------------------------------------------------------------------------- /assets/Audio-Call2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/Audio-Call2x.svg -------------------------------------------------------------------------------- /assets/Copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/Copy.svg -------------------------------------------------------------------------------- /assets/Grid-layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/Grid-layout.svg -------------------------------------------------------------------------------- /assets/Heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/Heart.svg -------------------------------------------------------------------------------- /assets/Imagemoderation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/Imagemoderation.svg -------------------------------------------------------------------------------- /assets/Info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/Info.svg -------------------------------------------------------------------------------- /assets/InfoIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/InfoIcon.svg -------------------------------------------------------------------------------- /assets/InfoSimpleIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/InfoSimpleIcon.svg -------------------------------------------------------------------------------- /assets/Locked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/Locked.svg -------------------------------------------------------------------------------- /assets/More@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/More@2x.svg -------------------------------------------------------------------------------- /assets/Plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/Plus.svg -------------------------------------------------------------------------------- /assets/Private.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/Private.svg -------------------------------------------------------------------------------- /assets/Reactionsicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/Reactionsicon.svg -------------------------------------------------------------------------------- /assets/Reply@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/Reply@2x.svg -------------------------------------------------------------------------------- /assets/Send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/Send.svg -------------------------------------------------------------------------------- /assets/Spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/Spinner.svg -------------------------------------------------------------------------------- /assets/Stickers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/Stickers.svg -------------------------------------------------------------------------------- /assets/Stipop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/Stipop.svg -------------------------------------------------------------------------------- /assets/Video-call.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/Video-call.svg -------------------------------------------------------------------------------- /assets/Video-call2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/Video-call2x.svg -------------------------------------------------------------------------------- /assets/activity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/activity.svg -------------------------------------------------------------------------------- /assets/addreaction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/addreaction.svg -------------------------------------------------------------------------------- /assets/ai-bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/ai-bot.svg -------------------------------------------------------------------------------- /assets/ai-empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/ai-empty.svg -------------------------------------------------------------------------------- /assets/ai-error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/ai-error.svg -------------------------------------------------------------------------------- /assets/animals.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/animals.svg -------------------------------------------------------------------------------- /assets/attachment-file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/attachment-file.svg -------------------------------------------------------------------------------- /assets/audio-file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/audio-file.svg -------------------------------------------------------------------------------- /assets/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/back.png -------------------------------------------------------------------------------- /assets/backbutton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/backbutton.svg -------------------------------------------------------------------------------- /assets/call.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/call.svg -------------------------------------------------------------------------------- /assets/chats.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/chats.svg -------------------------------------------------------------------------------- /assets/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/checkmark.svg -------------------------------------------------------------------------------- /assets/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/close.svg -------------------------------------------------------------------------------- /assets/close2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/close2x.svg -------------------------------------------------------------------------------- /assets/collaborativedocument.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/collaborativedocument.svg -------------------------------------------------------------------------------- /assets/collaborativewhiteboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/collaborativewhiteboard.svg -------------------------------------------------------------------------------- /assets/create-button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/create-button.svg -------------------------------------------------------------------------------- /assets/declaration.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/declaration.d.ts -------------------------------------------------------------------------------- /assets/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/delete.svg -------------------------------------------------------------------------------- /assets/deleteicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/deleteicon.svg -------------------------------------------------------------------------------- /assets/down-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/down-arrow.svg -------------------------------------------------------------------------------- /assets/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/download.svg -------------------------------------------------------------------------------- /assets/editicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/editicon.svg -------------------------------------------------------------------------------- /assets/emoji.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/emoji.svg -------------------------------------------------------------------------------- /assets/empty-slot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/empty-slot.svg -------------------------------------------------------------------------------- /assets/file-upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/file-upload.svg -------------------------------------------------------------------------------- /assets/flags.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/flags.svg -------------------------------------------------------------------------------- /assets/food.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/food.svg -------------------------------------------------------------------------------- /assets/greaterThanIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/greaterThanIcon.svg -------------------------------------------------------------------------------- /assets/group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/group.svg -------------------------------------------------------------------------------- /assets/heart-reaction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/heart-reaction.png -------------------------------------------------------------------------------- /assets/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/heart.png -------------------------------------------------------------------------------- /assets/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/image.svg -------------------------------------------------------------------------------- /assets/incomingAudioCallIconUrl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/incomingAudioCallIconUrl.svg -------------------------------------------------------------------------------- /assets/incomingVideoCallIconUrl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/incomingVideoCallIconUrl.svg -------------------------------------------------------------------------------- /assets/incomingcall.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/incomingcall.wav -------------------------------------------------------------------------------- /assets/increase-size.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/increase-size.svg -------------------------------------------------------------------------------- /assets/location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/location.svg -------------------------------------------------------------------------------- /assets/message-delivered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/message-delivered.png -------------------------------------------------------------------------------- /assets/message-delivered.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/message-delivered.svg -------------------------------------------------------------------------------- /assets/message-privately.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/message-privately.svg -------------------------------------------------------------------------------- /assets/message-read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/message-read.png -------------------------------------------------------------------------------- /assets/message-read.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/message-read.svg -------------------------------------------------------------------------------- /assets/message-sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/message-sent.png -------------------------------------------------------------------------------- /assets/message-sent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/message-sent.svg -------------------------------------------------------------------------------- /assets/mic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/mic.svg -------------------------------------------------------------------------------- /assets/missedAudioCallIconUrl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/missedAudioCallIconUrl.svg -------------------------------------------------------------------------------- /assets/missedVideoCallIconUrl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/missedVideoCallIconUrl.svg -------------------------------------------------------------------------------- /assets/moreicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/moreicon.svg -------------------------------------------------------------------------------- /assets/new-chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/new-chat.svg -------------------------------------------------------------------------------- /assets/new-message-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/new-message-icon.svg -------------------------------------------------------------------------------- /assets/objects.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/objects.svg -------------------------------------------------------------------------------- /assets/open-thread.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/open-thread.svg -------------------------------------------------------------------------------- /assets/outgoingAudioCallIconUrl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/outgoingAudioCallIconUrl.svg -------------------------------------------------------------------------------- /assets/outgoingVideoCallIconUrl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/outgoingVideoCallIconUrl.svg -------------------------------------------------------------------------------- /assets/password-protected-group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/password-protected-group.svg -------------------------------------------------------------------------------- /assets/pause-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/pause-icon.svg -------------------------------------------------------------------------------- /assets/photolibrary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/photolibrary.svg -------------------------------------------------------------------------------- /assets/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/placeholder.png -------------------------------------------------------------------------------- /assets/play-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/play-icon.svg -------------------------------------------------------------------------------- /assets/plus-rotated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/plus-rotated.svg -------------------------------------------------------------------------------- /assets/polls.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/polls.svg -------------------------------------------------------------------------------- /assets/privacy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/privacy.svg -------------------------------------------------------------------------------- /assets/private-group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/private-group.svg -------------------------------------------------------------------------------- /assets/public.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/public.svg -------------------------------------------------------------------------------- /assets/record-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/record-icon.svg -------------------------------------------------------------------------------- /assets/reduce-size.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/reduce-size.svg -------------------------------------------------------------------------------- /assets/right-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/right-arrow.svg -------------------------------------------------------------------------------- /assets/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/search.png -------------------------------------------------------------------------------- /assets/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/search.svg -------------------------------------------------------------------------------- /assets/side-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/side-arrow.svg -------------------------------------------------------------------------------- /assets/smileys.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/smileys.svg -------------------------------------------------------------------------------- /assets/start-chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/start-chat.svg -------------------------------------------------------------------------------- /assets/start-conversation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/start-conversation.svg -------------------------------------------------------------------------------- /assets/stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/stop.svg -------------------------------------------------------------------------------- /assets/symbols.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/symbols.svg -------------------------------------------------------------------------------- /assets/thread-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/thread-arrow.svg -------------------------------------------------------------------------------- /assets/thread-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/thread-icon.svg -------------------------------------------------------------------------------- /assets/threadIndicatorIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/threadIndicatorIcon.svg -------------------------------------------------------------------------------- /assets/threadicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/threadicon.svg -------------------------------------------------------------------------------- /assets/translation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/translation.svg -------------------------------------------------------------------------------- /assets/travel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/travel.svg -------------------------------------------------------------------------------- /assets/unsafe-content.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/unsafe-content.svg -------------------------------------------------------------------------------- /assets/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/user.svg -------------------------------------------------------------------------------- /assets/video-upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/video-upload.svg -------------------------------------------------------------------------------- /assets/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/video.svg -------------------------------------------------------------------------------- /assets/wait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/wait.png -------------------------------------------------------------------------------- /assets/wait.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/wait.svg -------------------------------------------------------------------------------- /assets/warning-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/warning-small.png -------------------------------------------------------------------------------- /assets/warning-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/assets/warning-small.svg -------------------------------------------------------------------------------- /cometchat-chat-uikit-angular.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/cometchat-chat-uikit-angular.d.ts -------------------------------------------------------------------------------- /esm2020/AI/AIAssistBot/AIAssistBot.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/AI/AIAssistBot/AIAssistBot.mjs -------------------------------------------------------------------------------- /esm2020/AI/AIAssistBot/AIAssistBotDecorator.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/AI/AIAssistBot/AIAssistBotDecorator.mjs -------------------------------------------------------------------------------- /esm2020/AI/AIConversationStarter/AIConversationStarter.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/AI/AIConversationStarter/AIConversationStarter.mjs -------------------------------------------------------------------------------- /esm2020/AI/AIConversationStarter/AIConversationStarterDecorator.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/AI/AIConversationStarter/AIConversationStarterDecorator.mjs -------------------------------------------------------------------------------- /esm2020/AI/AIConversationSummary/AIConversationSummary.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/AI/AIConversationSummary/AIConversationSummary.mjs -------------------------------------------------------------------------------- /esm2020/AI/AIConversationSummary/AIConversationSummaryDecorator.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/AI/AIConversationSummary/AIConversationSummaryDecorator.mjs -------------------------------------------------------------------------------- /esm2020/AI/AISmartReplies/AISmartReplies.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/AI/AISmartReplies/AISmartReplies.mjs -------------------------------------------------------------------------------- /esm2020/AI/AISmartReplies/AISmartRepliesDecorator.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/AI/AISmartReplies/AISmartRepliesDecorator.mjs -------------------------------------------------------------------------------- /esm2020/Calls/CallingExtension.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Calls/CallingExtension.mjs -------------------------------------------------------------------------------- /esm2020/Calls/CallingExtensionDecorator.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Calls/CallingExtensionDecorator.mjs -------------------------------------------------------------------------------- /esm2020/Calls/CometChatCallButtons/cometchat-call-buttons.module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Calls/CometChatCallButtons/cometchat-call-buttons.module.mjs -------------------------------------------------------------------------------- /esm2020/Calls/CometChatCallButtons/cometchat-call-buttons/cometchat-call-buttons.component.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Calls/CometChatCallButtons/cometchat-call-buttons/cometchat-call-buttons.component.mjs -------------------------------------------------------------------------------- /esm2020/Calls/CometChatCallLogDetails/cometchat-call-log-details.module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Calls/CometChatCallLogDetails/cometchat-call-log-details.module.mjs -------------------------------------------------------------------------------- /esm2020/Calls/CometChatCallLogDetails/cometchat-call-log-details/cometchat-call-log-details.component.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Calls/CometChatCallLogDetails/cometchat-call-log-details/cometchat-call-log-details.component.mjs -------------------------------------------------------------------------------- /esm2020/Calls/CometChatCallLogHistory/cometchat-call-log-history.module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Calls/CometChatCallLogHistory/cometchat-call-log-history.module.mjs -------------------------------------------------------------------------------- /esm2020/Calls/CometChatCallLogHistory/cometchat-call-log-history/cometchat-call-log-history.component.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Calls/CometChatCallLogHistory/cometchat-call-log-history/cometchat-call-log-history.component.mjs -------------------------------------------------------------------------------- /esm2020/Calls/CometChatCallLogParticipants/cometchat-call-log-participants.module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Calls/CometChatCallLogParticipants/cometchat-call-log-participants.module.mjs -------------------------------------------------------------------------------- /esm2020/Calls/CometChatCallLogParticipants/cometchat-call-log-participants/cometchat-call-log-participants.component.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Calls/CometChatCallLogParticipants/cometchat-call-log-participants/cometchat-call-log-participants.component.mjs -------------------------------------------------------------------------------- /esm2020/Calls/CometChatCallLogRecordings/cometchat-call-log-recordings.module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Calls/CometChatCallLogRecordings/cometchat-call-log-recordings.module.mjs -------------------------------------------------------------------------------- /esm2020/Calls/CometChatCallLogRecordings/cometchat-call-log-recordings/cometchat-call-log-recordings.component.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Calls/CometChatCallLogRecordings/cometchat-call-log-recordings/cometchat-call-log-recordings.component.mjs -------------------------------------------------------------------------------- /esm2020/Calls/CometChatCallLogs/cometchat-call-logs.module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Calls/CometChatCallLogs/cometchat-call-logs.module.mjs -------------------------------------------------------------------------------- /esm2020/Calls/CometChatCallLogs/cometchat-call-logs/cometchat-call-logs.component.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Calls/CometChatCallLogs/cometchat-call-logs/cometchat-call-logs.component.mjs -------------------------------------------------------------------------------- /esm2020/Calls/CometChatCallLogsWithDetails/cometchat-call-logs-with-details.module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Calls/CometChatCallLogsWithDetails/cometchat-call-logs-with-details.module.mjs -------------------------------------------------------------------------------- /esm2020/Calls/CometChatCallLogsWithDetails/cometchat-call-logs-with-details/cometchat-call-logs-with-details.component.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Calls/CometChatCallLogsWithDetails/cometchat-call-logs-with-details/cometchat-call-logs-with-details.component.mjs -------------------------------------------------------------------------------- /esm2020/Calls/CometChatIncomingCall/cometchat-incoming-call.module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Calls/CometChatIncomingCall/cometchat-incoming-call.module.mjs -------------------------------------------------------------------------------- /esm2020/Calls/CometChatIncomingCall/cometchat-incoming-call/cometchat-incoming-call.component.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Calls/CometChatIncomingCall/cometchat-incoming-call/cometchat-incoming-call.component.mjs -------------------------------------------------------------------------------- /esm2020/Calls/CometChatOngoingCall/cometchat-ongoing-call.module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Calls/CometChatOngoingCall/cometchat-ongoing-call.module.mjs -------------------------------------------------------------------------------- /esm2020/Calls/CometChatOngoingCall/cometchat-ongoing-call/cometchat-ongoing-call.component.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Calls/CometChatOngoingCall/cometchat-ongoing-call/cometchat-ongoing-call.component.mjs -------------------------------------------------------------------------------- /esm2020/Calls/CometChatOutgoingCall/cometchat-outgoing-call.module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Calls/CometChatOutgoingCall/cometchat-outgoing-call.module.mjs -------------------------------------------------------------------------------- /esm2020/Calls/CometChatOutgoingCall/cometchat-outgoing-call/cometchat-outgoing-call.component.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Calls/CometChatOutgoingCall/cometchat-outgoing-call/cometchat-outgoing-call.component.mjs -------------------------------------------------------------------------------- /esm2020/CometChatAddMembers/cometchat-add-members.module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatAddMembers/cometchat-add-members.module.mjs -------------------------------------------------------------------------------- /esm2020/CometChatAddMembers/cometchat-add-members/cometchat-add-members.component.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatAddMembers/cometchat-add-members/cometchat-add-members.component.mjs -------------------------------------------------------------------------------- /esm2020/CometChatBannedMembers/cometchat-banned-members.module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatBannedMembers/cometchat-banned-members.module.mjs -------------------------------------------------------------------------------- /esm2020/CometChatBannedMembers/cometchat-banned-members/cometchat-banned-members.component.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatBannedMembers/cometchat-banned-members/cometchat-banned-members.component.mjs -------------------------------------------------------------------------------- /esm2020/CometChatContacts/cometchat-contacts.module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatContacts/cometchat-contacts.module.mjs -------------------------------------------------------------------------------- /esm2020/CometChatContacts/cometchat-contacts/cometchat-contacts.component.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatContacts/cometchat-contacts/cometchat-contacts.component.mjs -------------------------------------------------------------------------------- /esm2020/CometChatConversations/cometchat-conversations.module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatConversations/cometchat-conversations.module.mjs -------------------------------------------------------------------------------- /esm2020/CometChatConversations/cometchat-conversations/cometchat-conversations.component.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatConversations/cometchat-conversations/cometchat-conversations.component.mjs -------------------------------------------------------------------------------- /esm2020/CometChatConversationsWithMessages/cometchat-conversations-with-messages.module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatConversationsWithMessages/cometchat-conversations-with-messages.module.mjs -------------------------------------------------------------------------------- /esm2020/CometChatConversationsWithMessages/cometchat-conversations-with-messages/cometchat-conversations-with-messages.component.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatConversationsWithMessages/cometchat-conversations-with-messages/cometchat-conversations-with-messages.component.mjs -------------------------------------------------------------------------------- /esm2020/CometChatDetails/cometchat-details.module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatDetails/cometchat-details.module.mjs -------------------------------------------------------------------------------- /esm2020/CometChatDetails/cometchat-details/cometchat-details.component.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatDetails/cometchat-details/cometchat-details.component.mjs -------------------------------------------------------------------------------- /esm2020/CometChatGroupMembers/cometchat-group-members.module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatGroupMembers/cometchat-group-members.module.mjs -------------------------------------------------------------------------------- /esm2020/CometChatGroupMembers/cometchat-group-members/cometchat-group-members.component.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatGroupMembers/cometchat-group-members/cometchat-group-members.component.mjs -------------------------------------------------------------------------------- /esm2020/CometChatGroups/cometchat-groups.module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatGroups/cometchat-groups.module.mjs -------------------------------------------------------------------------------- /esm2020/CometChatGroups/cometchat-groups/cometchat-groups.component.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatGroups/cometchat-groups/cometchat-groups.component.mjs -------------------------------------------------------------------------------- /esm2020/CometChatGroupsWithMessages/cometchat-groups-with-messages.module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatGroupsWithMessages/cometchat-groups-with-messages.module.mjs -------------------------------------------------------------------------------- /esm2020/CometChatGroupsWithMessages/cometchat-groups-with-messages/cometchat-groups-with-messages.component.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatGroupsWithMessages/cometchat-groups-with-messages/cometchat-groups-with-messages.component.mjs -------------------------------------------------------------------------------- /esm2020/CometChatList/cometchat-list.component.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatList/cometchat-list.component.mjs -------------------------------------------------------------------------------- /esm2020/CometChatList/cometchat-list.module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatList/cometchat-list.module.mjs -------------------------------------------------------------------------------- /esm2020/CometChatMessageBubble/cometchat-message-bubble.module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatMessageBubble/cometchat-message-bubble.module.mjs -------------------------------------------------------------------------------- /esm2020/CometChatMessageBubble/cometchat-message-bubble/cometchat-message-bubble.component.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatMessageBubble/cometchat-message-bubble/cometchat-message-bubble.component.mjs -------------------------------------------------------------------------------- /esm2020/CometChatMessageComposer/cometchat-message-composer.module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatMessageComposer/cometchat-message-composer.module.mjs -------------------------------------------------------------------------------- /esm2020/CometChatMessageComposer/cometchat-message-composer/cometchat-message-composer.component.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatMessageComposer/cometchat-message-composer/cometchat-message-composer.component.mjs -------------------------------------------------------------------------------- /esm2020/CometChatMessageHeader/cometchat-message-header.module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatMessageHeader/cometchat-message-header.module.mjs -------------------------------------------------------------------------------- /esm2020/CometChatMessageHeader/cometchat-message-header/cometchat-message-header.component.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatMessageHeader/cometchat-message-header/cometchat-message-header.component.mjs -------------------------------------------------------------------------------- /esm2020/CometChatMessageInformation/cometchat-message-information.module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatMessageInformation/cometchat-message-information.module.mjs -------------------------------------------------------------------------------- /esm2020/CometChatMessageInformation/cometchat-message-information/cometchat-message-information.component.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatMessageInformation/cometchat-message-information/cometchat-message-information.component.mjs -------------------------------------------------------------------------------- /esm2020/CometChatMessageList/cometchat-message-list.module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatMessageList/cometchat-message-list.module.mjs -------------------------------------------------------------------------------- /esm2020/CometChatMessageList/cometchat-message-list/cometchat-message-list.component.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatMessageList/cometchat-message-list/cometchat-message-list.component.mjs -------------------------------------------------------------------------------- /esm2020/CometChatMessages/cometchat-messages.module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatMessages/cometchat-messages.module.mjs -------------------------------------------------------------------------------- /esm2020/CometChatMessages/cometchat-messages/cometchat-messages.component.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatMessages/cometchat-messages/cometchat-messages.component.mjs -------------------------------------------------------------------------------- /esm2020/CometChatTheme.service.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatTheme.service.mjs -------------------------------------------------------------------------------- /esm2020/CometChatThreadedMessages/cometchat-threaded-messages.module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatThreadedMessages/cometchat-threaded-messages.module.mjs -------------------------------------------------------------------------------- /esm2020/CometChatThreadedMessages/cometchat-threaded-messages/cometchat-threaded-messages.component.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatThreadedMessages/cometchat-threaded-messages/cometchat-threaded-messages.component.mjs -------------------------------------------------------------------------------- /esm2020/CometChatTransferOwnership/cometchat-transfer-ownership.module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatTransferOwnership/cometchat-transfer-ownership.module.mjs -------------------------------------------------------------------------------- /esm2020/CometChatTransferOwnership/cometchat-transfer-ownership/cometchat-transfer-ownership.component.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatTransferOwnership/cometchat-transfer-ownership/cometchat-transfer-ownership.component.mjs -------------------------------------------------------------------------------- /esm2020/CometChatUserMemberWrapper/cometchat-user-member-wrapper.component.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatUserMemberWrapper/cometchat-user-member-wrapper.component.mjs -------------------------------------------------------------------------------- /esm2020/CometChatUserMemberWrapper/cometchat-user-member-wrapper.module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatUserMemberWrapper/cometchat-user-member-wrapper.module.mjs -------------------------------------------------------------------------------- /esm2020/CometChatUsers/cometchat-users.module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatUsers/cometchat-users.module.mjs -------------------------------------------------------------------------------- /esm2020/CometChatUsers/cometchat-users/cometchat-users.component.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatUsers/cometchat-users/cometchat-users.component.mjs -------------------------------------------------------------------------------- /esm2020/CometChatUsersWithMessages/cometchat-users-with-messages.module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatUsersWithMessages/cometchat-users-with-messages.module.mjs -------------------------------------------------------------------------------- /esm2020/CometChatUsersWithMessages/cometchat-users-with-messages/cometchat-users-with-messages.component.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/CometChatUsersWithMessages/cometchat-users-with-messages/cometchat-users-with-messages.component.mjs -------------------------------------------------------------------------------- /esm2020/Extensions/CollaborativeDocument/CollaborativeDocumentExtension.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Extensions/CollaborativeDocument/CollaborativeDocumentExtension.mjs -------------------------------------------------------------------------------- /esm2020/Extensions/CollaborativeDocument/CollaborativeDocumentExtensionDecorator.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Extensions/CollaborativeDocument/CollaborativeDocumentExtensionDecorator.mjs -------------------------------------------------------------------------------- /esm2020/Extensions/CollaborativeWhiteboard/CollaborativeWhiteboardExtension.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Extensions/CollaborativeWhiteboard/CollaborativeWhiteboardExtension.mjs -------------------------------------------------------------------------------- /esm2020/Extensions/CollaborativeWhiteboard/CollaborativeWhiteboardExtensionDecorator.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Extensions/CollaborativeWhiteboard/CollaborativeWhiteboardExtensionDecorator.mjs -------------------------------------------------------------------------------- /esm2020/Extensions/ImageModeration/ImageModerationExtension.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Extensions/ImageModeration/ImageModerationExtension.mjs -------------------------------------------------------------------------------- /esm2020/Extensions/ImageModeration/ImageModerationExtensionDecorator.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Extensions/ImageModeration/ImageModerationExtensionDecorator.mjs -------------------------------------------------------------------------------- /esm2020/Extensions/LinkPreviewExtension/LinkPreviewExtension.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Extensions/LinkPreviewExtension/LinkPreviewExtension.mjs -------------------------------------------------------------------------------- /esm2020/Extensions/LinkPreviewExtension/LinkPreviewExtensionDecorator.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Extensions/LinkPreviewExtension/LinkPreviewExtensionDecorator.mjs -------------------------------------------------------------------------------- /esm2020/Extensions/MessageTranslation/MessageTranslationExtension.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Extensions/MessageTranslation/MessageTranslationExtension.mjs -------------------------------------------------------------------------------- /esm2020/Extensions/MessageTranslation/MessageTranslationExtensionDecorator.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Extensions/MessageTranslation/MessageTranslationExtensionDecorator.mjs -------------------------------------------------------------------------------- /esm2020/Extensions/PollsExtension/PollsExtension.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Extensions/PollsExtension/PollsExtension.mjs -------------------------------------------------------------------------------- /esm2020/Extensions/PollsExtension/PollsExtensionDecorator.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Extensions/PollsExtension/PollsExtensionDecorator.mjs -------------------------------------------------------------------------------- /esm2020/Extensions/SmartReplies/SmartRepliesExtension.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Extensions/SmartReplies/SmartRepliesExtension.mjs -------------------------------------------------------------------------------- /esm2020/Extensions/SmartReplies/SmartRepliesExtensionDecorator.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Extensions/SmartReplies/SmartRepliesExtensionDecorator.mjs -------------------------------------------------------------------------------- /esm2020/Extensions/Stickers/StickersExtension.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Extensions/Stickers/StickersExtension.mjs -------------------------------------------------------------------------------- /esm2020/Extensions/Stickers/StickersExtensionDecorator.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Extensions/Stickers/StickersExtensionDecorator.mjs -------------------------------------------------------------------------------- /esm2020/Extensions/TextModerator/TextModeratorExtension.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Extensions/TextModerator/TextModeratorExtension.mjs -------------------------------------------------------------------------------- /esm2020/Extensions/TextModerator/TextModeratorExtensionDecorator.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Extensions/TextModerator/TextModeratorExtensionDecorator.mjs -------------------------------------------------------------------------------- /esm2020/Extensions/ThumbnailGeneration/ThumbnailGenerationExtension.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Extensions/ThumbnailGeneration/ThumbnailGenerationExtension.mjs -------------------------------------------------------------------------------- /esm2020/Extensions/ThumbnailGeneration/ThumbnailGenerationExtensionDecorator.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Extensions/ThumbnailGeneration/ThumbnailGenerationExtensionDecorator.mjs -------------------------------------------------------------------------------- /esm2020/Shared/CometChatUIkit/CometChatUIKit.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Shared/CometChatUIkit/CometChatUIKit.mjs -------------------------------------------------------------------------------- /esm2020/Shared/Framework/AIExtensionDataSource.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Shared/Framework/AIExtensionDataSource.mjs -------------------------------------------------------------------------------- /esm2020/Shared/Framework/ChatConfigurator.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Shared/Framework/ChatConfigurator.mjs -------------------------------------------------------------------------------- /esm2020/Shared/Framework/DataSource.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Shared/Framework/DataSource.mjs -------------------------------------------------------------------------------- /esm2020/Shared/Framework/DataSourceDecorator.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Shared/Framework/DataSourceDecorator.mjs -------------------------------------------------------------------------------- /esm2020/Shared/Framework/ExtensionDataSource.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Shared/Framework/ExtensionDataSource.mjs -------------------------------------------------------------------------------- /esm2020/Shared/Utils/CallDetailUtils.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Shared/Utils/CallDetailUtils.mjs -------------------------------------------------------------------------------- /esm2020/Shared/Utils/CallLogUtils.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Shared/Utils/CallLogUtils.mjs -------------------------------------------------------------------------------- /esm2020/Shared/Utils/ComeChatException.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Shared/Utils/ComeChatException.mjs -------------------------------------------------------------------------------- /esm2020/Shared/Utils/MessageUtils.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Shared/Utils/MessageUtils.mjs -------------------------------------------------------------------------------- /esm2020/Shared/Utils/UtilityFunctions.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Shared/Utils/UtilityFunctions.mjs -------------------------------------------------------------------------------- /esm2020/Shared/Views/AIAssistBotMessageList/aiassist-bot-message-list.module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Shared/Views/AIAssistBotMessageList/aiassist-bot-message-list.module.mjs -------------------------------------------------------------------------------- /esm2020/Shared/Views/AIAssistBotMessageList/aiassist-bot-message-list/aiassist-bot-message-list.component.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Shared/Views/AIAssistBotMessageList/aiassist-bot-message-list/aiassist-bot-message-list.component.mjs -------------------------------------------------------------------------------- /esm2020/Shared/Views/CometChatTabs/cometchat-tabs.module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Shared/Views/CometChatTabs/cometchat-tabs.module.mjs -------------------------------------------------------------------------------- /esm2020/Shared/Views/CometChatTabs/cometchat-tabs/cometchat-tabs.component.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/Shared/Views/CometChatTabs/cometchat-tabs/cometchat-tabs.component.mjs -------------------------------------------------------------------------------- /esm2020/cometchat-chat-uikit-angular.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/cometchat-chat-uikit-angular.mjs -------------------------------------------------------------------------------- /esm2020/public-api.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/esm2020/public-api.mjs -------------------------------------------------------------------------------- /examples/sample-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/examples/sample-app/README.md -------------------------------------------------------------------------------- /fesm2015/cometchat-chat-uikit-angular.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/fesm2015/cometchat-chat-uikit-angular.mjs -------------------------------------------------------------------------------- /fesm2015/cometchat-chat-uikit-angular.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/fesm2015/cometchat-chat-uikit-angular.mjs.map -------------------------------------------------------------------------------- /fesm2020/cometchat-chat-uikit-angular.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/fesm2020/cometchat-chat-uikit-angular.mjs -------------------------------------------------------------------------------- /fesm2020/cometchat-chat-uikit-angular.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/fesm2020/cometchat-chat-uikit-angular.mjs.map -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/package.json -------------------------------------------------------------------------------- /public-api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-angular/HEAD/public-api.d.ts --------------------------------------------------------------------------------