synapse-react-client 3.1.37 → 3.1.38

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
@@ -1684,7 +1684,8 @@ type FileUploadProps = {
1684
1684
  id?: string;
1685
1685
  label?: string;
1686
1686
  buttonProps?: ButtonProps;
1687
- uploadCallback?: (response: UploadCallbackResp) => void;
1687
+ onUploadStart?: () => void;
1688
+ onComplete?: (response: UploadCallbackResp) => void;
1688
1689
  };
1689
1690
  declare const FileUpload: React__default.FC<FileUploadProps>;
1690
1691