Last change
on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
695 bytes
|
Line | |
---|
1 | /**
|
---|
2 | * @license
|
---|
3 | * Copyright Google LLC All Rights Reserved.
|
---|
4 | *
|
---|
5 | * Use of this source code is governed by an MIT-style license that can be
|
---|
6 | * found in the LICENSE file at https://angular.io/license
|
---|
7 | */
|
---|
8 | /** Interface for a text control that is used to drive interaction with a mat-chip-list. */
|
---|
9 | export interface MatChipTextControl {
|
---|
10 | /** Unique identifier for the text control. */
|
---|
11 | id: string;
|
---|
12 | /** The text control's placeholder text. */
|
---|
13 | placeholder: string;
|
---|
14 | /** Whether the text control has browser focus. */
|
---|
15 | focused: boolean;
|
---|
16 | /** Whether the text control is empty. */
|
---|
17 | empty: boolean;
|
---|
18 | /** Focuses the text control. */
|
---|
19 | focus(options?: FocusOptions): void;
|
---|
20 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.