vrfi-design-system 1.1.78 → 1.1.79
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 +19 -2
- package/dist/main.es.js +12319 -12240
- package/dist/main.umd.js +101 -101
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -314,7 +314,6 @@ declare interface ChatDetailsProps {
|
|
|
314
314
|
onMessageChange: (e: default_2.ChangeEvent<HTMLInputElement>) => void;
|
|
315
315
|
onSendMessage: () => void;
|
|
316
316
|
userType: UserType_3;
|
|
317
|
-
senderId?: number;
|
|
318
317
|
}
|
|
319
318
|
|
|
320
319
|
export declare const ChatList: <T extends GenericChatShape>({ chats, onChatClick, selectedChat, userType, }: ChatListProps<T>) => default_2.JSX.Element;
|
|
@@ -762,7 +761,6 @@ declare interface LooseMessage {
|
|
|
762
761
|
senderType?: string;
|
|
763
762
|
body?: string;
|
|
764
763
|
createdAt?: string;
|
|
765
|
-
senderId?: number;
|
|
766
764
|
}
|
|
767
765
|
|
|
768
766
|
export { Menu }
|
|
@@ -830,6 +828,25 @@ export declare interface NotificationCardProps extends HTMLAttributes<HTMLDivEle
|
|
|
830
828
|
avatarNames: string[];
|
|
831
829
|
}
|
|
832
830
|
|
|
831
|
+
export declare interface NotificationData {
|
|
832
|
+
title?: string;
|
|
833
|
+
timeStamp?: string;
|
|
834
|
+
description?: string;
|
|
835
|
+
icon?: string;
|
|
836
|
+
onAccept?: () => void;
|
|
837
|
+
onReject?: () => void;
|
|
838
|
+
onApply?: () => void;
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
export declare const NotificationPanel: default_2.FC<NotificationPanelProps>;
|
|
842
|
+
|
|
843
|
+
export declare interface NotificationPanelProps {
|
|
844
|
+
onClose: () => void;
|
|
845
|
+
data: NotificationData[];
|
|
846
|
+
title?: string;
|
|
847
|
+
visible: boolean;
|
|
848
|
+
}
|
|
849
|
+
|
|
833
850
|
export { NotificationTypes }
|
|
834
851
|
|
|
835
852
|
export declare const Offline: ({ children, }: PropsWithChildren<OfflineProps>) => default_2.JSX.Element;
|