@bcc-code/vue-bcc-chat-ui 5.2.3 → 5.2.5

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": "5.2.3",
5
+ "version": "5.2.5",
6
6
  "type": "module",
7
7
  "private": false,
8
8
  "files": [
@@ -1,7 +1,8 @@
1
1
  <script setup lang="ts">
2
+ import { MediaMessage } from '@cometchat/chat-sdk-javascript';
3
+ import { CometChatImageBubble } from '@cometchat/chat-uikit-vue';
2
4
  import { ref } from 'vue';
3
5
  import BccCometChatFullScreenViewer from './BccCometChatFullScreenViewer.vue';
4
- import { MediaMessage } from '@cometchat/chat-sdk-javascript';
5
6
 
6
7
 
7
8
  const props = defineProps({
@@ -63,7 +64,7 @@ function closeImageInFullScreen() {
63
64
  <div class="placeholder" v-if="imgDimensions != undefined" :class="{ 'landscape': isLandscape }" :style="{ 'aspect-ratio': aspectRatio }">
64
65
  <img :src="isLandscape ? wideThinTransparentImage : height300pxImage" />
65
66
  </div>
66
- <cometchat-image-bubble
67
+ <CometChatImageBubble
67
68
  :src="props.src"
68
69
  :placeholderImage="imgDimensions ? onePixelPlaceholderImage : props.placeholderImage"
69
70
  :imageStyle="imageStyle"