10.1.8 • Published 1 month ago

ng-form-validator-builder v10.1.8

Weekly downloads
45
License
-
Repository
github
Last release
1 month ago

Validation Builder

Built with one purpose - Make Reactive form validation in Angular easier to use.


Getting started

Take a look at the live demo to play around with the validators

Install the library

npm i ng-form-validator-builder

Start using the validators

You can add validators using the formBuilder to create a form:

const nextWeek: Date = new Date();
nextWeek.setDate(new Date().getDate() + 7);

const form = new FormBuilder().group({
    someDate: [new Date(), DateValidator.isBefore(nextWeek),
    anotherDate: [new Date(), DateValidator.isBefore(nextWeek, 'With a custom error message'),
});

Combining Validators

TODO: Add documentation here


How it works behind the scenes

TODO: Add documentation on how the validators work with the builders.


Extending validators

TODO: Add documentation on extending validation builders to create custom validators and extend on existing validators.

10.1.8

1 month ago

10.1.9

12 months ago

10.1.11

12 months ago

10.1.5

2 years ago

10.1.7

2 years ago

0.0.11

3 years ago

0.0.10

3 years ago

0.0.9

3 years ago

0.0.8

3 years ago

0.0.7

3 years ago

0.0.5

3 years ago

0.0.3

3 years ago

0.0.4

3 years ago

0.0.1

3 years ago