Skip to content

Commit eed8a03

Browse files
committed
Replaced aria-hidden with inert
1 parent 20ee25b commit eed8a03

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/cdk-experimental/tabs/tabs.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ export class CdkTab {
193193
'role': 'tabpanel',
194194
'class': 'cdk-tabpanel',
195195
'[attr.id]': 'pattern.id()',
196-
'[attr.aria-hidden]': 'pattern.hidden()',
196+
'[attr.inert]': 'pattern.hidden() ? true : null',
197197
},
198198
})
199199
export class CdkTabpanel {

src/components-examples/cdk-experimental/tabs/cdk-tabs/cdk-tabs-example.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,6 @@
7171
margin: 8px;
7272
}
7373

74-
.example-tabpanel[aria-hidden='true'] {
74+
.example-tabpanel[inert] {
7575
display: none;
7676
}

0 commit comments

Comments
 (0)