vrfi-design-system 1.0.48 → 1.0.50

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
@@ -392,7 +392,7 @@ export declare const InputField: ({ label, type, placeholder, prefix, required,
392
392
 
393
393
  export { InputTypes }
394
394
 
395
- export declare const InputWithCountry: ({ label, type, ...rest }: CustomInputProps & InputProps_2) => default_2.JSX.Element;
395
+ export declare const InputWithCountry: ({ label, type, required, ...rest }: CustomInputProps & InputProps_2) => default_2.JSX.Element;
396
396
 
397
397
  export { JobTypeEnum }
398
398
 
@@ -730,11 +730,12 @@ declare interface TooltipProps {
730
730
  children: JSX_2.Element;
731
731
  }
732
732
 
733
- export declare const Upload: ({ name, onChange, ...rest }: UploadBaseProps) => default_2.JSX.Element;
733
+ export declare const Upload: ({ name, onChange, showUploadList, ...rest }: UploadBaseProps) => default_2.JSX.Element;
734
734
 
735
735
  export declare interface UploadBaseProps extends CustomUploadProps {
736
736
  name: string;
737
737
  required?: boolean;
738
+ showUploadList?: boolean;
738
739
  }
739
740
 
740
741
  export declare interface UploadBasePropsForDropdown extends CustomDropDownFileUploadProps {