From f5aa551f2e70f2713f8f5520bb02f8e10f5ee701 Mon Sep 17 00:00:00 2001 From: Adam Kudrna Date: Mon, 4 Dec 2023 16:57:00 +0100 Subject: [PATCH] Demonstrate the new `required` attribute of `InputGroup` Also, fix the docs link pointing to wrong MDN page. --- src/components/InputGroup/README.md | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/src/components/InputGroup/README.md b/src/components/InputGroup/README.md index 5ba4ba1c..c92deeed 100644 --- a/src/components/InputGroup/README.md +++ b/src/components/InputGroup/README.md @@ -176,9 +176,14 @@ not show any `validationText`, they only show their respective `validationState` Validation messages passed to input elements' `validationText` prop will be ignored. +👉 While there is a `required` property to visually denote the whole input group +is required, there is no functional effect as there is no such HTML attribute +for the underlying `
` element. + ```docoff-react-preview