├── .editorconfig ├── .eslintrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── README.md ├── examples ├── index.html ├── src │ ├── app.js │ ├── contact-form.js │ ├── dynamic-validation.js │ ├── index.js │ └── redux │ │ ├── index.js │ │ └── root.reducer.js └── style.css ├── package.json ├── src ├── __tests__ │ ├── creditcard.spec.js │ ├── digits.spec.js │ ├── email.spec.js │ ├── equalTo.spec.js │ ├── matchField.spec.js │ ├── max.spec.js │ ├── maxLength.spec.js │ ├── min.spec.js │ ├── minLength.spec.js │ ├── oneOf.spec.js │ ├── pattern.spec.js │ ├── promise.spec.js │ ├── required.spec.js │ └── setup.js ├── basic-validations.js ├── form-messages │ └── index.js ├── index.js └── validation.js └── webpack ├── base.js ├── development.js ├── example.js ├── index.js └── production.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosticaPuntaru/redux-form-validation/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "parser": "babel-eslint" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | node_modules 4 | dist 5 | lib 6 | npm-debug.log 7 | .DS_Store -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosticaPuntaru/redux-form-validation/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosticaPuntaru/redux-form-validation/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosticaPuntaru/redux-form-validation/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosticaPuntaru/redux-form-validation/HEAD/README.md -------------------------------------------------------------------------------- /examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosticaPuntaru/redux-form-validation/HEAD/examples/index.html -------------------------------------------------------------------------------- /examples/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosticaPuntaru/redux-form-validation/HEAD/examples/src/app.js -------------------------------------------------------------------------------- /examples/src/contact-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosticaPuntaru/redux-form-validation/HEAD/examples/src/contact-form.js -------------------------------------------------------------------------------- /examples/src/dynamic-validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosticaPuntaru/redux-form-validation/HEAD/examples/src/dynamic-validation.js -------------------------------------------------------------------------------- /examples/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosticaPuntaru/redux-form-validation/HEAD/examples/src/index.js -------------------------------------------------------------------------------- /examples/src/redux/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosticaPuntaru/redux-form-validation/HEAD/examples/src/redux/index.js -------------------------------------------------------------------------------- /examples/src/redux/root.reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosticaPuntaru/redux-form-validation/HEAD/examples/src/redux/root.reducer.js -------------------------------------------------------------------------------- /examples/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosticaPuntaru/redux-form-validation/HEAD/examples/style.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosticaPuntaru/redux-form-validation/HEAD/package.json -------------------------------------------------------------------------------- /src/__tests__/creditcard.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosticaPuntaru/redux-form-validation/HEAD/src/__tests__/creditcard.spec.js -------------------------------------------------------------------------------- /src/__tests__/digits.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosticaPuntaru/redux-form-validation/HEAD/src/__tests__/digits.spec.js -------------------------------------------------------------------------------- /src/__tests__/email.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosticaPuntaru/redux-form-validation/HEAD/src/__tests__/email.spec.js -------------------------------------------------------------------------------- /src/__tests__/equalTo.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosticaPuntaru/redux-form-validation/HEAD/src/__tests__/equalTo.spec.js -------------------------------------------------------------------------------- /src/__tests__/matchField.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosticaPuntaru/redux-form-validation/HEAD/src/__tests__/matchField.spec.js -------------------------------------------------------------------------------- /src/__tests__/max.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosticaPuntaru/redux-form-validation/HEAD/src/__tests__/max.spec.js -------------------------------------------------------------------------------- /src/__tests__/maxLength.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosticaPuntaru/redux-form-validation/HEAD/src/__tests__/maxLength.spec.js -------------------------------------------------------------------------------- /src/__tests__/min.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosticaPuntaru/redux-form-validation/HEAD/src/__tests__/min.spec.js -------------------------------------------------------------------------------- /src/__tests__/minLength.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosticaPuntaru/redux-form-validation/HEAD/src/__tests__/minLength.spec.js -------------------------------------------------------------------------------- /src/__tests__/oneOf.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosticaPuntaru/redux-form-validation/HEAD/src/__tests__/oneOf.spec.js -------------------------------------------------------------------------------- /src/__tests__/pattern.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosticaPuntaru/redux-form-validation/HEAD/src/__tests__/pattern.spec.js -------------------------------------------------------------------------------- /src/__tests__/promise.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosticaPuntaru/redux-form-validation/HEAD/src/__tests__/promise.spec.js -------------------------------------------------------------------------------- /src/__tests__/required.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosticaPuntaru/redux-form-validation/HEAD/src/__tests__/required.spec.js -------------------------------------------------------------------------------- /src/__tests__/setup.js: -------------------------------------------------------------------------------- 1 | // test setup to be implemented -------------------------------------------------------------------------------- /src/basic-validations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosticaPuntaru/redux-form-validation/HEAD/src/basic-validations.js -------------------------------------------------------------------------------- /src/form-messages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosticaPuntaru/redux-form-validation/HEAD/src/form-messages/index.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosticaPuntaru/redux-form-validation/HEAD/src/index.js -------------------------------------------------------------------------------- /src/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosticaPuntaru/redux-form-validation/HEAD/src/validation.js -------------------------------------------------------------------------------- /webpack/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosticaPuntaru/redux-form-validation/HEAD/webpack/base.js -------------------------------------------------------------------------------- /webpack/development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosticaPuntaru/redux-form-validation/HEAD/webpack/development.js -------------------------------------------------------------------------------- /webpack/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosticaPuntaru/redux-form-validation/HEAD/webpack/example.js -------------------------------------------------------------------------------- /webpack/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosticaPuntaru/redux-form-validation/HEAD/webpack/index.js -------------------------------------------------------------------------------- /webpack/production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosticaPuntaru/redux-form-validation/HEAD/webpack/production.js --------------------------------------------------------------------------------