yarn react-dropzone 13.0.0
v13.0.0

latest releases: 14.2.3, 14.2.2, 14.2.1...
2 years ago

13.0.0 (2022-04-30)

Features

  • add {onError} cb to allow users to handle errors (9134893)
  • allow passing file ext. to the file picker options and close #1141 (58976f4)

BREAKING CHANGES

  • The {accept} prop will now require an object instead of a string or array of strings:

Before:

useDropzone({
  accept: ".jpeg,.png"
  // accept: [".jpeg", ".png"]
})

After:

useDropzone({
  accept: {
    "image/*": [".jpeg", ".png"]
  }
})

Don't miss a new react-dropzone release

NewReleases is sending notifications on new releases.