vrfi-design-system 1.1.68 → 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 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