react-form-ux 0.0.1

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 ADDED
@@ -0,0 +1,11 @@
1
+ # react-form-ux
2
+
3
+ UX helpers for React forms.
4
+
5
+ Features:
6
+
7
+ - Focus first invalid field
8
+ - Scroll to first error
9
+ - Accessible error summaries
10
+
11
+ Work in progress.
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ // Placeholder package
2
+ module.exports = {}
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "react-form-ux",
3
+ "version": "0.0.1",
4
+ "description": "UX helpers for React forms (focus errors, scroll to validation, error summaries).",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "keywords": [
10
+ "react",
11
+ "forms",
12
+ "react-hook-form",
13
+ "formik",
14
+ "ux",
15
+ "validation"
16
+ ],
17
+ "author": "Sayan Paul",
18
+ "license": "MIT",
19
+ "type": "commonjs"
20
+ }
Binary file