vrfi-design-system 1.2.39 → 1.2.41
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 +3690 -3662
- package/dist/main.umd.js +74 -74
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -343,6 +343,7 @@ declare interface ChatDetailsProps {
|
|
|
343
343
|
onMessageChange: (e: default_2.ChangeEvent<HTMLInputElement>) => void;
|
|
344
344
|
onSendMessage: () => void;
|
|
345
345
|
userType: UserType_3;
|
|
346
|
+
onAttachmentClick?: () => void;
|
|
346
347
|
}
|
|
347
348
|
|
|
348
349
|
export declare const ChatList: <T extends GenericChatShape>({ chats, onChatClick, selectedChat, userType, }: ChatListProps<T>) => default_2.JSX.Element;
|
|
@@ -980,6 +981,7 @@ declare interface PreviewCardProps {
|
|
|
980
981
|
canUpload?: boolean;
|
|
981
982
|
handleUploadClick?: (fileName: string) => void;
|
|
982
983
|
handleExpiryEdit?: () => void;
|
|
984
|
+
openOnNameClick?: boolean;
|
|
983
985
|
}
|
|
984
986
|
|
|
985
987
|
export declare const PreviewDocumentsCard: default_2.FC<PreviewDocumentsCardProps>;
|