digitinary-ui 1.0.199 → 1.0.201

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.
@@ -27,4 +27,7 @@ export interface ViewFilesProps {
27
27
  handleDownload?: (value: FileOrUrl) => void;
28
28
  disabled?: boolean;
29
29
  maxSize?: number;
30
+ uploadProgress?: {
31
+ [key: string]: number;
32
+ };
30
33
  }
@@ -1,4 +1,4 @@
1
1
  import './style.scss';
2
2
  import { ViewFilesProps } from './types';
3
- declare const ViewFiles: ({ files, onChange, handleDownload, disabled, maxSize, }: ViewFilesProps) => import("react/jsx-runtime").JSX.Element;
3
+ declare const ViewFiles: ({ files, onChange, handleDownload, disabled, maxSize, uploadProgress, }: ViewFilesProps) => import("react/jsx-runtime").JSX.Element;
4
4
  export default ViewFiles;