vrfi-design-system 1.1.28 → 1.1.30

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
@@ -309,7 +309,7 @@ export declare interface CheckboxProps {
309
309
  maxRows?: number;
310
310
  }
311
311
 
312
- export declare const CheckboxSelectField: ({ name, label, options, selectedOptions, handleCheckboxChange, className, size, type, required, customInput, ...props }: CheckboxSelectFieldProps) => default_2.JSX.Element;
312
+ export declare const CheckboxSelectField: ({ name, label, options, handleCheckboxChange, className, size, type, required, customInput, ...props }: CheckboxSelectFieldProps) => default_2.JSX.Element;
313
313
 
314
314
  export declare interface CheckboxSelectFieldProps extends SelectPropsBase {
315
315
  selectedOptions?: (string | number)[];
@@ -769,8 +769,8 @@ export declare const PopoverIconCard: (props: PopoverIconCardProps) => default_2
769
769
  export declare interface PopoverIconCardProps {
770
770
  title: string;
771
771
  text: string;
772
- editIconClick?: () => void;
773
- deleteIconClick?: () => void;
772
+ editIconClick?: (e: MouseEvent_2<HTMLElement>) => void;
773
+ deleteIconClick?: (e: MouseEvent_2<HTMLElement>) => void;
774
774
  icon?: Icons_2;
775
775
  className?: string;
776
776
  }
@@ -805,6 +805,15 @@ export declare interface PreviewDocumentsCardProps {
805
805
  fileUrl?: string;
806
806
  }
807
807
 
808
+ export declare const PreviewModal: (props: PreviewModalProps) => default_2.JSX.Element;
809
+
810
+ export declare interface PreviewModalProps {
811
+ visible: boolean;
812
+ toggleVisiblity: () => void;
813
+ fileName: string;
814
+ url: string;
815
+ }
816
+
808
817
  export declare function ProfileAssignedCard({ name }: ProfileAssignedCardProps): default_2.JSX.Element;
809
818
 
810
819
  export declare interface ProfileAssignedCardProps {