@useparagon/connect 2.5.0 → 2.5.1-experimental-25313.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/src/types/sdk.d.ts
CHANGED
|
@@ -482,6 +482,11 @@ export type FilePickerOptions = {
|
|
|
482
482
|
allowedTypes?: string[];
|
|
483
483
|
allowMultiSelect?: boolean;
|
|
484
484
|
allowFolderSelect?: boolean;
|
|
485
|
+
/**
|
|
486
|
+
* Max items selectable in the native picker (Google Drive, SharePoint, OneDrive, Box).
|
|
487
|
+
* For Box, `integrationOptions.box.maxSelectable` takes precedence when set.
|
|
488
|
+
*/
|
|
489
|
+
maxItems?: number;
|
|
485
490
|
onOpen?: () => void;
|
|
486
491
|
onClose?: () => void;
|
|
487
492
|
onFileSelect?: (files: unknown) => void;
|