Skip to content

Commit 8c9a955

Browse files
committed
update api goldens
1 parent edfd8dc commit 8c9a955

File tree

5 files changed

+7
-0
lines changed

5 files changed

+7
-0
lines changed

goldens/material/chips/index.api.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,7 @@ export class MatChipGrid extends MatChipSet implements AfterContentInit, AfterVi
172172
readonly controlType: string;
173173
// (undocumented)
174174
protected _defaultRole: string;
175+
get describedByIds(): string[];
175176
get disabled(): boolean;
176177
set disabled(value: boolean);
177178
get empty(): boolean;
@@ -250,6 +251,7 @@ export class MatChipInput implements MatChipTextControl, OnChanges, OnDestroy {
250251
// (undocumented)
251252
protected _chipGrid: MatChipGrid;
252253
clear(): void;
254+
get describedByIds(): string[];
253255
get disabled(): boolean;
254256
set disabled(value: boolean);
255257
// (undocumented)
@@ -506,6 +508,7 @@ export class MatChipsModule {
506508

507509
// @public
508510
export interface MatChipTextControl {
511+
readonly describedByIds?: string[];
509512
empty: boolean;
510513
focus(): void;
511514
focused: boolean;

goldens/material/datepicker/index.api.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -567,6 +567,7 @@ export class MatDateRangeInput<D> implements MatFormFieldControl<DateRange<D>>,
567567
controlType: string;
568568
get dateFilter(): DateFilterFn<D>;
569569
set dateFilter(value: DateFilterFn<D>);
570+
get describedByIds(): string[];
570571
readonly disableAutomaticLabeling = true;
571572
get disabled(): boolean;
572573
set disabled(value: boolean);

goldens/material/form-field/index.api.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,7 @@ export type MatFormFieldAppearance = 'fill' | 'outline';
156156
export abstract class MatFormFieldControl<T> {
157157
readonly autofilled?: boolean;
158158
readonly controlType?: string;
159+
readonly describedByIds?: string[];
159160
readonly disableAutomaticLabeling?: boolean;
160161
readonly disabled: boolean;
161162
readonly empty: boolean;

goldens/material/input/index.api.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,7 @@ export class MatInput implements MatFormFieldControl_2<any>, OnChanges, OnDestro
152152
constructor(...args: unknown[]);
153153
autofilled: boolean;
154154
controlType: string;
155+
get describedByIds(): string[];
155156
protected _dirtyCheckNativeValue(): void;
156157
get disabled(): boolean;
157158
set disabled(value: BooleanInput);

goldens/material/select/index.api.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,7 @@ export class MatSelect implements AfterContentInit, OnChanges, OnDestroy, OnInit
266266
customTrigger: MatSelectTrigger;
267267
// (undocumented)
268268
protected _defaultOptions: MatSelectConfig | null;
269+
get describedByIds(): string[];
269270
protected readonly _destroy: Subject<void>;
270271
readonly disableAutomaticLabeling = true;
271272
disabled: boolean;

0 commit comments

Comments
 (0)