Skip to content

Commit f4bbffc

Browse files
committed
main - a5aade2 fix(material/form-field): preserve aria-describedby set externally across all form controls (#30699)
1 parent 905c7f1 commit f4bbffc

File tree

3 files changed

+34
-8
lines changed

3 files changed

+34
-8
lines changed

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

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2814,6 +2814,19 @@ <h4 id="MatChipTextControl" class="docs-header-link docs-api-h4 docs-api-interfa
28142814

28152815

28162816

2817+
<tr class="docs-api-properties-row">
2818+
<td class="docs-api-properties-name-cell"><p class="docs-api-property-name">
2819+
<code>describedByIds: string[]</code>
2820+
</p>
2821+
</td>
2822+
<td class="docs-api-property-description"><p>Gets the list of ids the input is described by.</p>
2823+
</td>
2824+
</tr>
2825+
2826+
2827+
2828+
2829+
28172830
<tr class="docs-api-properties-row">
28182831
<td class="docs-api-properties-name-cell"><p class="docs-api-property-name">
28192832
<code>empty: boolean</code>

docs-content/api-docs/material-form-field.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,19 @@ <h4 id="MatFormFieldControl" class="docs-header-link docs-api-h4 docs-api-class-
244244

245245

246246

247+
<tr class="docs-api-properties-row">
248+
<td class="docs-api-properties-name-cell"><p class="docs-api-property-name">
249+
<code>describedByIds: string[]</code>
250+
</p>
251+
</td>
252+
<td class="docs-api-property-description"><p>Gets the list of element IDs that currently describe this control.</p>
253+
</td>
254+
</tr>
255+
256+
257+
258+
259+
247260
<tr class="docs-api-properties-row">
248261
<td class="docs-api-properties-name-cell"><p class="docs-api-property-name">
249262
<code>disableAutomaticLabeling: boolean</code>

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": "20.0.0-next.6+sha-63e3c4a",
3+
"version": "20.0.0-next.6+sha-a5aade2",
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/cdk": "20.0.0-next.6+sha-63e3c4a",
263-
"@angular/cdk-experimental": "20.0.0-next.6+sha-63e3c4a",
262+
"@angular/cdk": "20.0.0-next.6+sha-a5aade2",
263+
"@angular/cdk-experimental": "20.0.0-next.6+sha-a5aade2",
264264
"@angular/core": "^20.0.0-0 || ^20.1.0-0 || ^20.2.0-0 || ^20.3.0-0 || ^21.0.0-0",
265265
"@angular/common": "^20.0.0-0 || ^20.1.0-0 || ^20.2.0-0 || ^20.3.0-0 || ^21.0.0-0",
266-
"@angular/material": "20.0.0-next.6+sha-63e3c4a",
267-
"@angular/material-experimental": "20.0.0-next.6+sha-63e3c4a",
268-
"@angular/material-moment-adapter": "20.0.0-next.6+sha-63e3c4a",
269-
"@angular/material-luxon-adapter": "20.0.0-next.6+sha-63e3c4a",
270-
"@angular/material-date-fns-adapter": "20.0.0-next.6+sha-63e3c4a"
266+
"@angular/material": "20.0.0-next.6+sha-a5aade2",
267+
"@angular/material-experimental": "20.0.0-next.6+sha-a5aade2",
268+
"@angular/material-moment-adapter": "20.0.0-next.6+sha-a5aade2",
269+
"@angular/material-luxon-adapter": "20.0.0-next.6+sha-a5aade2",
270+
"@angular/material-date-fns-adapter": "20.0.0-next.6+sha-a5aade2"
271271
},
272272
"devDependencies": {
273273
"@angular/cdk": "workspace:*",

0 commit comments

Comments
 (0)