|
14 | 14 | <div class="mat-horizontal-stepper-header-container" role="tablist">
|
15 | 15 | @for (step of steps; track step) {
|
16 | 16 | <ng-container
|
17 |
| - role="tab" |
18 | 17 | [ngTemplateOutlet]="stepTemplate"
|
19 | 18 | [ngTemplateOutletContext]="{step, i: $index}"/>
|
20 | 19 | @if (!$last) {
|
|
43 | 42 | @case ('vertical') {
|
44 | 43 | <div class="mat-vertical-stepper-wrapper" role="tree">
|
45 | 44 | @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> |
61 | 70 | </div>
|
62 | 71 | </div>
|
63 | 72 | </div>
|
|
76 | 85 | (keydown)="_onKeydown($event)"
|
77 | 86 | [tabIndex]="_getFocusIndex() === i ? 0 : -1"
|
78 | 87 | [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" |
83 | 94 | [attr.aria-label]="step.ariaLabel || null"
|
84 | 95 | [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" |
86 | 97 | [index]="i"
|
87 | 98 | [state]="_getIndicatorType(i, step.state)"
|
88 | 99 | [label]="step.stepLabel || step.label"
|
|
0 commit comments