vrfi-design-system 1.1.77 → 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 CHANGED
@@ -828,6 +828,25 @@ export declare interface NotificationCardProps extends HTMLAttributes<HTMLDivEle
828
828
  avatarNames: string[];
829
829
  }
830
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
+
831
850
  export { NotificationTypes }
832
851
 
833
852
  export declare const Offline: ({ children, }: PropsWithChildren<OfflineProps>) => default_2.JSX.Element;