From c7e9c7de9a2c9b90accd10350173966d73c4656a Mon Sep 17 00:00:00 2001 From: Ayo Date: Sun, 25 Sep 2022 21:52:47 +0200 Subject: [PATCH] docs: update readme --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index 3ae8f5a..4b6faa7 100644 --- a/README.md +++ b/README.md @@ -29,3 +29,20 @@ const form = new FormGroup([ ---
``` + +# Future Plans +Currently this only supports very basic form creation, but the goal of the project is ambitious: +1. FormGroup class + 1. get(controlName: string) - returns the FormControl with matching name + 1. statusChanges - observable that emits the form status when it changes + 1. valueChanges - observable that emits the values of all controls when they change +1. FormControl class + 1. setValue(value) - set the value of the control programmatically + 1. statusChanges - observable that emits the control status when it changes + 1. valueChanges - observable that emits the control value when it changes + +... and so much more + +**All contributions are welcome. Let's make the fastest web form component powered by Astro** + +