Skip to content

Tags: BalamirReact/react-dropzone

Tags

v4.2.3

Toggle v4.2.3's commit message
fix(SSR): Remove event listeners only if the element exist in DOM (re…

…act-dropzone#537)

This change fixes potential issues with SSR

v4.2.2

Toggle v4.2.2's commit message
fix: Add 'yarn.lock' to '.npmignore' (react-dropzone#532)

v4.2.1

Toggle v4.2.1's commit message
fix: Fix bug in IE11 when this.node could be null when calling onDocu…

…mentDrop (react-dropzone#517)

- Protect calling this.node.contains when this.node is null
- Fix IE11 bug where onDocumentDrop gets called with null this.node ref

Closes react-dropzone#492

v4.2.0

Toggle v4.2.0's commit message
feat: Add es2015 module build (react-dropzone#510)

* build: Add ES6 module build
* test: Add testing of es2015 module build and size-limit of 3 KB
* build: Add build:umd npm script

v4.1.3

Toggle v4.1.3's commit message
fix: Update props that should not be applied to the DOM element (reac…

…t-dropzone#504)

Updating list of properties to remove before they get spread onto the div.

Closes react-dropzone#503

v4.1.2

Toggle v4.1.2's commit message
fix(490): Put build dependencies to devDependencies (react-dropzone#491)

lint / build dependencies incorrectly marked as `dependencies`

closes react-dropzone#490

v4.1.1

Toggle v4.1.1's commit message
fix: Dragging multiple files when multiple is false doesn't apply rej…

…ectStyle (react-dropzone#489)

Closes react-dropzone#488

v4.1.0

Toggle v4.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 disable prop (react-dropzone#473)

* Add `disable` prop
* Add support for disabled styles and classnames

v4.0.1

Toggle v4.0.1's commit message
fix: Set autocomplete="off" on input to remove SecurityError in Firef…

…ox (react-dropzone#476)

Firefox throws a SecurityError if user agent tries to set the input element's value programmatically. To prevent this, `autocomplete="off"` is added to the input attributes.

Fixes react-dropzone#475

v4.0.0

Toggle v4.0.0's commit message
fix: Always show an active drag state during the drag (react-dropzone…

…#467)

Currently isDragActive is true only if all files are going to be accepted.
This has several implications:

1. This doesn't work in Safari since DataTransfer is empty until the drop event
1. The active state should be applyed based on user interaction independently from validation

Closes react-dropzone#440
Fixes react-dropzone#461

BREAKING CHANGE: isDragAccept acts like isDragActive before. isDragActive is true during the drag.