@webitel/ui-chats 0.1.14 → 0.1.16

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webitel/ui-chats",
3
- "version": "0.1.14",
3
+ "version": "0.1.16",
4
4
  "description": "Reusable Webitel Frontend Code for Chats UI",
5
5
  "workspaces": [
6
6
  "../../",
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <section class="the-chat-container">
3
- <media-viewer
3
+ <image-viewer
4
4
  :media="mediaView"
5
5
  @close="closeMedia"
6
6
  />
@@ -59,7 +59,7 @@ import {
59
59
  ChatAction,
60
60
  type SharedActionSlots,
61
61
  } from './chat-footer/modules/user-input/enums/ChatAction.enum';
62
- import MediaViewer from './media-viewer/media-viewer.vue';
62
+ import ImageViewer from './image-viewer/image-viewer.vue';
63
63
  import Dropzone from './messaging/components/dropzone.vue';
64
64
  import MessagesContainer from './messaging/components/the-messages-container.vue';
65
65
  import { useDropzoneHandlers } from './messaging/composables/useDropzoneHandlers';
@@ -0,0 +1,11 @@
1
+ import type { ChatMessageFile } from '../messaging/types/ChatMessage.types';
2
+ type __VLS_Props = {
3
+ media: ChatMessageFile | null;
4
+ };
5
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
+ close: () => any;
7
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
8
+ onClose?: () => any;
9
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
10
+ declare const _default: typeof __VLS_export;
11
+ export default _default;