Socket
Socket
Sign inDemoInstall

react-dropzone

Package Overview
Dependencies
Maintainers
2
Versions
176
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-dropzone - npm Package Compare versions

Comparing version 3.3.3 to 3.3.4

35

CHANGELOG.md

@@ -1,3 +0,7 @@

# 3.3.3
# v3.3.4
* fix issue Cannot find module "React" (#159) <Jonathan Sanchez Pando>
# v3.3.3
* More MIME type examples <Matija Marohnić>

@@ -7,12 +11,13 @@ * Fix off-by-one in droppedFiles length (#156) <BJTerry>

# 3.3.2
# v3.3.2
* Fixed npm build for 3.3.1
# 3.3.1
# v3.3.1
* Added travis.yml and build badge. Closes #111 <Andrey Okonetchnikov>
* Support one or more children. (#121) <Marnus Weststrate>
* Fixed the React warning `Invalid prop 'children' supplied to 'Dropzone', expected a single
ReactElement.` (#121) <Marnus Weststrate>
# 3.3.0
# v3.3.0

@@ -22,3 +27,21 @@ * Fir for Drag & Drop From Application Non-Functional in OS/X / Chrome (#74) <newsiberian>

* Added support for dynamic props on input element via inputProps prop <Ben Daley>
* Added accept documentation to README <xabikos>
* Added `accept` documentation to README <xabikos>
* Fix for disablePreview property not being obeyed <Frank Wallis>
* Added ESLint
* Added tests
# v3.0.0
* Added compatibility with React 0.14
* Converted to ES2015 class
Breaking Changes
====
If you're using React 0.13, you should install 2.x release.
# v2.2.4
* Fixed #83
This is the last React 013 release.

8

dist/index.js
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory(require("React"));
module.exports = factory(require("react"));
else if(typeof define === 'function' && define.amd)
define(["React"], factory);
define(["react"], factory);
else if(typeof exports === 'object')
exports["Dropzone"] = factory(require("React"));
exports["Dropzone"] = factory(require("react"));
else
root["Dropzone"] = factory(root["React"]);
root["Dropzone"] = factory(root["react"]);
})(this, function(__WEBPACK_EXTERNAL_MODULE_2__) {

@@ -11,0 +11,0 @@ return /******/ (function(modules) { // webpackBootstrap

{
"name": "react-dropzone",
"version": "3.3.3",
"version": "3.3.4",
"description": "Simple HTML5 drag-drop zone with React.js",

@@ -9,3 +9,3 @@ "main": "dist/index.js",

"clean": "rimraf ./dist",
"prepublish": "npm run lint && npm run test:build && npm run build",
"prepublish": "npm run lint && npm run build && npm run test:build",
"test": "mocha --require ./mocha-environment.js './src/test.js'",

@@ -12,0 +12,0 @@ "test:build": "NODE_ENV=production npm run test",

@@ -29,5 +29,5 @@ var webpack = require('webpack'); // eslint-disable-line

externals: {
react: 'React'
react: 'react'
},
plugins: []
};

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc