Skip to content

Commit c8199a5

Browse files
committed
add describedByIds to other controls
1 parent 4e60f20 commit c8199a5

File tree

6 files changed

+42
-1
lines changed

6 files changed

+42
-1
lines changed

src/material/chips/chip-grid.ts

+8
Original file line numberDiff line numberDiff line change
@@ -349,6 +349,14 @@ export class MatChipGrid
349349
this.stateChanges.next();
350350
}
351351

352+
/**
353+
* Implemented as part of MatFormFieldControl.
354+
* @docs-private
355+
*/
356+
get describedByIds(): string[] {
357+
return this._chipInput?.describedByIds || [];
358+
}
359+
352360
/**
353361
* Implemented as part of MatFormFieldControl.
354362
* @docs-private

src/material/chips/chip-input.ts

+11
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,17 @@ export class MatChipInput implements MatChipTextControl, OnChanges, OnDestroy {
207207
this.inputElement.value = '';
208208
}
209209

210+
/**
211+
* Implemented as part of MatChipTextControl.
212+
* @docs-private
213+
*/
214+
get describedByIds(): string[] {
215+
const element = this._elementRef.nativeElement;
216+
const existingDescribedBy = element.getAttribute('aria-describedby');
217+
218+
return existingDescribedBy?.split(' ') || [];
219+
}
220+
210221
setDescribedByIds(ids: string[]): void {
211222
const element = this._elementRef.nativeElement;
212223

src/material/chips/chip-text-control.ts

+3
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ export interface MatChipTextControl {
2323
/** Focuses the text control. */
2424
focus(): void;
2525

26+
/** Gets the list of ids the input is described by. */
27+
readonly describedByIds?: string[];
28+
2629
/** Sets the list of ids the input is described by. */
2730
setDescribedByIds(ids: string[]): void;
2831
}

src/material/datepicker/date-range-input.ts

+8
Original file line numberDiff line numberDiff line change
@@ -284,6 +284,14 @@ export class MatDateRangeInput<D>
284284
this.ngControl = inject(ControlContainer, {optional: true, self: true}) as any;
285285
}
286286

287+
/**
288+
* Implemented as part of MatFormFieldControl.
289+
* @docs-private
290+
*/
291+
get describedByIds(): string[] {
292+
return this._ariaDescribedBy?.split(' ') || [];
293+
}
294+
287295
/**
288296
* Implemented as a part of `MatFormFieldControl`.
289297
* @docs-private

src/material/input/input.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ export class MatInput
560560

561561
/**
562562
* Implemented as part of MatFormFieldControl.
563-
* @docs-privatex`
563+
* @docs-private
564564
*/
565565
setDescribedByIds(ids: string[]) {
566566
const element = this._elementRef.nativeElement;

src/material/select/select.ts

+11
Original file line numberDiff line numberDiff line change
@@ -1449,6 +1449,17 @@ export class MatSelect
14491449
return value;
14501450
}
14511451

1452+
/**
1453+
* Implemented as part of MatFormFieldControl.
1454+
* @docs-private
1455+
*/
1456+
get describedByIds(): string[] {
1457+
const element = this._elementRef.nativeElement;
1458+
const existingDescribedBy = element.getAttribute('aria-describedby');
1459+
1460+
return existingDescribedBy?.split(' ') || [];
1461+
}
1462+
14521463
/**
14531464
* Implemented as part of MatFormFieldControl.
14541465
* @docs-private

0 commit comments

Comments
 (0)