You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,7 @@
16
16
17
17
## 🔮 Features
18
18
19
+
✅ Allows Typed Forms!<br>
19
20
✅ Auto persists the form's state upon user navigation.<br>
20
21
✅ Provides an API to reactively querying any form, from anywhere. <br>
21
22
✅ Persist the form's state to local storage.
@@ -55,6 +56,9 @@ import { NgFormsManager } from '@ngneat/forms-manager';
55
56
`
56
57
})
57
58
exportclassOnboardingComponent {
59
+
60
+
onboardingForm:FormGroup;
61
+
58
62
constructor(
59
63
privateformsManager:NgFormsManager,
60
64
privatebuilder:FormBuilder
@@ -247,7 +251,7 @@ export class HomeComponent{
247
251
248
252
## Using FormArray Controls
249
253
250
-
When working with a `FormArray`, it's required to pass a `factory` function that instruct how to create the `controls` inside the `FormArray`. For example:
254
+
When working with a `FormArray`, it's required to pass a `factory` function that defines how to create the `controls` inside the `FormArray`. For example:
0 commit comments