Form validation helpers for reactstrap
npm install availity-reactstrap-validation-safeEasy to use React validation components compatible for reactstrap.
Forked version of the original project Availity/availity-reactstrap-validation, with the patch provided
here
that solves this annoying issue.
Install availity-reactstrap-validation-safe via NPM
``sh`
npm install --save availity-reactstrap-validation-safe
If applicable, install a Promise polyfill. For example:
`sh`
npm install es6-promise --save
The polyfill can be applied into your web application by using tools like Webpack or Babel.
Import the components you need, example:
`js`
import { AvField } from 'availity-reactstrap-validation-safe';
Install dependencies:
`sh`
npm install
Run examples at http://localhost:8080/ with Webpack dev server:
`sh`
npm start
Run tests:
`sh`
npm test
Run tests & coverage report:
`sh`
npm run test:coverage
Watch tests:
`sh``
npm run test:watch