@@ -31,6 +31,7 @@ import { InjectionToken } from '@angular/core';
31
31
import { MatFormField } from ' @angular/material/form-field' ;
32
32
import { MatFormFieldControl } from ' @angular/material/form-field' ;
33
33
import { MatRipple } from ' @angular/material/core' ;
34
+ import { MatRippleLoader } from ' @angular/material/core' ;
34
35
import { NgControl } from ' @angular/forms' ;
35
36
import { NgForm } from ' @angular/forms' ;
36
37
import { NgZone } from ' @angular/core' ;
@@ -61,7 +62,7 @@ export const MAT_CHIP_TRAILING_ICON: InjectionToken<unknown>;
61
62
export const MAT_CHIPS_DEFAULT_OPTIONS: InjectionToken <MatChipsDefaultOptions >;
62
63
63
64
// @public
64
- export class MatChip extends _MatChipMixinBase implements OnInit , AfterViewInit , AfterContentInit , CanColor , CanDisableRipple , CanDisable , HasTabIndex , OnDestroy {
65
+ export class MatChip extends _MatChipMixinBase implements OnInit , AfterViewInit , AfterContentInit , CanColor , CanDisableRipple , CanDisable , DoCheck , HasTabIndex , OnDestroy {
65
66
constructor (_changeDetectorRef : ChangeDetectorRef , elementRef : ElementRef <HTMLElement >, _ngZone : NgZone , _focusMonitor : FocusMonitor , _document : any , animationMode ? : string , _globalRippleOptions ? : RippleGlobalOptions | undefined , tabIndex ? : string );
66
67
protected _allLeadingIcons: QueryList <MatChipAvatar >;
67
68
protected _allRemoveIcons: QueryList <MatChipRemove >;
@@ -90,14 +91,15 @@ export class MatChip extends _MatChipMixinBase implements OnInit, AfterViewInit,
90
91
protected _highlighted: boolean ;
91
92
id: string ;
92
93
_isBasicChip: boolean ;
93
- readonly _isRippleCentered = false ;
94
94
_isRippleDisabled(): boolean ;
95
95
leadingIcon: MatChipAvatar ;
96
96
// (undocumented)
97
97
ngAfterContentInit(): void ;
98
98
// (undocumented)
99
99
ngAfterViewInit(): void ;
100
100
// (undocumented)
101
+ ngDoCheck(): void ;
102
+ // (undocumented)
101
103
ngOnDestroy(): void ;
102
104
// (undocumented)
103
105
ngOnInit(): void ;
@@ -114,7 +116,9 @@ export class MatChip extends _MatChipMixinBase implements OnInit, AfterViewInit,
114
116
readonly removed: EventEmitter <MatChipEvent >;
115
117
removeIcon: MatChipRemove ;
116
118
// @deprecated
117
- ripple: MatRipple ;
119
+ get ripple(): MatRipple ;
120
+ set ripple(v : MatRipple );
121
+ _rippleLoader: MatRippleLoader ;
118
122
role: string | null ;
119
123
trailingIcon: MatChipTrailingIcon ;
120
124
get value(): any ;
@@ -407,6 +411,8 @@ export class MatChipRow extends MatChip implements AfterViewInit {
407
411
// (undocumented)
408
412
_isEditing: boolean ;
409
413
// (undocumented)
414
+ _isRippleDisabled(): boolean ;
415
+ // (undocumented)
410
416
static ɵcmp: i0 .ɵɵComponentDeclaration <MatChipRow , " mat-chip-row, [mat-chip-row], mat-basic-chip-row, [mat-basic-chip-row]" , never , { " color" : { " alias" : " color" ; " required" : false ; }; " disabled" : { " alias" : " disabled" ; " required" : false ; }; " disableRipple" : { " alias" : " disableRipple" ; " required" : false ; }; " tabIndex" : { " alias" : " tabIndex" ; " required" : false ; }; " editable" : { " alias" : " editable" ; " required" : false ; }; }, { " edited" : " edited" ; }, [" contentEditInput" ], [" mat-chip-avatar, [matChipAvatar]" , " *" , " [matChipEditInput]" , " mat-chip-trailing-icon,[matChipRemove],[matChipTrailingIcon]" ], false , never >;
411
417
// (undocumented)
412
418
static ɵfac: i0 .ɵɵFactoryDeclaration <MatChipRow , [null , null , null , null , null , { optional: true ; }, { optional: true ; }, { attribute: " tabindex" ; }]>;
0 commit comments