MCPcopy
hub / github.com/angular/components / MatChipTextControl

Interface MatChipTextControl

src/material/chips/chip-text-control.ts:10–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8
9/** Interface for a text control that is used to drive interaction with a mat-chip-grid. */
10export interface MatChipTextControl {
11 /** Unique identifier for the text control. */
12 id: string;
13
14 /** The text control's placeholder text. */
15 placeholder: string;
16
17 /** Whether the text control has browser focus. */
18 focused: boolean;
19
20 /** Whether the text control is empty. */
21 empty: boolean;
22
23 /** Focuses the text control. */
24 focus(): void;
25
26 /** Gets the list of ids the input is described by. */
27 readonly describedByIds?: string[];
28
29 /** Sets the list of ids the input is described by. */
30 setDescribedByIds(ids: string[]): void;
31}

Callers 12

chip-grid.spec.tsFile · 0.65
_handleFocusMethod · 0.65
_onEditFinishMethod · 0.65
focusMethod · 0.65
chip-row.spec.tsFile · 0.65
initializeMethod · 0.65
focusMethod · 0.65
registerInputMethod · 0.65
setDescribedByIdsMethod · 0.65
chip-input.spec.tsFile · 0.65
_syncDescribedByIdsMethod · 0.65

Implementers 4

MatChipInputsrc/material/chips/chip-input.ts
MatChipGridsrc/material/chips/chip-grid.ts
MatSelectsrc/material/select/select.ts
MatInputsrc/material/input/input.ts

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…