ngrx-forms
ngrx-forms copied to clipboard
Enhance your forms in Angular applications with the power of ngrx
**Describe the bug** In some cases, using the readonly modifier on an array causes type inference to break when using `updateGroup` in a nested fashion. **To Reproduce** Steps to reproduce...
Hi there, first: a thanks for this great library! it really save a lot of tedious work. Is there a good pattern on how to get the state of another...
Bumps [node-fetch](https://github.com/node-fetch/node-fetch) from 2.6.6 to 2.6.7. Release notes Sourced from node-fetch's releases. v2.6.7 Security patch release Recommended to upgrade, to not leak sensitive cookie and authentication header information to 3th...
**Describe the bug** When `ngrxValueConverter` is changed **but `ngrxFormControlState` is not**, the view will not be updated. [At a code level](https://github.com/MrWolfZ/ngrx-forms/blob/54df65de268a14b864b07c1074b537dbf359fd4b/src/control/directive.ts#L89), we can easily observe this to be the case...
Sure, just replace the players update with something like this: ```typescript players: updateArray( state => { state = setUserDefinedProperty('yourProperty', someValue, state); return updateGroup(state, { ebuNumber: validate([required, pattern(/^[0-9a-z]+$/)]), firstName: validate(required), lastName:...
Hi! Someone test the library on Angular 14? i Asked because in Angular 14 the Reactive forms has change and now have types... and i don't know if maybe we...
Hey, hope this is the right place to post it. I have the following reducer.ts: ``` export interface FormValue { stage: Stages, stati: boolean[]; aktion: boolean[]; workflow: boolean[]; user: string;...
Is it possible to get type helpings from ngrx forms for userdefinedproperties? It currently stores it as KeyValue pair and I get no autocompletion in the ide.
Bumps [async](https://github.com/caolan/async) from 2.6.3 to 2.6.4. Changelog Sourced from async's changelog. v2.6.4 Fix potential prototype pollution exploit (#1828) Commits c6bdaca Version 2.6.4 8870da9 Update built files 4df6754 update changelog 8f7f903...
**Describe the bug** `FormControlState;` throws `TS2344: Type 'unknown' does not satisfy the constraint 'FormControlValueTypes'. Type 'unknown' is not assignable to type 'Boxed'.` while any is working. I have a eslint...