-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(chips): remove circular dependency between chip-list and chip-inp…
…ut (#13994) This change is necessary because some Google-internal infrastructure has started encountering errors because of this particular circular dep.
- Loading branch information
Showing
3 changed files
with
33 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/** | ||
* @license | ||
* Copyright Google LLC All Rights Reserved. | ||
* | ||
* Use of this source code is governed by an MIT-style license that can be | ||
* found in the LICENSE file at https://angular.io/license | ||
*/ | ||
|
||
|
||
/** Interface for a text control that is used to drive interaction with a mat-chip-list. */ | ||
export interface MatChipTextControl { | ||
/** Unique identifier for the text control. */ | ||
id: string; | ||
|
||
/** The text control's placeholder text. */ | ||
placeholder: string; | ||
|
||
/** Whether the text control has browser focus. */ | ||
focused: boolean; | ||
|
||
/** Whether the text control is empty. */ | ||
empty: boolean; | ||
|
||
/** Focuses the text control. */ | ||
focus(): void; | ||
} |