Skip to content

Commit 36642c0

Browse files
committed
main - eba6ee8 fix(material/radio): allow aria attributes to be reset (#32613)
1 parent 14d1c7d commit 36642c0

2 files changed

Lines changed: 11 additions & 11 deletions

File tree

docs-content/api-docs/material-radio.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ <h4 id="MatRadioButton" class="docs-header-link docs-api-h4 docs-api-class-name"
5757
<tr class="docs-api-properties-row">
5858
<td class="docs-api-properties-name-cell"><div class="docs-api-input-marker">@Input(<span class="docs-api-input-alias">&#39;aria-describedby&#39;</span>)
5959
</div><p class="docs-api-property-name">
60-
<code>ariaDescribedby: <code class="docs-api-property-type">string</code></code>
60+
<code>ariaDescribedby: <code class="docs-api-property-type">string | null</code></code>
6161
</p>
6262
</td>
6363
<td class="docs-api-property-description"><p>The &#39;aria-describedby&#39; attribute is read after the element&#39;s label and field type.</p>
@@ -71,7 +71,7 @@ <h4 id="MatRadioButton" class="docs-header-link docs-api-h4 docs-api-class-name"
7171
<tr class="docs-api-properties-row">
7272
<td class="docs-api-properties-name-cell"><div class="docs-api-input-marker">@Input(<span class="docs-api-input-alias">&#39;aria-label&#39;</span>)
7373
</div><p class="docs-api-property-name">
74-
<code>ariaLabel: <code class="docs-api-property-type">string</code></code>
74+
<code>ariaLabel: <code class="docs-api-property-type">string | null</code></code>
7575
</p>
7676
</td>
7777
<td class="docs-api-property-description"><p>Used to set the &#39;aria-label&#39; attribute on the underlying input element.</p>
@@ -85,7 +85,7 @@ <h4 id="MatRadioButton" class="docs-header-link docs-api-h4 docs-api-class-name"
8585
<tr class="docs-api-properties-row">
8686
<td class="docs-api-properties-name-cell"><div class="docs-api-input-marker">@Input(<span class="docs-api-input-alias">&#39;aria-labelledby&#39;</span>)
8787
</div><p class="docs-api-property-name">
88-
<code>ariaLabelledby: <code class="docs-api-property-type">string</code></code>
88+
<code>ariaLabelledby: <code class="docs-api-property-type">string | null</code></code>
8989
</p>
9090
</td>
9191
<td class="docs-api-property-description"><p>The &#39;aria-labelledby&#39; attribute takes precedence as the element&#39;s text alternative.</p>

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular/components-examples",
3-
"version": "21.1.0-next.3+sha-1f34b94",
3+
"version": "21.1.0-next.3+sha-eba6ee8",
44
"description": "Angular Components Examples",
55
"private": true,
66
"repository": {
@@ -259,15 +259,15 @@
259259
},
260260
"homepage": "https://github.com/angular/components#readme",
261261
"peerDependencies": {
262-
"@angular/aria": "21.1.0-next.3+sha-1f34b94",
263-
"@angular/cdk": "21.1.0-next.3+sha-1f34b94",
264-
"@angular/cdk-experimental": "21.1.0-next.3+sha-1f34b94",
262+
"@angular/aria": "21.1.0-next.3+sha-eba6ee8",
263+
"@angular/cdk": "21.1.0-next.3+sha-eba6ee8",
264+
"@angular/cdk-experimental": "21.1.0-next.3+sha-eba6ee8",
265265
"@angular/core": "^21.0.0-0 || ^21.1.0-0 || ^21.2.0-0 || ^21.3.0-0 || ^22.0.0-0",
266266
"@angular/common": "^21.0.0-0 || ^21.1.0-0 || ^21.2.0-0 || ^21.3.0-0 || ^22.0.0-0",
267-
"@angular/material": "21.1.0-next.3+sha-1f34b94",
268-
"@angular/material-experimental": "21.1.0-next.3+sha-1f34b94",
269-
"@angular/material-luxon-adapter": "21.1.0-next.3+sha-1f34b94",
270-
"@angular/material-date-fns-adapter": "21.1.0-next.3+sha-1f34b94"
267+
"@angular/material": "21.1.0-next.3+sha-eba6ee8",
268+
"@angular/material-experimental": "21.1.0-next.3+sha-eba6ee8",
269+
"@angular/material-luxon-adapter": "21.1.0-next.3+sha-eba6ee8",
270+
"@angular/material-date-fns-adapter": "21.1.0-next.3+sha-eba6ee8"
271271
},
272272
"devDependencies": {
273273
"@angular/aria": "workspace:*",

0 commit comments

Comments
 (0)