@mainframework/dropzone 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
### A React package, that allows for the selection of files, through drag and drop or the File Dialog api
|
|
1
|
+
### A React package, that allows for the selection of files, through drag and drop or the File Dialog api. Re-rendering is kept to a minimum, helping with application performance
|
|
2
2
|
|
|
3
3
|
### Installation:
|
|
4
4
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mainframework/dropzone",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "A file selection package, without all of the re-rendering issues that come with other dropzone packages",
|
|
5
5
|
"main": "./dist/cjs/index.js",
|
|
6
6
|
"module": "./dist/esm/index.js",
|
|
7
7
|
"types": "./dist/esm/index.d.ts",
|
|
@@ -37,7 +37,9 @@
|
|
|
37
37
|
"keywords": [
|
|
38
38
|
"react",
|
|
39
39
|
"typescript",
|
|
40
|
-
"
|
|
40
|
+
"file selection",
|
|
41
|
+
"file dialog",
|
|
42
|
+
"dropzone"
|
|
41
43
|
],
|
|
42
44
|
"author": "Terry Slack",
|
|
43
45
|
"license": "MIT",
|