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