Skip to content

Commit

Permalink
fix(pickerschema): update missing picker options
Browse files Browse the repository at this point in the history
  • Loading branch information
pcholuj committed Feb 26, 2021
1 parent 73d4fa9 commit 5ab80b5
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion src/schema/picker.schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,9 @@ export const PickerParamsSchema = {
onUploadDone: {
format: 'callback',
},
onFileCropped: {
format: 'callback',
},
storeTo: {
additionalProperties: false,
type: 'object',
Expand Down Expand Up @@ -324,11 +327,22 @@ export const PickerParamsSchema = {
'.*': { type: 'string' },
},
},
cropFiles: {
type: 'array',
minItems: 1,
},
loadCss: {
type: 'string',
},
failOverMaxFiles: {
type: 'boolean',
},
dropPane: {
type: 'object',
properties: {
cropFiles: {
type: 'boolean',
type: 'array',
minItems: 1,
},
customText: {
type: 'string',
Expand Down

0 comments on commit 5ab80b5

Please sign in to comment.