vrfi-design-system 1.1.67 → 1.1.68

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
@@ -1238,13 +1238,14 @@ export { Typography }
1238
1238
 
1239
1239
  export { TypographyProps }
1240
1240
 
1241
- export declare const Upload: ({ name, onChange, showUploadList, supportedFileType, ...rest }: UploadBaseProps) => default_2.JSX.Element;
1241
+ export declare const Upload: ({ name, onChange, showUploadList, supportedFileType, multiple, ...rest }: UploadBaseProps) => default_2.JSX.Element;
1242
1242
 
1243
1243
  export declare interface UploadBaseProps extends CustomUploadProps {
1244
1244
  name: string;
1245
1245
  required?: boolean;
1246
1246
  showUploadList?: boolean;
1247
1247
  uploadInputType?: UploadInputTypes_2;
1248
+ multiple?: boolean;
1248
1249
  }
1249
1250
 
1250
1251
  export declare interface UploadBasePropsForDropdown extends CustomDropDownFileUploadProps {