Skip to content

Commit f15c7a0

Browse files
committed
yarn approve-api
1 parent 83833c9 commit f15c7a0

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tools/public_api_guard/material/chips.d.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export interface MatChipEvent {
6363
chip: MatChip;
6464
}
6565

66-
export declare class MatChipInput implements MatChipTextControl, OnChanges {
66+
export declare class MatChipInput implements MatChipTextControl, OnChanges, OnDestroy, AfterContentInit {
6767
_addOnBlur: boolean;
6868
_chipList: MatChipList;
6969
protected _elementRef: ElementRef<HTMLInputElement>;
@@ -84,9 +84,12 @@ export declare class MatChipInput implements MatChipTextControl, OnChanges {
8484
_emitChipEnd(event?: KeyboardEvent): void;
8585
_focus(): void;
8686
_keydown(event?: KeyboardEvent): void;
87+
_keyup(event: KeyboardEvent): void;
8788
_onInput(): void;
8889
focus(options?: FocusOptions): void;
90+
ngAfterContentInit(): void;
8991
ngOnChanges(): void;
92+
ngOnDestroy(): void;
9093
static ngAcceptInputType_addOnBlur: BooleanInput;
9194
static ngAcceptInputType_disabled: BooleanInput;
9295
static ɵdir: i0.ɵɵDirectiveDefWithMeta<MatChipInput, "input[matChipInputFor]", ["matChipInput", "matChipInputFor"], { "chipList": "matChipInputFor"; "addOnBlur": "matChipInputAddOnBlur"; "separatorKeyCodes": "matChipInputSeparatorKeyCodes"; "placeholder": "placeholder"; "id": "id"; "disabled": "disabled"; }, { "chipEnd": "matChipInputTokenEnd"; }, never>;
@@ -152,7 +155,6 @@ export declare class MatChipList extends _MatChipListMixinBase implements MatFor
152155
_blur(): void;
153156
_focusInput(options?: FocusOptions): void;
154157
_keydown(event: KeyboardEvent): void;
155-
_keyup(event: KeyboardEvent): void;
156158
_markAsTouched(): void;
157159
_setSelectionByValue(value: any, isUserInput?: boolean): void;
158160
protected _updateFocusForDestroyedChips(): void;

0 commit comments

Comments
 (0)