vrfi-design-system 1.1.46 → 1.1.48

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
@@ -330,14 +330,13 @@ declare interface CheckBoxWithFormWrapperProps {
330
330
  disabled?: boolean;
331
331
  indeterminate?: boolean;
332
332
  group?: boolean;
333
- onCheckboxChange?: (event: string | number | boolean | (string | number)[] | null) => void;
333
+ onCheckboxChange?: (event: string | number | boolean | (string | number)[] | null, unchecked?: string | number) => void;
334
334
  options?: (CheckboxOptionType | string | number)[];
335
335
  name: string;
336
336
  className?: string;
337
337
  singleSelectionMode?: boolean;
338
338
  customOptionDisplay?: boolean;
339
339
  defaultValue?: boolean;
340
- value?: string | number | boolean | (string | number)[] | null;
341
340
  }
342
341
 
343
342
  export { Col }
@@ -735,6 +734,15 @@ export declare interface NoRecordsProps {
735
734
  declare const Notification_2: ({ message, description, type, }: INotification) => unknown;
736
735
  export { Notification_2 as Notification }
737
736
 
737
+ export declare const NotificationCard: (props: NotificationCardProps) => default_2.JSX.Element;
738
+
739
+ export declare interface NotificationCardProps extends HTMLAttributes<HTMLDivElement> {
740
+ title: string;
741
+ description: string;
742
+ createdAt: string;
743
+ avatarNames: string[];
744
+ }
745
+
738
746
  export { NotificationTypes }
739
747
 
740
748
  export declare const Offline: ({ children, }: PropsWithChildren<OfflineProps>) => default_2.JSX.Element;