2.3.0 • Published 4 months ago

ngx-typesafe-forms v2.3.0

Weekly downloads
694
License
MIT
Repository
github
Last release
4 months ago

Type-safe Forms for Angular 📝

Because FormControl<T> is more awesome than FormControl!

NPM version NPM downloads Build status All Contributors

Using Angular 14?

If you are using Angular 14 or higher, there is no need for using this library. Instead, we recommend you to use the default Angular type-safe forms in that case.

If you still want to use some of the additional features mentioned below, we recommend version 2.0 of this library, which is compatible with Angular 14.

Angular versionVersion
Angular 162.2.x
Angular 152.1.x
Angular 142.x.x
Angular 131.6.x
Angular 121.5.x
Angular 111.4.x
Angular 10 or lower1.3.x

Overview

What? 🤔

A small library to make Angular Forms more type-safe!

  • Type-safe versions of FormControl, FormGroup, FormArray and ControlValueAccessor
  • 100% compatible with @angular/forms and existing Angular libraries!
  • Easy to use!
  • Additional read-only properties value$, valid$, pristine$, errors$, enabled$ and more.
  • A default implementation for ControlValueAccessor
  • Type-safe validators

Why? 🤷‍♂️

Angular Forms are not very type-safe (at least, up until Angular 13). This library makes your form code more type-safe. More type-safety means smaller risks for bugs!

Installation 🌩

npm
npm install ngx-typesafe-forms
yarn
yarn add ngx-typesafe-forms

Usage 🕹

Basic example

Just import your FormControl, FormGroup, FormArray and ControlValueAccessor from ngx-typesafe-forms instead of @angular/forms and you are done!

Additional reactive properties

Besides the type-safety, we also provide additional reactive properties.

const myControl = new FormControl<string>('bar');

// subscribe to all values, including the existing value!
myControl.value$.subscribe((value) => {
  /* ... */
});

// subscribe to validity changes, including the existing valid state!
myControl.valid$.subscribe((valid) => {
  /* ... */
});

The recommended properties are:

  • value$
  • errors$
  • enabled$
  • pristine$
  • valid$
  • status$
  • validValue$
  • rawValue$

Additionally, we also provide some of their counterparts:

  • disabled$
  • dirty$
  • invalid$

NOTE: all of these streams also include the current (initial) values.

Contributors ✨

Thanks goes to these wonderful people (emoji key):

This project follows the all-contributors specification. Contributions of any kind welcome!

2.3.0

4 months ago

2.2.0

11 months ago

2.1.0

11 months ago

1.6.1

2 years ago

1.6.0

2 years ago

2.0.0-beta.2

2 years ago

2.0.0-beta.1

2 years ago

2.0.0-beta.0

2 years ago

2.0.1

2 years ago

2.0.0

2 years ago

2.0.0-beta.3

2 years ago

1.5.2

3 years ago

1.5.1

3 years ago

1.5.0

3 years ago

1.4.3

3 years ago

1.4.2

3 years ago

1.4.1

3 years ago

1.4.0-next.2

3 years ago

1.4.0

3 years ago

1.4.0-next.3

3 years ago

1.4.0-next.1

3 years ago

1.3.1

4 years ago

1.2.4

4 years ago

1.3.0

4 years ago

1.2.3

4 years ago

1.2.2

4 years ago

1.2.1

4 years ago

1.2.0

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.0.0

4 years ago

0.0.8

4 years ago

0.0.7

5 years ago

0.0.6

5 years ago

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago