vrfi-design-system 1.1.76 → 1.1.78
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 +2 -0
- package/dist/main.es.js +6197 -6196
- package/dist/main.umd.js +96 -96
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -314,6 +314,7 @@ declare interface ChatDetailsProps {
|
|
|
314
314
|
onMessageChange: (e: default_2.ChangeEvent<HTMLInputElement>) => void;
|
|
315
315
|
onSendMessage: () => void;
|
|
316
316
|
userType: UserType_3;
|
|
317
|
+
senderId?: number;
|
|
317
318
|
}
|
|
318
319
|
|
|
319
320
|
export declare const ChatList: <T extends GenericChatShape>({ chats, onChatClick, selectedChat, userType, }: ChatListProps<T>) => default_2.JSX.Element;
|
|
@@ -761,6 +762,7 @@ declare interface LooseMessage {
|
|
|
761
762
|
senderType?: string;
|
|
762
763
|
body?: string;
|
|
763
764
|
createdAt?: string;
|
|
765
|
+
senderId?: number;
|
|
764
766
|
}
|
|
765
767
|
|
|
766
768
|
export { Menu }
|