Skip to content

Releases: MrWolfZ/ngrx-forms

8.0.0

27 Oct 15:04
Compare
Choose a tag to compare

Breaking Changes

  • adjust types for compatibility with TypeScript >=4.8 (00885ae)

7.0.0

17 Nov 15:23
Compare
Choose a tag to compare

Breaking Changes

  • update peer dependency version requirements of Angular and ngrx to >=12.0.0 and TypeScript to >=4.2.3 (b8659ab)

Features

6.3.6

17 Nov 13:19
Compare
Choose a tag to compare

Bugfixes

  • allow marking empty array controls as dirty (b4df005), closes #257, thanks @bram96 for reporting this bug

6.3.5

13 Mar 09:40
Compare
Choose a tag to compare

Bugfixes

  • forward move and swap array control actions to children in form group reducer (f682561), closes #233, thanks @mme-private for reporting this bug

6.3.4

17 Jan 10:13
Compare
Choose a tag to compare

Bugfixes

  • remove generic type constraints from directives to prevent errors during angular template type-checking (713497f), closes #225, thanks @0x450x6c for reporting this issue

6.3.3

11 Jul 09:32
Compare
Choose a tag to compare

Bugfixes

  • make wrapReducerWithFormStateUpdate work properly if used on states that are form states themselves (9907718), closes #196

6.3.2

25 Jun 18:16
Compare
Choose a tag to compare

Bugfixes

  • export missing update functions moveArrayControl and swapArrayControl (#193), thanks @jamie94bc for this fix

6.3.1

31 May 08:46
Compare
Choose a tag to compare

Bugfixes

  • allow undefined property values in boxed objects, thanks @alex-vg for reporting this bug (22b2667), closes #186

6.3.0

31 May 07:31
Compare
Choose a tag to compare

Features

  • allow onNgrxForms to work on form states directly instead of requiring form states to be direct children of reduced states (b81abb4)

6.2.0

04 Apr 10:17
Compare
Choose a tag to compare

Features

  • add new validation function number to validate a value is a number (useful in cases where the concrete type of a value is unknown) (#182), thanks @dzonatan for implementing this feature
  • ignore non-numeric values in lessThan, lessThanOrEqualTo, greaterThan, and greaterThanOrEqualTo validation functions (#182), thanks @dzonatan for this change
  • export the NGRX_UPDATE_ON_TYPE enum (#184), thanks @dzonatan for this change