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 c1b7aea commit c588accCopy full SHA for c588acc
src/lib/picker.ts
@@ -724,6 +724,10 @@ export interface PickerOptions {
724
pasteToFirstInViewPort?: boolean,
725
pasteToFirstInstance?: boolean
726
};
727
+ /**
728
+ * Disable/Enable possibility to upload directories.
729
+ */
730
+ disableDirectoryUpload?: boolean;
731
}
732
733
export interface PickerCropOptions {
src/schema/picker.schema.ts
@@ -464,5 +464,8 @@ export const PickerParamsSchema = {
464
},
465
466
467
+ disableDirectoryUpload: {
468
+ type: 'boolean'
469
+ },
470
471
0 commit comments