@useparagon/connect 2.5.1-experimental.2 → 2.5.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
|
@@ -488,6 +488,11 @@ export type FilePickerOptions = {
|
|
|
488
488
|
allowedTypes?: string[];
|
|
489
489
|
allowMultiSelect?: boolean;
|
|
490
490
|
allowFolderSelect?: boolean;
|
|
491
|
+
/**
|
|
492
|
+
* Max items selectable in the native picker (Google Drive, SharePoint, OneDrive, Box).
|
|
493
|
+
* For Box, `integrationOptions.box.maxSelectable` takes precedence when set.
|
|
494
|
+
*/
|
|
495
|
+
maxItems?: number;
|
|
491
496
|
onOpen?: () => void;
|
|
492
497
|
onClose?: () => void;
|
|
493
498
|
onFileSelect?: (files: unknown) => void;
|