vrfi-design-system 1.2.42 → 1.2.44

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/dist/index.d.ts CHANGED
@@ -73,6 +73,7 @@ import { LoaderSizes } from '../../../enums/LoaderSizes';
73
73
  import { Menu } from 'antd';
74
74
  import { MenuMode } from '../../enums/menuMode';
75
75
  import { MenuProps } from 'antd/lib';
76
+ import { MessageType } from '../../../../enums/messageType.enum';
76
77
  import { MobileInputValue } from '../types/mobileInputValue.type';
77
78
  import { MobileInputValue as MobileInputValue_2 } from '../../../types/mobileInputValue.type';
78
79
  import { ModalProps as ModalProps_2 } from 'antd/lib/modal';
@@ -334,6 +335,14 @@ export declare interface CardWithIconAndTextProps {
334
335
  subHeading: string;
335
336
  }
336
337
 
338
+ export declare const ChatAttachment: ({ attachmentLink, attachmentName, isLoading, }: ChatAttachmentProps) => default_2.JSX.Element;
339
+
340
+ export declare interface ChatAttachmentProps {
341
+ attachmentLink: string;
342
+ attachmentName: string;
343
+ isLoading?: boolean;
344
+ }
345
+
337
346
  export declare const ChatDetails: default_2.FC<ChatDetailsProps>;
338
347
 
339
348
  declare interface ChatDetailsProps {
@@ -821,6 +830,7 @@ declare interface LooseMessage {
821
830
  senderDetails?: SenderDetails;
822
831
  attachmentName?: string;
823
832
  attachmentUrl?: string;
833
+ messageType?: MessageType;
824
834
  }
825
835
 
826
836
  export { Menu }