-
Notifications
You must be signed in to change notification settings - Fork 58
FORMS-18671: Visible label missing @sunnym @vavarshn #1603
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: dev
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,20 +35,22 @@ | |
<div data-sly-call="${questionMark.questionMark @componentId=file.id, longDescription=file.description, bemBlock='cmp-adaptiveform-fileinput'}" data-sly-unwrap></div> | ||
</div> | ||
</br> | ||
<label data-sly-test="${file.buttonText}" for="${file.id}_widget" tabindex="0" role="button" class="cmp-adaptiveform-fileinput__widgetlabel">${file.buttonText}</label> | ||
<input class="cmp-adaptiveform-fileinput__widget" | ||
data-sly-attribute.multiple="${file.isMultiple ? 'multiple' : ''}" | ||
style="${file.buttonText ? 'display:none' : '' @ context='styleString'}" | ||
title="${file.tooltipVisible ? '' : file.tooltipText}" | ||
name="${file.name}" | ||
disabled="${!file.enabled}" | ||
required="${file.required}" | ||
accept="${file.accept}" | ||
id="${file.id}_widget" | ||
type="file" | ||
aria-describedby="${file.id}__errormessage ${file.id}__longdescription ${file.id}__shortdescription" | ||
data-cmp-data-layer="${file.data.json}" | ||
/> | ||
<div class="cmp-adaptiveform-fileinput__widget-container"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We have a V3 component. You should update the HTML in the latest version, but V3 component already includes a container .
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Updated in V3. Also changed the name of the container to align with the #syncAriaLabel() update. V1 remained changed as well. |
||
<label data-sly-test="${file.buttonText}" for="${file.id}_widget" tabindex="0" role="button" class="cmp-adaptiveform-fileinput__widgetlabel">${file.buttonText}</label> | ||
<input class="cmp-adaptiveform-fileinput__widget" | ||
data-sly-attribute.multiple="${file.isMultiple ? 'multiple' : ''}" | ||
style="${file.buttonText ? 'display:none' : '' @ context='styleString'}" | ||
title="${file.tooltipVisible ? '' : file.tooltipText}" | ||
name="${file.name}" | ||
disabled="${!file.enabled}" | ||
required="${file.required}" | ||
accept="${file.accept}" | ||
id="${file.id}_widget" | ||
type="file" | ||
aria-describedby="${file.id}__errormessage ${file.id}__longdescription ${file.id}__shortdescription" | ||
data-cmp-data-layer="${file.data.json}" | ||
/> | ||
</div> | ||
<ul class="cmp-adaptiveform-fileinput__filelist"></ul> | ||
<div data-sly-call="${shortDescription.shortDescription @componentId=file.id, shortDescriptionVisible=file.tooltipVisible, shortDescription=file.tooltip, bemBlock='cmp-adaptiveform-fileinput'}" data-sly-unwrap> | ||
</div> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,27 +35,29 @@ | |
<div data-sly-call="${label.label @componentId=tnc.id, labelValue=tnc.label.value, labelVisible=tnc.label.visible, labelRichText=tnc.label.richText, bemBlock='cmp-adaptiveform-termsandcondition'}" data-sly-unwrap></div> | ||
<div data-sly-call="${questionMark.questionMark @componentId=tnc.id, longDescription=tnc.description, bemBlock='cmp-adaptiveform-termsandcondition'}" data-sly-unwrap></div> | ||
</div> | ||
<div class="cmp-adaptiveform-termsandcondition__content-container ${!wcmmode.edit && tnc.showAsPopup ? 'cmp-adaptiveform-termsandcondition__content-container--modal' : ''}" | ||
data-cmp-visible="${tnc.showAsPopup ? 'false' : 'true'}"> | ||
<div class="cmp-adaptiveform-termsandcondition__body"> | ||
<div class="cmp-adaptiveform-termsandcondition__header" data-sly-test="${tnc.showAsPopup && !wcmmode.edit}"> | ||
<button type="button" class="cmp-adaptiveform-termsandcondition__close-button" > | ||
X | ||
</button> | ||
<h3> | ||
${"Please review the terms and conditions" @ i18n, context='html'} | ||
</h3> | ||
</div> | ||
<div class="cmp-adaptiveform-termsandcondition__content"> | ||
<div data-sly-test="${!tnc.showLink}" class="cmp-adaptiveform-termsandcondition__text"> | ||
<div data-sly-resource="${'text'}"></div> | ||
<div class="cmp-adaptiveform-termsandcondition__text-intersect"></div> | ||
<div class="cmp-adaptiveform-termsandcondition__widget-container"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why is it necessary to add a new container element? Is it not possible with the existing container element There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Needed a container to encapsulate both the T&C text description and checkbox (for using with label and role). On Win+NVDA keyboard navigation will skip directly to the Checkbox, ignoring the fact it's part of a component. |
||
<div class="cmp-adaptiveform-termsandcondition__content-container ${!wcmmode.edit && tnc.showAsPopup ? 'cmp-adaptiveform-termsandcondition__content-container--modal' : ''}" | ||
data-cmp-visible="${tnc.showAsPopup ? 'false' : 'true'}"> | ||
<div class="cmp-adaptiveform-termsandcondition__body"> | ||
<div class="cmp-adaptiveform-termsandcondition__header" data-sly-test="${tnc.showAsPopup && !wcmmode.edit}"> | ||
<button type="button" class="cmp-adaptiveform-termsandcondition__close-button" > | ||
X | ||
</button> | ||
<h3> | ||
${"Please review the terms and conditions" @ i18n, context='html'} | ||
</h3> | ||
</div> | ||
<div class="cmp-adaptiveform-termsandcondition__content"> | ||
<div data-sly-test="${!tnc.showLink}" class="cmp-adaptiveform-termsandcondition__text"> | ||
<div data-sly-resource="${'text'}"></div> | ||
<div class="cmp-adaptiveform-termsandcondition__text-intersect"></div> | ||
</div> | ||
<div class="cmp-adaptiveform-termsandcondition__link" data-sly-test="${tnc.showLink}" data-sly-resource="${'link'}"></div> | ||
</div> | ||
<div class="cmp-adaptiveform-termsandcondition__link" data-sly-test="${tnc.showLink}" data-sly-resource="${'link'}"></div> | ||
</div> | ||
</div> | ||
<div class="cmp-adaptiveform-termsandcondition__approvalcheckbox" data-sly-test="${tnc.showApprovalOption}" data-sly-resource="${'approvalcheckbox'}"></div> | ||
</div> | ||
<div class="cmp-adaptiveform-termsandcondition__approvalcheckbox" data-sly-test="${tnc.showApprovalOption}" data-sly-resource="${'approvalcheckbox'}"></div> | ||
<div data-sly-call="${shortDescription.shortDescription @componentId=tnc.id, shortDescriptionVisible=tnc.tooltipVisible, shortDescription=tnc.tooltip, bemBlock='cmp-adaptiveform-termsandcondition'}" data-sly-unwrap></div> | ||
<div data-sly-call="${longDescription.longDescription @componentId=tnc.id, longDescription=tnc.description, bemBlock='cmp-adaptiveform-termsandcondition'}" data-sly-unwrap></div> | ||
</div> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you add the role="group" attribute, you must connect the label to the group using the aria-labelledby attribute.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added logic in FormFieldBase.js for this. Should help both CheckboxGroup and RadioGroup.