Skip to content

Tags: LiangCY/react-dropzone

Tags

v6.0.4

Toggle v6.0.4's commit message
fix(edge): drag a link trigger drop event

v6.0.3

Toggle v6.0.3's commit message
fix: update folder drop example

- add plugin tests

v6.0.2

Toggle v6.0.2's commit message
fix: fix a regression introduced by react-dropzone#619 (react-dropzon…

…e#678)

Closes react-dropzone#619 (comment)

v6.0.1

Toggle v6.0.1's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
fix: Mark children as optional in the typings (react-dropzone#663)

* Mark children as optional in the typings

They're marked as required, but the `propTypes` only mark it as optional. One of them is wrong :)

* Update basic.tsx

v6.0.0

Toggle v6.0.0's commit message
fix: only call *onDrag callbacks when dragging files (react-dropzone#619

)

BREAKING CHANGE:  Callbacks won't get executed for non-file items anymore i.e. if items aren't of type `File` when react-dropzone will ignore them.

v5.1.1

Toggle v5.1.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
build: Remove travis-deploy-once and use `npx semantic-release`

v5.1.0

Toggle v5.1.0's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
feat: Add initial typescript definition (react-dropzone#591)

v5.0.2

Toggle v5.0.2's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
fix: persist synthetic event (react-dropzone#657)

* fix: persist synthetic event

Since v4.3 the event passed to the handler is not reusable anymore,
because some work is done with it before.
To prevent this evt.persist() is called.

Fixes react-dropzone#646

v5.0.1

Toggle v5.0.1's commit message
fix(SSR): Add event listeners only if the element exist in DOM (react…

…-dropzone#628)

Fixes react-dropzone#537 (potential issues with SSR)

v5.0.0

Toggle v5.0.0's commit message
fix: Reject all files in single file drop (react-dropzone#641)

If multiple files were dropped and `multiple == false`,
react-dropzone will reject all files. Previously it would
accept one file and reject the rest.

BREAKING CHANGE: This can break applications that rely on the current behavior.

Closes react-dropzone#458