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 +2 -1
- package/dist/index.js +216 -160
- package/dist/index.mjs +611 -555
- package/dist/umd/synapse-react-client.development.js +228 -172
- package/dist/umd/synapse-react-client.development.js.map +3 -3
- package/dist/umd/synapse-react-client.production.min.js +74 -74
- package/package.json +1 -1
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
|
-
|
|
1687
|
+
onUploadStart?: () => void;
|
|
1688
|
+
onComplete?: (response: UploadCallbackResp) => void;
|
|
1688
1689
|
};
|
|
1689
1690
|
declare const FileUpload: React__default.FC<FileUploadProps>;
|
|
1690
1691
|
|