vrfi-design-system 1.2.1 → 1.2.3

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
@@ -756,10 +756,6 @@ export declare interface LoaderProps {
756
756
 
757
757
  declare interface LooseChat {
758
758
  chatType?: string;
759
- participantDetails?: {
760
- name?: string;
761
- profileUrl?: string;
762
- };
763
759
  messages?: LooseMessage[];
764
760
  }
765
761
 
@@ -769,6 +765,7 @@ declare interface LooseMessage {
769
765
  body?: string;
770
766
  createdAt?: string;
771
767
  senderId?: number;
768
+ senderDetails?: SenderDetails;
772
769
  }
773
770
 
774
771
  export { Menu }
@@ -1091,6 +1088,16 @@ declare interface SelectPropsBase extends SelectProps {
1091
1088
 
1092
1089
  export { SelectType }
1093
1090
 
1091
+ declare interface SenderDetails {
1092
+ displayPictureUrl?: string;
1093
+ fullName?: string;
1094
+ senderId?: number;
1095
+ senderType?: string;
1096
+ email?: string;
1097
+ id?: number;
1098
+ userName?: string;
1099
+ }
1100
+
1094
1101
  export declare const Sidebar: default_2.FC<SidebarProps>;
1095
1102
 
1096
1103
  export { SidebarMenuProps }