vrfi-design-system 1.1.46 → 1.1.47
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 +9 -0
- package/dist/main.es.js +9787 -9770
- package/dist/main.umd.js +115 -115
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -735,6 +735,15 @@ export declare interface NoRecordsProps {
|
|
|
735
735
|
declare const Notification_2: ({ message, description, type, }: INotification) => unknown;
|
|
736
736
|
export { Notification_2 as Notification }
|
|
737
737
|
|
|
738
|
+
export declare const NotificationCard: (props: NotificationCardProps) => default_2.JSX.Element;
|
|
739
|
+
|
|
740
|
+
export declare interface NotificationCardProps extends HTMLAttributes<HTMLDivElement> {
|
|
741
|
+
title: string;
|
|
742
|
+
description: string;
|
|
743
|
+
createdAt: string;
|
|
744
|
+
avatarNames: string[];
|
|
745
|
+
}
|
|
746
|
+
|
|
738
747
|
export { NotificationTypes }
|
|
739
748
|
|
|
740
749
|
export declare const Offline: ({ children, }: PropsWithChildren<OfflineProps>) => default_2.JSX.Element;
|