Skip to content

Update to Angular 16 #58

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Jan 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 10.0.0

* add support for Angular 16

## 9.0.0

* add support for Angular 15

## 8.0.0

* add support for Angular 14
* add support for Angular 14
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Reactive Forms validation shouldn't require the developer to write lots of HTML
## Table of contents

* [Installation](#installation)
* [Compatibility](#compatibility)
* [Basic usage](#basic-usage)
* [Advanced validation declaration](#advanced-validation-declaration)
* [Changing when validation messages are displayed](#changing-when-validation-messages-are-displayed)
Expand All @@ -21,8 +22,15 @@ To install this library, run:
npm install angular-reactive-validation --save
```

## Basic usage
## Compatibility
| Angular version | Package version |
| --------------- | --------------- |
| 16 | 10.x |
| 15 | 9.x |
| 14 | 8.x |


## Basic usage
Import the `ReactiveValidationModule`:

```ts
Expand Down
Loading