├── .editorconfig ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── coverage └── lcov │ └── lcov.info ├── demo ├── app │ ├── app.component.html │ ├── app.component.ts │ ├── app.module.ts │ ├── examples │ │ ├── base64.ts │ │ ├── checkout-form │ │ │ ├── checkout-form.component.html │ │ │ ├── checkout-form.component.scss │ │ │ ├── checkout-form.component.ts │ │ │ ├── checkout-form.module.ts │ │ │ ├── form-utils.ts │ │ │ ├── ngb-form-control-error.directive.ts │ │ │ └── ngb-form-control.directive.ts │ │ ├── creditcard.ts │ │ ├── date.ts │ │ ├── dateiso.ts │ │ ├── digits.ts │ │ ├── email.ts │ │ ├── equal.ts │ │ ├── equalTo.ts │ │ ├── gt.ts │ │ ├── gte.ts │ │ ├── json.ts │ │ ├── lt.ts │ │ ├── lte.ts │ │ ├── max.ts │ │ ├── maxdate.ts │ │ ├── maxlength.ts │ │ ├── min.ts │ │ ├── mindate.ts │ │ ├── minlength.ts │ │ ├── notEqual.ts │ │ ├── notEqualTo.ts │ │ ├── number.ts │ │ ├── pattern.ts │ │ ├── range.ts │ │ ├── rangeLength.ts │ │ ├── required.ts │ │ ├── url.ts │ │ └── uuid.ts │ └── layout │ │ ├── header.component.ts │ │ └── sidenav-component.ts ├── assets │ ├── angular.png │ ├── batman.png │ ├── spidey.png │ └── thor.png ├── favicon.ico ├── index.ejs ├── main.d.ts ├── main.ts ├── polyfills.ts ├── style │ ├── _content.scss │ ├── _custom.scss │ ├── _github-highlight.scss │ ├── _sidebar.scss │ └── styles.scss ├── tsconfig.json └── typings.d.ts ├── integration ├── .angular-cli.json ├── .editorconfig ├── .gitignore ├── README.md ├── e2e │ ├── app.e2e-spec.ts │ ├── app.po.ts │ └── tsconfig.e2e.json ├── karma.conf.js ├── package.json ├── protractor.conf.js ├── src │ ├── app │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ └── app.module.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.scss │ ├── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── typings.d.ts ├── tsconfig.json ├── tslint.json └── yarn.lock ├── package.json ├── release.sh ├── scripts ├── karma-shim.js ├── karma.conf.js ├── webpack.dev.js └── webpack.test.js ├── src ├── base64 │ ├── directive.spec.ts │ ├── directive.ts │ ├── validator.spec.ts │ └── validator.ts ├── credit-card │ ├── directive.spec.ts │ ├── directive.ts │ ├── validator.spec.ts │ └── validator.ts ├── date-ios │ ├── directive.spec.ts │ ├── directive.ts │ ├── validator.spec.ts │ └── validator.ts ├── date │ ├── directive.spec.ts │ ├── directive.ts │ ├── validator.spec.ts │ └── validator.ts ├── digits │ ├── directive.spec.ts │ ├── directive.ts │ ├── validator.spec.ts │ └── validator.ts ├── email │ ├── directive.spec.ts │ ├── directive.ts │ ├── validator.spec.ts │ └── validator.ts ├── equal-to │ ├── directive.spec.ts │ ├── directive.ts │ ├── validator.spec.ts │ └── validator.ts ├── equal │ ├── directive.spec.ts │ ├── directive.ts │ ├── validator.spec.ts │ └── validator.ts ├── greater-than-equal │ ├── directive.spec.ts │ ├── directive.ts │ ├── validator.spec.ts │ └── validator.ts ├── greater-than │ ├── directive.spec.ts │ ├── directive.ts │ ├── validator.spec.ts │ └── validator.ts ├── index.ts ├── json │ ├── directive.spec.ts │ ├── directive.ts │ ├── validator.spec.ts │ └── validator.ts ├── less-than-equal │ ├── directive.spec.ts │ ├── directive.ts │ ├── validator.spec.ts │ └── validator.ts ├── less-than │ ├── directive.spec.ts │ ├── directive.ts │ ├── validator.spec.ts │ └── validator.ts ├── max-date │ ├── directive.spec.ts │ ├── directive.ts │ ├── validator.spec.ts │ └── validator.ts ├── max │ ├── directive.spec.ts │ ├── directive.ts │ ├── validator.spec.ts │ └── validator.ts ├── min-date │ ├── directive.spec.ts │ ├── directive.ts │ ├── validator.spec.ts │ └── validator.ts ├── min │ ├── directive.spec.ts │ ├── directive.ts │ ├── validator.spec.ts │ └── validator.ts ├── ng-package.json ├── ng-validators.module.ts ├── not-equal-to │ ├── directive.spec.ts │ ├── directive.ts │ ├── validator.spec.ts │ └── validator.ts ├── not-equal │ ├── directive.spec.ts │ ├── directive.ts │ ├── validator.spec.ts │ └── validator.ts ├── number │ ├── directive.spec.ts │ ├── directive.ts │ ├── validator.spec.ts │ └── validator.ts ├── package.json ├── range-length │ ├── directive.spec.ts │ ├── directive.ts │ ├── validator.spec.ts │ └── validator.ts ├── range │ ├── directive.spec.ts │ ├── directive.ts │ ├── validator.spec.ts │ └── validator.ts ├── tsconfig.json ├── url │ ├── directive.spec.ts │ ├── directive.ts │ ├── validator.spec.ts │ └── validator.ts ├── util │ └── lang.ts └── uuid │ ├── directive.spec.ts │ ├── directive.ts │ ├── validator.spec.ts │ └── validator.ts ├── tsconfig.json ├── tsconfig.test.json ├── tslint.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/README.md -------------------------------------------------------------------------------- /coverage/lcov/lcov.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/coverage/lcov/lcov.info -------------------------------------------------------------------------------- /demo/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/app.component.html -------------------------------------------------------------------------------- /demo/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/app.component.ts -------------------------------------------------------------------------------- /demo/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/app.module.ts -------------------------------------------------------------------------------- /demo/app/examples/base64.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/examples/base64.ts -------------------------------------------------------------------------------- /demo/app/examples/checkout-form/checkout-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/examples/checkout-form/checkout-form.component.html -------------------------------------------------------------------------------- /demo/app/examples/checkout-form/checkout-form.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/examples/checkout-form/checkout-form.component.scss -------------------------------------------------------------------------------- /demo/app/examples/checkout-form/checkout-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/examples/checkout-form/checkout-form.component.ts -------------------------------------------------------------------------------- /demo/app/examples/checkout-form/checkout-form.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/examples/checkout-form/checkout-form.module.ts -------------------------------------------------------------------------------- /demo/app/examples/checkout-form/form-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/examples/checkout-form/form-utils.ts -------------------------------------------------------------------------------- /demo/app/examples/checkout-form/ngb-form-control-error.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/examples/checkout-form/ngb-form-control-error.directive.ts -------------------------------------------------------------------------------- /demo/app/examples/checkout-form/ngb-form-control.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/examples/checkout-form/ngb-form-control.directive.ts -------------------------------------------------------------------------------- /demo/app/examples/creditcard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/examples/creditcard.ts -------------------------------------------------------------------------------- /demo/app/examples/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/examples/date.ts -------------------------------------------------------------------------------- /demo/app/examples/dateiso.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/examples/dateiso.ts -------------------------------------------------------------------------------- /demo/app/examples/digits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/examples/digits.ts -------------------------------------------------------------------------------- /demo/app/examples/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/examples/email.ts -------------------------------------------------------------------------------- /demo/app/examples/equal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/examples/equal.ts -------------------------------------------------------------------------------- /demo/app/examples/equalTo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/examples/equalTo.ts -------------------------------------------------------------------------------- /demo/app/examples/gt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/examples/gt.ts -------------------------------------------------------------------------------- /demo/app/examples/gte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/examples/gte.ts -------------------------------------------------------------------------------- /demo/app/examples/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/examples/json.ts -------------------------------------------------------------------------------- /demo/app/examples/lt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/examples/lt.ts -------------------------------------------------------------------------------- /demo/app/examples/lte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/examples/lte.ts -------------------------------------------------------------------------------- /demo/app/examples/max.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/examples/max.ts -------------------------------------------------------------------------------- /demo/app/examples/maxdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/examples/maxdate.ts -------------------------------------------------------------------------------- /demo/app/examples/maxlength.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/examples/maxlength.ts -------------------------------------------------------------------------------- /demo/app/examples/min.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/examples/min.ts -------------------------------------------------------------------------------- /demo/app/examples/mindate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/examples/mindate.ts -------------------------------------------------------------------------------- /demo/app/examples/minlength.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/examples/minlength.ts -------------------------------------------------------------------------------- /demo/app/examples/notEqual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/examples/notEqual.ts -------------------------------------------------------------------------------- /demo/app/examples/notEqualTo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/examples/notEqualTo.ts -------------------------------------------------------------------------------- /demo/app/examples/number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/examples/number.ts -------------------------------------------------------------------------------- /demo/app/examples/pattern.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/examples/pattern.ts -------------------------------------------------------------------------------- /demo/app/examples/range.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/examples/range.ts -------------------------------------------------------------------------------- /demo/app/examples/rangeLength.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/examples/rangeLength.ts -------------------------------------------------------------------------------- /demo/app/examples/required.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/examples/required.ts -------------------------------------------------------------------------------- /demo/app/examples/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/examples/url.ts -------------------------------------------------------------------------------- /demo/app/examples/uuid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/examples/uuid.ts -------------------------------------------------------------------------------- /demo/app/layout/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/layout/header.component.ts -------------------------------------------------------------------------------- /demo/app/layout/sidenav-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/app/layout/sidenav-component.ts -------------------------------------------------------------------------------- /demo/assets/angular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/assets/angular.png -------------------------------------------------------------------------------- /demo/assets/batman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/assets/batman.png -------------------------------------------------------------------------------- /demo/assets/spidey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/assets/spidey.png -------------------------------------------------------------------------------- /demo/assets/thor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/assets/thor.png -------------------------------------------------------------------------------- /demo/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/favicon.ico -------------------------------------------------------------------------------- /demo/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/index.ejs -------------------------------------------------------------------------------- /demo/main.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/main.ts -------------------------------------------------------------------------------- /demo/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/polyfills.ts -------------------------------------------------------------------------------- /demo/style/_content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/style/_content.scss -------------------------------------------------------------------------------- /demo/style/_custom.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/style/_github-highlight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/style/_github-highlight.scss -------------------------------------------------------------------------------- /demo/style/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/style/_sidebar.scss -------------------------------------------------------------------------------- /demo/style/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/style/styles.scss -------------------------------------------------------------------------------- /demo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/tsconfig.json -------------------------------------------------------------------------------- /demo/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/demo/typings.d.ts -------------------------------------------------------------------------------- /integration/.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/integration/.angular-cli.json -------------------------------------------------------------------------------- /integration/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/integration/.editorconfig -------------------------------------------------------------------------------- /integration/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/integration/.gitignore -------------------------------------------------------------------------------- /integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/integration/README.md -------------------------------------------------------------------------------- /integration/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/integration/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /integration/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/integration/e2e/app.po.ts -------------------------------------------------------------------------------- /integration/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/integration/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /integration/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/integration/karma.conf.js -------------------------------------------------------------------------------- /integration/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/integration/package.json -------------------------------------------------------------------------------- /integration/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/integration/protractor.conf.js -------------------------------------------------------------------------------- /integration/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/integration/src/app/app.component.html -------------------------------------------------------------------------------- /integration/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/integration/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /integration/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/integration/src/app/app.component.ts -------------------------------------------------------------------------------- /integration/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/integration/src/app/app.module.ts -------------------------------------------------------------------------------- /integration/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /integration/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/integration/src/environments/environment.ts -------------------------------------------------------------------------------- /integration/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/integration/src/favicon.ico -------------------------------------------------------------------------------- /integration/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/integration/src/index.html -------------------------------------------------------------------------------- /integration/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/integration/src/main.ts -------------------------------------------------------------------------------- /integration/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/integration/src/polyfills.ts -------------------------------------------------------------------------------- /integration/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/integration/src/styles.scss -------------------------------------------------------------------------------- /integration/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/integration/src/test.ts -------------------------------------------------------------------------------- /integration/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/integration/src/tsconfig.app.json -------------------------------------------------------------------------------- /integration/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/integration/src/tsconfig.spec.json -------------------------------------------------------------------------------- /integration/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/integration/src/typings.d.ts -------------------------------------------------------------------------------- /integration/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/integration/tsconfig.json -------------------------------------------------------------------------------- /integration/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/integration/tslint.json -------------------------------------------------------------------------------- /integration/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/integration/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/package.json -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/release.sh -------------------------------------------------------------------------------- /scripts/karma-shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/scripts/karma-shim.js -------------------------------------------------------------------------------- /scripts/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/scripts/karma.conf.js -------------------------------------------------------------------------------- /scripts/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/scripts/webpack.dev.js -------------------------------------------------------------------------------- /scripts/webpack.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/scripts/webpack.test.js -------------------------------------------------------------------------------- /src/base64/directive.spec.ts: -------------------------------------------------------------------------------- 1 | // todo -------------------------------------------------------------------------------- /src/base64/directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/base64/directive.ts -------------------------------------------------------------------------------- /src/base64/validator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/base64/validator.spec.ts -------------------------------------------------------------------------------- /src/base64/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/base64/validator.ts -------------------------------------------------------------------------------- /src/credit-card/directive.spec.ts: -------------------------------------------------------------------------------- 1 | // todo -------------------------------------------------------------------------------- /src/credit-card/directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/credit-card/directive.ts -------------------------------------------------------------------------------- /src/credit-card/validator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/credit-card/validator.spec.ts -------------------------------------------------------------------------------- /src/credit-card/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/credit-card/validator.ts -------------------------------------------------------------------------------- /src/date-ios/directive.spec.ts: -------------------------------------------------------------------------------- 1 | // todo -------------------------------------------------------------------------------- /src/date-ios/directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/date-ios/directive.ts -------------------------------------------------------------------------------- /src/date-ios/validator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/date-ios/validator.spec.ts -------------------------------------------------------------------------------- /src/date-ios/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/date-ios/validator.ts -------------------------------------------------------------------------------- /src/date/directive.spec.ts: -------------------------------------------------------------------------------- 1 | // todo -------------------------------------------------------------------------------- /src/date/directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/date/directive.ts -------------------------------------------------------------------------------- /src/date/validator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/date/validator.spec.ts -------------------------------------------------------------------------------- /src/date/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/date/validator.ts -------------------------------------------------------------------------------- /src/digits/directive.spec.ts: -------------------------------------------------------------------------------- 1 | // todo -------------------------------------------------------------------------------- /src/digits/directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/digits/directive.ts -------------------------------------------------------------------------------- /src/digits/validator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/digits/validator.spec.ts -------------------------------------------------------------------------------- /src/digits/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/digits/validator.ts -------------------------------------------------------------------------------- /src/email/directive.spec.ts: -------------------------------------------------------------------------------- 1 | // todo -------------------------------------------------------------------------------- /src/email/directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/email/directive.ts -------------------------------------------------------------------------------- /src/email/validator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/email/validator.spec.ts -------------------------------------------------------------------------------- /src/email/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/email/validator.ts -------------------------------------------------------------------------------- /src/equal-to/directive.spec.ts: -------------------------------------------------------------------------------- 1 | // todo -------------------------------------------------------------------------------- /src/equal-to/directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/equal-to/directive.ts -------------------------------------------------------------------------------- /src/equal-to/validator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/equal-to/validator.spec.ts -------------------------------------------------------------------------------- /src/equal-to/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/equal-to/validator.ts -------------------------------------------------------------------------------- /src/equal/directive.spec.ts: -------------------------------------------------------------------------------- 1 | // todo -------------------------------------------------------------------------------- /src/equal/directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/equal/directive.ts -------------------------------------------------------------------------------- /src/equal/validator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/equal/validator.spec.ts -------------------------------------------------------------------------------- /src/equal/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/equal/validator.ts -------------------------------------------------------------------------------- /src/greater-than-equal/directive.spec.ts: -------------------------------------------------------------------------------- 1 | // todo -------------------------------------------------------------------------------- /src/greater-than-equal/directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/greater-than-equal/directive.ts -------------------------------------------------------------------------------- /src/greater-than-equal/validator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/greater-than-equal/validator.spec.ts -------------------------------------------------------------------------------- /src/greater-than-equal/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/greater-than-equal/validator.ts -------------------------------------------------------------------------------- /src/greater-than/directive.spec.ts: -------------------------------------------------------------------------------- 1 | // todo -------------------------------------------------------------------------------- /src/greater-than/directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/greater-than/directive.ts -------------------------------------------------------------------------------- /src/greater-than/validator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/greater-than/validator.spec.ts -------------------------------------------------------------------------------- /src/greater-than/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/greater-than/validator.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/json/directive.spec.ts: -------------------------------------------------------------------------------- 1 | // todo -------------------------------------------------------------------------------- /src/json/directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/json/directive.ts -------------------------------------------------------------------------------- /src/json/validator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/json/validator.spec.ts -------------------------------------------------------------------------------- /src/json/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/json/validator.ts -------------------------------------------------------------------------------- /src/less-than-equal/directive.spec.ts: -------------------------------------------------------------------------------- 1 | // todo -------------------------------------------------------------------------------- /src/less-than-equal/directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/less-than-equal/directive.ts -------------------------------------------------------------------------------- /src/less-than-equal/validator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/less-than-equal/validator.spec.ts -------------------------------------------------------------------------------- /src/less-than-equal/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/less-than-equal/validator.ts -------------------------------------------------------------------------------- /src/less-than/directive.spec.ts: -------------------------------------------------------------------------------- 1 | // todo -------------------------------------------------------------------------------- /src/less-than/directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/less-than/directive.ts -------------------------------------------------------------------------------- /src/less-than/validator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/less-than/validator.spec.ts -------------------------------------------------------------------------------- /src/less-than/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/less-than/validator.ts -------------------------------------------------------------------------------- /src/max-date/directive.spec.ts: -------------------------------------------------------------------------------- 1 | // todo -------------------------------------------------------------------------------- /src/max-date/directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/max-date/directive.ts -------------------------------------------------------------------------------- /src/max-date/validator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/max-date/validator.spec.ts -------------------------------------------------------------------------------- /src/max-date/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/max-date/validator.ts -------------------------------------------------------------------------------- /src/max/directive.spec.ts: -------------------------------------------------------------------------------- 1 | // todo -------------------------------------------------------------------------------- /src/max/directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/max/directive.ts -------------------------------------------------------------------------------- /src/max/validator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/max/validator.spec.ts -------------------------------------------------------------------------------- /src/max/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/max/validator.ts -------------------------------------------------------------------------------- /src/min-date/directive.spec.ts: -------------------------------------------------------------------------------- 1 | // todo -------------------------------------------------------------------------------- /src/min-date/directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/min-date/directive.ts -------------------------------------------------------------------------------- /src/min-date/validator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/min-date/validator.spec.ts -------------------------------------------------------------------------------- /src/min-date/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/min-date/validator.ts -------------------------------------------------------------------------------- /src/min/directive.spec.ts: -------------------------------------------------------------------------------- 1 | // todo -------------------------------------------------------------------------------- /src/min/directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/min/directive.ts -------------------------------------------------------------------------------- /src/min/validator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/min/validator.spec.ts -------------------------------------------------------------------------------- /src/min/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/min/validator.ts -------------------------------------------------------------------------------- /src/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/ng-package.json -------------------------------------------------------------------------------- /src/ng-validators.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/ng-validators.module.ts -------------------------------------------------------------------------------- /src/not-equal-to/directive.spec.ts: -------------------------------------------------------------------------------- 1 | // todo -------------------------------------------------------------------------------- /src/not-equal-to/directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/not-equal-to/directive.ts -------------------------------------------------------------------------------- /src/not-equal-to/validator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/not-equal-to/validator.spec.ts -------------------------------------------------------------------------------- /src/not-equal-to/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/not-equal-to/validator.ts -------------------------------------------------------------------------------- /src/not-equal/directive.spec.ts: -------------------------------------------------------------------------------- 1 | // todo -------------------------------------------------------------------------------- /src/not-equal/directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/not-equal/directive.ts -------------------------------------------------------------------------------- /src/not-equal/validator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/not-equal/validator.spec.ts -------------------------------------------------------------------------------- /src/not-equal/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/not-equal/validator.ts -------------------------------------------------------------------------------- /src/number/directive.spec.ts: -------------------------------------------------------------------------------- 1 | // todo -------------------------------------------------------------------------------- /src/number/directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/number/directive.ts -------------------------------------------------------------------------------- /src/number/validator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/number/validator.spec.ts -------------------------------------------------------------------------------- /src/number/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/number/validator.ts -------------------------------------------------------------------------------- /src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/package.json -------------------------------------------------------------------------------- /src/range-length/directive.spec.ts: -------------------------------------------------------------------------------- 1 | // todo -------------------------------------------------------------------------------- /src/range-length/directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/range-length/directive.ts -------------------------------------------------------------------------------- /src/range-length/validator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/range-length/validator.spec.ts -------------------------------------------------------------------------------- /src/range-length/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/range-length/validator.ts -------------------------------------------------------------------------------- /src/range/directive.spec.ts: -------------------------------------------------------------------------------- 1 | // todo -------------------------------------------------------------------------------- /src/range/directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/range/directive.ts -------------------------------------------------------------------------------- /src/range/validator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/range/validator.spec.ts -------------------------------------------------------------------------------- /src/range/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/range/validator.ts -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /src/url/directive.spec.ts: -------------------------------------------------------------------------------- 1 | // todo -------------------------------------------------------------------------------- /src/url/directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/url/directive.ts -------------------------------------------------------------------------------- /src/url/validator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/url/validator.spec.ts -------------------------------------------------------------------------------- /src/url/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/url/validator.ts -------------------------------------------------------------------------------- /src/util/lang.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/util/lang.ts -------------------------------------------------------------------------------- /src/uuid/directive.spec.ts: -------------------------------------------------------------------------------- 1 | // todo -------------------------------------------------------------------------------- /src/uuid/directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/uuid/directive.ts -------------------------------------------------------------------------------- /src/uuid/validator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/uuid/validator.spec.ts -------------------------------------------------------------------------------- /src/uuid/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/src/uuid/validator.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/tsconfig.test.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjmao/ng-validators/HEAD/yarn.lock --------------------------------------------------------------------------------