vrfi-design-system 1.1.42 → 1.1.43

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
@@ -323,7 +323,7 @@ export declare interface CheckboxSelectFieldProps extends SelectPropsBase {
323
323
  handleCheckboxChange?: (value: string) => void;
324
324
  }
325
325
 
326
- export declare const CheckBoxWithFormWrapper: ({ name, onCheckboxChange, group, children, singleSelectionMode, customOptionDisplay, options, defaultValue, value: controlledValue, ...props }: CheckBoxWithFormWrapperProps) => default_2.JSX.Element;
326
+ export declare const CheckBoxWithFormWrapper: ({ name, onCheckboxChange, group, children, singleSelectionMode, customOptionDisplay, options, defaultValue, ...props }: CheckBoxWithFormWrapperProps) => default_2.JSX.Element;
327
327
 
328
328
  declare interface CheckBoxWithFormWrapperProps {
329
329
  children?: default_2.ReactNode;
@@ -337,7 +337,6 @@ declare interface CheckBoxWithFormWrapperProps {
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;