When using ValuesOf<ControlsOf<FormType>> the tags has the type FormControl<string[]> instead of string[].
Issue Number: N/A
What is the new behavior?
The typing now correctly unpacks the values of FormGroup nested in FormArrays.
Does this PR introduce a breaking change?
[x] Yes
[ ] No
Users might encounter a breaking change if they have the above scenario AND rely on the current incorrect typing. Fixing resulting errors is likely low effort
PR Checklist
Please check if your PR fulfills the following requirements:
PR Type
What kind of change does this PR introduce?
Minor fix for existing tying of
ValuesOf
for nestedFormArray<FormGroup>
.What is the current behavior?
Assuming the following FormType:
When using
ValuesOf<ControlsOf<FormType>>
thetags
has the typeFormControl<string[]>
instead ofstring[]
.Issue Number: N/A
What is the new behavior?
The typing now correctly unpacks the values of FormGroup nested in FormArrays.
Does this PR introduce a breaking change?
Users might encounter a breaking change if they have the above scenario AND rely on the current incorrect typing. Fixing resulting errors is likely low effort
Other information