Skip to content
Snippets Groups Projects
Commit 88f56db9 authored by Marlène SIMONDANT's avatar Marlène SIMONDANT
Browse files

Merge branch '517-checkbox' into 'dev'

fix(accessibility): checkbox

See merge request !821
parents ddc4420a b0991607
No related branches found
No related tags found
2 merge requests!846V3.1.0 (sans impression),!821fix(accessibility): checkbox
<button type="button" tabindex="-1" [ngClass]="{ selected: isChecked }" (click)="clicked()"> <div class="checkbox" tabindex="-1" [ngClass]="{ selected: isChecked }" (click)="clicked()" (keydown.enter)="clicked()">
<app-checkbox [checked]="isChecked" /> <app-checkbox [checked]="isChecked" />
<svg *ngIf="iconSvg" aria-hidden="true" class="icon" [ngClass]="iconType"> <svg *ngIf="iconSvg" aria-hidden="true" class="icon" [ngClass]="iconType">
<use [attr.xlink:href]="'assets/form/sprite.svg#' + iconSvg" /> <use [attr.xlink:href]="'assets/form/sprite.svg#' + iconSvg" />
</svg> </svg>
<p>{{ text }}</p> <p id="checkboxLabel">{{ text }}</p>
</button> </div>
@import 'color'; @import 'color';
@import 'typography'; @import 'typography';
button { div.checkbox {
width: 100%; width: 100%;
height: 80px; height: 80px;
padding: 1rem; padding: 1rem;
......
...@@ -5,5 +5,6 @@ ...@@ -5,5 +5,6 @@
[checked]="checked" [checked]="checked"
[indeterminate]="indeterminate" [indeterminate]="indeterminate"
[disabled]="disabled" [disabled]="disabled"
[attr.aria-labelledby]="'checkboxLabel'"
(click)="action.emit($event)" (click)="action.emit($event)"
/> />
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment