@sparkvault/sdk 1.10.1 → 1.11.0
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 -0
- package/dist/sparkvault.cjs.js +11 -1
- package/dist/sparkvault.cjs.js.map +1 -1
- package/dist/sparkvault.esm.js +11 -1
- package/dist/sparkvault.esm.js.map +1 -1
- package/dist/sparkvault.js +1 -1
- package/dist/sparkvault.js.map +1 -1
- package/dist/vaults/upload/types.d.ts +2 -0
- package/package.json +1 -1
|
@@ -59,6 +59,8 @@ export interface UploadOptions {
|
|
|
59
59
|
target?: string | HTMLElement;
|
|
60
60
|
/** Override backdrop blur for this dialog (uses global config if omitted) */
|
|
61
61
|
backdropBlur?: boolean;
|
|
62
|
+
/** Hide "Upload Another File" button on success screen (for single-file flows) */
|
|
63
|
+
hideUploadAnother?: boolean;
|
|
62
64
|
/** Callback when upload completes successfully (if omitted, uses server-configured redirect) */
|
|
63
65
|
onSuccess?: (result: UploadResult) => void;
|
|
64
66
|
/** Callback when an error occurs (if omitted, uses server-configured redirect) */
|