We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffba719 commit 8690b24Copy full SHA for 8690b24
src/lib/picker.ts
@@ -728,6 +728,14 @@ export interface PickerOptions {
728
* Disable/Enable possibility to upload directories.
729
*/
730
disableDirectoryUpload?: boolean;
731
+ /**
732
+ * Enable/Disable Mini Uploader
733
+ */
734
+ miniUploader?: boolean;
735
736
+ * Enable/Disable possibility to multiple file upload
737
738
+ multipleFileUpload?: boolean;
739
}
740
741
export interface PickerCropOptions {
src/schema/picker.schema.ts
@@ -467,5 +467,11 @@ export const PickerParamsSchema = {
467
disableDirectoryUpload: {
468
type: 'boolean',
469
},
470
+ miniUploader: {
471
+ type: 'boolean',
472
+ },
473
+ multipleFileUpload: {
474
475
476
477
};
0 commit comments