Skip to content

Commit 49c1419

Browse files
committed
fix(material/stepper): changes vertical stepper aria attributes to tree-related
Updates Angular Components Stepper vertical stepper to use and match correct aria attributes to match role=tree instead of using tablist/tab/tabpanel since moving the tabpanel content outside of the mat-step changes the visual look of the vertical stepper. WIP: update the docs to mention change of roles for vertical stepper to tree and its appropriate aria-attributes. Fixes b/361783174
1 parent 3cb4375 commit 49c1419

File tree

2 files changed

+32
-24
lines changed

2 files changed

+32
-24
lines changed

src/cdk/stepper/step-header.ts

-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@ import {FocusableOption} from '@angular/cdk/a11y';
1111

1212
@Directive({
1313
selector: '[cdkStepHeader]',
14-
host: {
15-
'role': 'tab',
16-
},
1714
})
1815
export class CdkStepHeader implements FocusableOption {
1916
_elementRef = inject<ElementRef<HTMLElement>>(ElementRef);

src/material/stepper/stepper.html

+32-21
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
<div class="mat-horizontal-stepper-header-container" role="tablist">
1515
@for (step of steps; track step) {
1616
<ng-container
17-
role="tab"
1817
[ngTemplateOutlet]="stepTemplate"
1918
[ngTemplateOutletContext]="{step, i: $index}"/>
2019
@if (!$last) {
@@ -43,21 +42,31 @@
4342
@case ('vertical') {
4443
<div class="mat-vertical-stepper-wrapper" role="tree">
4544
@for (step of steps; track step) {
46-
<div class="mat-step" role="treeitem">
47-
<ng-container
48-
[ngTemplateOutlet]="stepTemplate"
49-
[ngTemplateOutletContext]="{step, i: $index}"/>
50-
<div
51-
#animatedContainer
52-
class="mat-vertical-content-container"
53-
[class.mat-stepper-vertical-line]="!$last"
54-
[class.mat-vertical-content-container-active]="selectedIndex === $index"
55-
[attr.inert]="selectedIndex === $index ? null : ''">
56-
<div class="mat-vertical-stepper-content"
57-
[id]="_getStepContentId($index)"
58-
[attr.aria-labelledby]="_getStepLabelId($index)">
59-
<div class="mat-vertical-content">
60-
<ng-container [ngTemplateOutlet]="step.content"/>
45+
<div class="mat-step"
46+
role="treeitem"
47+
[attr.aria-setsize]="steps.length"
48+
[attr.aria-posinset]="$index + 1"
49+
[attr.aria-selected]="selectedIndex == $index"
50+
[attr.aria-controls]="_getStepContentId($index)"
51+
[attr.aria-label]="step.ariaLabel || null"
52+
[attr.aria-labelledby]="(!step.ariaLabel && step.ariaLabelledby) ? step.ariaLabelledby : null"
53+
[attr.aria-disabled]="_stepIsNavigable($index, step) ? null : true">
54+
<div role="group">
55+
<ng-container
56+
[ngTemplateOutlet]="stepTemplate"
57+
[ngTemplateOutletContext]="{step, i: $index}"/>
58+
<div
59+
#animatedContainer
60+
class="mat-vertical-content-container"
61+
[class.mat-stepper-vertical-line]="!$last"
62+
[class.mat-vertical-content-container-active]="selectedIndex === $index"
63+
[attr.inert]="selectedIndex === $index ? null : ''">
64+
<div class="mat-vertical-stepper-content"
65+
[id]="_getStepContentId($index)"
66+
[attr.aria-labelledby]="_getStepLabelId($index)">
67+
<div class="mat-vertical-content">
68+
<ng-container [ngTemplateOutlet]="step.content"/>
69+
</div>
6170
</div>
6271
</div>
6372
</div>
@@ -76,13 +85,15 @@
7685
(keydown)="_onKeydown($event)"
7786
[tabIndex]="_getFocusIndex() === i ? 0 : -1"
7887
[id]="_getStepLabelId(i)"
79-
[attr.aria-posinset]="i + 1"
80-
[attr.aria-setsize]="steps.length"
81-
[attr.aria-controls]="_getStepContentId(i)"
82-
[attr.aria-selected]="selectedIndex == i"
88+
[attr.role]="orientation === 'horizontal'? 'tab' : 'heading'"
89+
[attr.aria-posinset]="orientation === 'horizontal'? i + 1 : undefined"
90+
[attr.aria-setsize]="orientation === 'horizontal'? steps.length : undefined"
91+
[attr.aria-controls]="orientation === 'horizontal'? _getStepContentId(i) : undefined"
92+
[attr.aria-selected]="orientation === 'horizontal'? selectedIndex == i : undefined"
93+
[attr.aria-level]="orientation === 'vertical'? 4 : undefined"
8394
[attr.aria-label]="step.ariaLabel || null"
8495
[attr.aria-labelledby]="(!step.ariaLabel && step.ariaLabelledby) ? step.ariaLabelledby : null"
85-
[attr.aria-disabled]="_stepIsNavigable(i, step) ? null : true"
96+
[attr.aria-disabled]="orientation === 'horizontal'? _stepIsNavigable(i, step) ? null : true : undefined"
8697
[index]="i"
8798
[state]="_getIndicatorType(i, step.state)"
8899
[label]="step.stepLabel || step.label"

0 commit comments

Comments
 (0)