Skip to content

Commit 6dc8515

Browse files
committed
fix(TabContentRef): add aria-selected attribute and role="tab"
1 parent d2c9405 commit 6dc8515

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

projects/coreui-angular/src/lib/tabs/tab-content-ref.directive.ts

+11-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ import { TabService } from './tab.service';
1919
standalone: true
2020
})
2121
export class TabContentRefDirective implements OnChanges, OnDestroy {
22-
2322
constructor(
2423
private changeDetectorRef: ChangeDetectorRef,
2524
private tabService: TabService
@@ -92,7 +91,16 @@ export class TabContentRefDirective implements OnChanges, OnDestroy {
9291
@HostBinding('attr.disabled')
9392
get attrDisabled() {
9493
return this.disabled ? '' : null;
95-
};
94+
}
95+
96+
@HostBinding('attr.aria-selected')
97+
private get ariaSelected() {
98+
return this.active;
99+
}
100+
101+
@Input()
102+
@HostBinding('attr.role')
103+
role = 'tab';
96104

97105
@HostBinding('attr.tabindex')
98106
get getTabindex(): string | null {
@@ -130,7 +138,7 @@ export class TabContentRefDirective implements OnChanges, OnDestroy {
130138
if (subscribe) {
131139
this.tabServiceSubscription = this.tabService.activeTabPaneIdx$.subscribe((tabContentState) => {
132140
if (tabContentState.tabContent === this.tabContentRef) {
133-
this.active = (tabContentState.activeIdx === this.tabPaneIdx);
141+
this.active = tabContentState.activeIdx === this.tabPaneIdx;
134142
}
135143
});
136144
} else {

0 commit comments

Comments
 (0)