The SVG variant has a different structure. The data-toggle="radios" attribute and btn-group-toggle class are removed and each button has an aria-pressed attribute that needs to be set to true through javascript.
Add is-invalid to the sds-captcha__inner element to show the error message.
Hints are added depending on the type of elements present in the component. See the "text words" and "text large" examples for variations of hints displays.
<fieldset>
<legend>
<label for="" class="sds-label -labelForm -formNoOffset">
Niveau de satisfaction
</label>
</legend>
<div class="sds-captcha -blockDisplay">
<div class="sds-captcha__innerWrapper">
<div class="sds-captcha__hint sds-textHelperSmall d-block d-sm-none text-center">
<span>
<span class="sr-only">One is equal to</span>
Strongly disagree
</span>
</div>
<ul class="list-unstyled sds-captcha__inner btn-group-toggle" data-toggle="radios">
<li>
<label class="sds-captcha__item" for="captcha-1">
<input id="captcha-1" name="captcha" class="sr-only" type="radio">
<span class="sds-badgeSelector sds-captcha__selectorShape -hasText -large">
<span class="sds-badgeSelector__text">Pas satisfait</span>
</span>
</label>
</li>
<li>
<label class="sds-captcha__item" for="captcha-2">
<input id="captcha-2" name="captcha" class="sr-only" type="radio">
<span class="sds-badgeSelector sds-captcha__selectorShape -hasText -large">
<span class="sds-badgeSelector__text">Indifférent</span>
</span>
</label>
</li>
<li>
<label class="sds-captcha__item" for="captcha-3">
<input id="captcha-3" name="captcha" class="sr-only" type="radio">
<span class="sds-badgeSelector sds-captcha__selectorShape -hasText -large">
<span class="sds-badgeSelector__text">Satisfait</span>
</span>
</label>
</li>
</ul>
<div class="sds-captcha__hint sds-textHelperSmall d-none d-sm-flex">
<span>
<span class="sr-only">One is equal to</span>
Strongly disagree
</span>
<span>
<span class="sr-only">Five is equal to</span>
Strongly agree
</span>
</div>
<div class="sds-captcha__hint sds-textHelperSmall d-block d-sm-none text-center">
<span>
<span class="sr-only">Five is equal to</span>
Strongly agree
</span>
</div>
<div class="sds-captcha__error invalid-feedback">
captcha error message
</div>
</div>
</div>
</fieldset>
<fieldset>
<legend>
{% render "@label--form",{classes: ["-formNoOffset"], text: "Niveau de satisfaction"},true %}
</legend>
{% render "@captcha",captchaOptions,true %}
</fieldset>
/* variables specific to current element */
$element-specific-variables: "";
.#{$namespace}captcha {
/* Save root element context for easy access if nesting is needed */
$self: &;
/* properties of current element + media queries */
/* Pseudo Elements */
&::before {
}
&::after {
}
/*
Include elements that are linked to the current element but have to reside at the root level of the stylesheet
(e.g: keyframes)
*/
@at-root {
}
/* children - write selector in full in comments in order to facilitate search */
// recaptcha__childElement
&__selectorShape {
// follows same logic as parent
cursor: pointer;
flex-grow: 1;
/* if button */
&[aria-pressed="true"] {
@include custom-prop-fallback("color", "comp-button-secondary-text-color");
@include custom-prop-fallback("border-color", "comp-button-secondary-text-color");
}
/* if nps */
&[class*="-nps"] {
@include custom-prop-fallback("color", "sys-color-background-primary-160");
input[type="radio"]:checked + & {
outline: $border-width*2 solid;
@include custom-prop-fallback("outline-color","comp-button-secondary-text-color");
outline-offset: $border-width*2;
box-shadow: none !important;
}
}
@each $key, $value in $token-color-nps-map {
$classname: camelize(nps-#{$key});
&.-#{$classname} {
background-color: #{$value};
@if $key == "0" or $key == "1" or $key == "2" {
@include custom-prop-fallback("color", "sys-color-text-neutral-inverse",true,true);
}
}
}
}
&__inner {
@include spacer-component-inline("sm");
display: inline-flex;
}
#{$self}__innerWrapper {
width: fit-content;
}
&__item {
display: flex;
}
INPUT:focus + #{$self}__selectorShape,
INPUT:checked + #{$self}__selectorShape {
@include custom-prop-fallback("border-color", "comp-button-secondary-text-color");
@include custom-prop-fallback("color", "comp-button-secondary-text-color");
}
/* modifiers */
// recaptcha -isDisabled
[disabled] + #{$self}__selectorShape {
@include custom-prop-fallback("color","sys-color-text-neutral-vivid",true,true);
pointer-events: none;
cursor: not-allowed;
}
&__error {
padding-left: 0;
}
&__hint {
margin-top: map-deep-get($token-spacer-stack-max-map, "xxs");
@include custom-prop-fallback("color", "sys-color-text-primary-muted");
display: flex;
justify-content: space-between;
}
&__hint + &__inner {
@include media-breakpoint-between(xs,xs) {
margin-top: map-deep-get($token-spacer-unit-map, "2");
}
}
&.-wrap {
#{$self}__inner {
@include media-breakpoint-up("sm") {
flex-wrap: wrap;
margin-bottom: -(#{map-deep-get($token-spacer-stack-max-map, "sm")});
> * {
margin-bottom: #{map-deep-get($token-spacer-stack-max-map, "sm")};
}
}
}
}
&.-itemsAlignedBlockStart {
@include media-breakpoint-between(xs, xs) {
display: block;
}
#{$self}__selectorShape {
display: flex;
justify-content: flex-start;
}
}
&.-blockDisplay {
@include media-breakpoint-between(xs, xs) {
display: block;
}
#{$self}__innerWrapper {
width: auto;
@include media-breakpoint-up(sm) {
width: fit-content;
}
}
#{$self}__inner {
@include media-breakpoint-between(xs, xs) {
display: block;
}
@include spacer-component-stack("sm");
@include media-breakpoint-up(sm) {
@include unset-spacer-component-stack();
}
> * {
@include media-breakpoint-between(xs, xs) {
display: block;
width: 100%;
margin-right: 0 !important;
}
}
}
}
&.-wrapItems {
#{$self}__inner {
flex-wrap: wrap;
@include unset-spacer-component-inline();
gap: map-deep-get($token-spacer-inline-map, "sm");
}
}
/* random parent element */
/*
*
* Syntax : .randomParentElt & {}
*
*/
/* Pseudo Classes */
&:hover {
@media (hover: hover) {
}
}
&:focus {
}
&:active {
}
&:focus,
&:active {
}
}
/* variables specific to current element */
$element-specific-variables: "";
.#{$namespace}recaptcha {
/* Save root element context for easy access if nesting is needed */
$self: &;
/* properties of current element + media queries */
width: max-content;
/* Pseudo Elements */
&::before {
}
&::after {
}
/*
Include elements that are linked to the current element but have to reside at the root level of the stylesheet
(e.g: keyframes)
*/
@at-root {
}
/* children - write selector in full in comments in order to facilitate search */
// recaptcha__childElement
&__selectorShape {
// follows same logic as parent
cursor: pointer;
/* if button */
&[aria-pressed="true"] {
border: $border-width*2 solid;
color: map-deep-get($token-color-brand-map, "secondary", "100");
}
}
&__inner {
@include spacer-component-inline("sm");
}
INPUT:checked + #{$self}__selectorShape {
box-shadow: inset 0 0 0 $border-width*2 map-deep-get($token-color-brand-map, "secondary", "100") !important;
color: map-deep-get($token-color-brand-map, "secondary", "100");
}
/* modifiers */
// recaptcha -isDisabled
[disabled] + #{$self}__selectorShape {
color: map-deep-get($token-color-brand-map, "fade", "100") !important;
pointer-events: none;
cursor: not-allowed;
}
&__error {
padding-left: 0;
}
&__hint {
margin-top: map-deep-get($token-spacer-stack-max-map, "xxs");
color: map-deep-get($token-color-brand-map, "secondary", "60");
display: flex;
justify-content: space-between;
}
/* random parent element */
/*
*
* Syntax : .randomParentElt & {}
*
*/
/* Pseudo Classes */
&:hover {
@media (hover: hover) {
}
}
&:focus {
}
&:active {
}
&:focus,
&:active {
}
}