@bcc-code/vue-bcc-chat-ui 3.16.0 → 3.17.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@bcc-code/vue-bcc-chat-ui",
3
3
  "author": "bcc-code",
4
4
  "license": "Apache-2.0",
5
- "version": "3.16.0",
5
+ "version": "3.17.1",
6
6
  "type": "module",
7
7
  "private": false,
8
8
  "files": [
@@ -28,7 +28,7 @@ import BccChatSendButton from "./BccChatSendButton.vue";
28
28
 
29
29
  const props = defineProps({
30
30
  chatUid: { type: String, required: true },
31
- senderDisplayName: { type: String, required: false }
31
+ senderDisplayName: { type: String, required: false },
32
32
  });
33
33
 
34
34
  const componentId = ref(
@@ -46,7 +46,6 @@ const messageComposerConfiguration = getMessageComposerConfiguration(chatInstanc
46
46
  const messageListConfiguration = getMessageListConfiguration(chatInstance, chatGroup);
47
47
  const threadedMessagesConfiguration = getThreadedMessagesConfiguration(chatGroup);
48
48
  threadedMessagesConfiguration.messageComposerConfiguration = messageComposerConfiguration.value;
49
-
50
49
  provide("chatInstance", chatInstance);
51
50
 
52
51
  const onMessageSend = CometChatMessageEvents.ccMessageSent.subscribe(({ message, status }) => {