@sparkvault/sdk 1.8.4 → 1.9.1
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/sparkvault.cjs.js +52 -4
- package/dist/sparkvault.cjs.js.map +1 -1
- package/dist/sparkvault.esm.js +52 -4
- 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/renderer.d.ts +7 -0
- package/package.json +1 -1
|
@@ -22,6 +22,8 @@ export declare class UploadRenderer {
|
|
|
22
22
|
private config;
|
|
23
23
|
private selectedFile;
|
|
24
24
|
private fileInputElement;
|
|
25
|
+
private uploadModal;
|
|
26
|
+
private isInlineMode;
|
|
25
27
|
constructor(container: UploadContainer, api: UploadApi, options: UploadOptions, callbacks: RendererCallbacks);
|
|
26
28
|
/**
|
|
27
29
|
* Start the upload flow.
|
|
@@ -34,6 +36,11 @@ export declare class UploadRenderer {
|
|
|
34
36
|
private handleClose;
|
|
35
37
|
private setState;
|
|
36
38
|
private render;
|
|
39
|
+
/**
|
|
40
|
+
* Render uploading/ceremony states in a modal overlay (for inline mode).
|
|
41
|
+
* This provides the full polished experience during upload.
|
|
42
|
+
*/
|
|
43
|
+
private renderInModal;
|
|
37
44
|
private renderLoading;
|
|
38
45
|
private renderForm;
|
|
39
46
|
private renderUploading;
|