From b29aa6ccf5094c95ef0f25a109259c7739520ce4 Mon Sep 17 00:00:00 2001 From: Stanislav Date: Fri, 8 Dec 2023 02:07:03 +0300 Subject: [PATCH] feat: challenge 40 - forms control value accessor --- .../docs/challenges/forms/40-control-value-accessor.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/src/content/docs/challenges/forms/40-control-value-accessor.md b/docs/src/content/docs/challenges/forms/40-control-value-accessor.md index 183430f..0d8b57a 100644 --- a/docs/src/content/docs/challenges/forms/40-control-value-accessor.md +++ b/docs/src/content/docs/challenges/forms/40-control-value-accessor.md @@ -1,6 +1,6 @@ --- title: 🟠 Control Value Accessor -description: Challenge 40 is about ... +description: Challenge 40 is about creating a custom form control that implements Control Value Accessor interface. author: stanislav-gavrilov challengeNumber: 40 command: forms-control-value-accessor @@ -10,11 +10,11 @@ sidebar: --- :::note -WIP: The following documentation need to be written. +WIP: The following documentation will be reviewed and improved. However, you can still take on the challenge. If you don’t understand a certain part, please feel free to reach out or create an issue. ::: ## Information -## Statement - -## Constraints +In this exercise, you have to rewrite FeedbackControlComponent. It should implement Control Value Accessor interface. +This interface is crucial for creating custom form controls that can interact seamlessly with Angular's forms API. +The primary goal is to use control in the feedbackForm to eliminate the need for using @Output to retrieve the value and check it.