From 9cd24170c12fed5fdb164251708ea2bc664a5648 Mon Sep 17 00:00:00 2001 From: aaliya-shaikh Date: Fri, 6 Jan 2023 13:26:25 +0530 Subject: [PATCH 1/4] Updating GroupsWithMessages style file --- src/components/Groups/CometChatGroupsWithMessages/style.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Groups/CometChatGroupsWithMessages/style.js b/src/components/Groups/CometChatGroupsWithMessages/style.js index ca88a566..37f15136 100644 --- a/src/components/Groups/CometChatGroupsWithMessages/style.js +++ b/src/components/Groups/CometChatGroupsWithMessages/style.js @@ -1,5 +1,5 @@ import { fontHelper } from "../../Shared"; -import { JoinProtectedGroupStyles } from "../CometChatJoinProtectedGroup/JoinProtectedGroupsStyle"; +import { JoinProtectedGroupStyles } from "../CometChatJoinProtectedGroup/JoinProtectedGroupsStyles"; export const chatScreenStyle = (style) => { return { display: "flex", From e23bf10ff157362959720581dc97c19456dc1bbf Mon Sep 17 00:00:00 2001 From: aaliya-shaikh Date: Fri, 6 Jan 2023 13:48:02 +0530 Subject: [PATCH 2/4] Updating joinProtectedGroupStyle typo in GroupsWithMessages --- src/components/Groups/CometChatGroupsWithMessages/style.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Groups/CometChatGroupsWithMessages/style.js b/src/components/Groups/CometChatGroupsWithMessages/style.js index 37f15136..dbb68e5b 100644 --- a/src/components/Groups/CometChatGroupsWithMessages/style.js +++ b/src/components/Groups/CometChatGroupsWithMessages/style.js @@ -1,5 +1,5 @@ import { fontHelper } from "../../Shared"; -import { JoinProtectedGroupStyles } from "../CometChatJoinProtectedGroup/JoinProtectedGroupsStyles"; +import { JoinProtectedGroupStyle } from "../CometChatJoinProtectedGroup/JoinProtectedGroupsStyle"; export const chatScreenStyle = (style) => { return { display: "flex", @@ -11,7 +11,7 @@ export const chatScreenStyle = (style) => { }; export const joinProtectedGroupStyles = (theme, joinGroupConfiguration) => { - return new JoinProtectedGroupStyles({ + return new JoinProtectedGroupStyle({ width: joinGroupConfiguration?.style?.width || "100%", height: joinGroupConfiguration?.style?.height || "100%", boxShadow: From 71403de861261e4a1c1c3edc34bf1e5a03ba5617 Mon Sep 17 00:00:00 2001 From: aaliya-shaikh Date: Fri, 6 Jan 2023 13:58:36 +0530 Subject: [PATCH 3/4] UPdating ConversationListItemStyle.js filename --- ...ConversationListItemStyles.js => ConversationListItemStyle.js} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename src/components/Shared/SDKDerivedComponents/CometChatConversationListItem/{ConversationListItemStyles.js => ConversationListItemStyle.js} (100%) diff --git a/src/components/Shared/SDKDerivedComponents/CometChatConversationListItem/ConversationListItemStyles.js b/src/components/Shared/SDKDerivedComponents/CometChatConversationListItem/ConversationListItemStyle.js similarity index 100% rename from src/components/Shared/SDKDerivedComponents/CometChatConversationListItem/ConversationListItemStyles.js rename to src/components/Shared/SDKDerivedComponents/CometChatConversationListItem/ConversationListItemStyle.js From a56acf9bbe957ca5031ee16ed3060079dd023c8b Mon Sep 17 00:00:00 2001 From: aaliya-shaikh Date: Fri, 6 Jan 2023 14:23:01 +0530 Subject: [PATCH 4/4] Fixing import errors --- ...sWithMessagesStyles.js => ConversationsWithMessagesStyle.js} | 0 src/components/Chats/index.js | 2 +- .../{LiveReactionStyle.js => LiveReactionsStyle.js} | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename src/components/Chats/CometChatConversationsWithMessages/{ConversationsWithMessagesStyles.js => ConversationsWithMessagesStyle.js} (100%) rename src/components/Messages/CometChatLiveReactions/{LiveReactionStyle.js => LiveReactionsStyle.js} (100%) diff --git a/src/components/Chats/CometChatConversationsWithMessages/ConversationsWithMessagesStyles.js b/src/components/Chats/CometChatConversationsWithMessages/ConversationsWithMessagesStyle.js similarity index 100% rename from src/components/Chats/CometChatConversationsWithMessages/ConversationsWithMessagesStyles.js rename to src/components/Chats/CometChatConversationsWithMessages/ConversationsWithMessagesStyle.js diff --git a/src/components/Chats/index.js b/src/components/Chats/index.js index d8536daa..7916afe1 100644 --- a/src/components/Chats/index.js +++ b/src/components/Chats/index.js @@ -17,7 +17,7 @@ import { ConversationListStyle } from "./CometChatConversationList/ConversationL * Configurations */ import { ConversationsConfiguration } from "./CometChatConversations/ConversationsConfiguration"; -import { ConversationsWithMessagesConfiguration } from "./CometChatConversationsWithMessages/ConversationsWithMessagesConfiguration"; +import { ConversationsWithMessagesConfiguration } from "./CometChatConversationsWithMessages/ConversationswithMessagesConfiguration"; import { ConversationListConfiguration } from "./CometChatConversationList/ConversationListConfiguration"; export { diff --git a/src/components/Messages/CometChatLiveReactions/LiveReactionStyle.js b/src/components/Messages/CometChatLiveReactions/LiveReactionsStyle.js similarity index 100% rename from src/components/Messages/CometChatLiveReactions/LiveReactionStyle.js rename to src/components/Messages/CometChatLiveReactions/LiveReactionsStyle.js