vrfi-design-system 1.1.67 → 1.1.69
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 +7 -2
- package/dist/main.es.js +2289 -2281
- package/dist/main.umd.js +51 -51
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -417,6 +417,8 @@ declare interface CustomDropDownFileUploadProps extends Omit<UploadProps_2, "onC
|
|
|
417
417
|
required?: boolean;
|
|
418
418
|
loading?: boolean;
|
|
419
419
|
uploadInputType?: UploadInputTypes_2;
|
|
420
|
+
primaryUploadText?: string;
|
|
421
|
+
secondaryUploadText?: string;
|
|
420
422
|
}
|
|
421
423
|
|
|
422
424
|
export declare interface CustomInputProps {
|
|
@@ -476,6 +478,8 @@ declare interface CustomUploadProps extends Omit<UploadProps, "onChange"> {
|
|
|
476
478
|
docNamingConvention?: string;
|
|
477
479
|
documentTypes?: string;
|
|
478
480
|
labelTitle?: string;
|
|
481
|
+
primaryUploadText?: string;
|
|
482
|
+
secondaryUploadText?: string;
|
|
479
483
|
}
|
|
480
484
|
|
|
481
485
|
export declare const DashboardCard: (props: DashboardCardProps) => default_2.JSX.Element;
|
|
@@ -584,7 +588,7 @@ export declare interface FileUploadProps {
|
|
|
584
588
|
handleChange: (file: FileList | UploadFile) => void;
|
|
585
589
|
}
|
|
586
590
|
|
|
587
|
-
export declare const FileUploadWithDropdown: ({ loading, required, selectLabel, dropdownName, dropdownOptions, className, onChange, maxFileSize, uploadTitle, uploadIcon, supportedFileType, uploadInputType, ...propsDragDrop }: CustomDropDownFileUploadProps) => default_2.JSX.Element;
|
|
591
|
+
export declare const FileUploadWithDropdown: ({ loading, required, selectLabel, dropdownName, dropdownOptions, className, onChange, maxFileSize, uploadTitle, uploadIcon, supportedFileType, uploadInputType, primaryUploadText, secondaryUploadText, ...propsDragDrop }: CustomDropDownFileUploadProps) => default_2.JSX.Element;
|
|
588
592
|
|
|
589
593
|
export { FilterValue }
|
|
590
594
|
|
|
@@ -1238,13 +1242,14 @@ export { Typography }
|
|
|
1238
1242
|
|
|
1239
1243
|
export { TypographyProps }
|
|
1240
1244
|
|
|
1241
|
-
export declare const Upload: ({ name, onChange, showUploadList, supportedFileType, ...rest }: UploadBaseProps) => default_2.JSX.Element;
|
|
1245
|
+
export declare const Upload: ({ name, onChange, showUploadList, supportedFileType, multiple, ...rest }: UploadBaseProps) => default_2.JSX.Element;
|
|
1242
1246
|
|
|
1243
1247
|
export declare interface UploadBaseProps extends CustomUploadProps {
|
|
1244
1248
|
name: string;
|
|
1245
1249
|
required?: boolean;
|
|
1246
1250
|
showUploadList?: boolean;
|
|
1247
1251
|
uploadInputType?: UploadInputTypes_2;
|
|
1252
|
+
multiple?: boolean;
|
|
1248
1253
|
}
|
|
1249
1254
|
|
|
1250
1255
|
export declare interface UploadBasePropsForDropdown extends CustomDropDownFileUploadProps {
|