angular-ui/ui-validate

Name: ui-validate

Owner: AngularUI

Description: General-purpose validator for ngModel

Created: 2015-05-29 00:21:06.0

Updated: 2018-01-25 02:12:55.0

Pushed: 2017-05-18 08:05:07.0

Homepage: https://htmlpreview.github.io/?https://github.com/angular-ui/ui-validate/master/demo/index.html

Size: 6028

Language: JavaScript

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

ui-validate Build Status npm version Bower version Join the chat at https://gitter.im/angular-ui/ui-validate

General-purpose validator for ngModel.

Angular.js comes with several built-in validation mechanism for input fields (ngRequired, ngPattern etc.) but using an arbitrary validation function requires creation of a custom formatters and / or parsers. The ui-validate directive makes it easy to use any function(s) defined in scope as a validator function(s). A validator function will trigger validation on both model and input changes.

Requirements
Usage

You can get it from Bower

r install angular-ui-validate

Load the script files in your application:

ipt type="text/javascript" src="bower_components/angular/angular.js"></script>
ipt type="text/javascript" src="bower_components/angular-ui-validate/dist/validate.js"></script>

Add the specific module to your dependencies:

lar.module('myApp', ['ui.validate', ...])

Or using npm, webpack and es6 import

install --save angular-ui-validate

Don't add script tags in your html page. instead

rt uiValidate from 'angular-ui-validate'

lar.module('myApp', [uiValidate, ...])
Development

We use Karma and jshint to ensure the quality of the code. The easiest way to run these checks is to use grunt:

install -g gulp-cli
install && bower install

The karma task will try to open Firefox and Chrome as browser in which to run the tests. Make sure this is available or change the configuration in karma.conf.js

Gulp watch

gulp watch will automatically test your code and build a release whenever source files change.

How to release

Use gulp to bump version, build and create a tag. Then push to GitHub:

 release [--patch|--minor|--major]
push --tags origin master # push everything to GitHub

Travis will take care of testing and publishing to npm's registry (bower will pick up the change automatically). Finally create a release on GitHub from the tag created by Travis.


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.