Skip to content

Commit 8690b24

Browse files
SebastianKarpetaFSSebastianKarpetaDev
authored andcommitted
Minipicker flag (#583)
* feature/fs-1 - Adding enable/disable functionality. * feature/fs-1 Missing coma * Adding flag for minipicker. --------- Co-authored-by: Sebastian Karpeta <sebastian.karpeta@devtactics.net>
1 parent ffba719 commit 8690b24

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

src/lib/picker.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -728,6 +728,14 @@ export interface PickerOptions {
728728
* Disable/Enable possibility to upload directories.
729729
*/
730730
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;
731739
}
732740

733741
export interface PickerCropOptions {

src/schema/picker.schema.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -467,5 +467,11 @@ export const PickerParamsSchema = {
467467
disableDirectoryUpload: {
468468
type: 'boolean',
469469
},
470+
miniUploader: {
471+
type: 'boolean',
472+
},
473+
multipleFileUpload: {
474+
type: 'boolean',
475+
},
470476
},
471477
};

0 commit comments

Comments
 (0)