@@ -31,6 +31,7 @@ import { InjectionToken } from '@angular/core';
3131import { MatFormField } from ' @angular/material/form-field' ;
3232import { MatFormFieldControl } from ' @angular/material/form-field' ;
3333import { MatRipple } from ' @angular/material/core' ;
34+ import { MatRippleLoader } from ' @angular/material/core' ;
3435import { NgControl } from ' @angular/forms' ;
3536import { NgForm } from ' @angular/forms' ;
3637import { NgZone } from ' @angular/core' ;
@@ -61,7 +62,7 @@ export const MAT_CHIP_TRAILING_ICON: InjectionToken<unknown>;
6162export const MAT_CHIPS_DEFAULT_OPTIONS: InjectionToken <MatChipsDefaultOptions >;
6263
6364// @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 {
6566 constructor (_changeDetectorRef : ChangeDetectorRef , elementRef : ElementRef <HTMLElement >, _ngZone : NgZone , _focusMonitor : FocusMonitor , _document : any , animationMode ? : string , _globalRippleOptions ? : RippleGlobalOptions | undefined , tabIndex ? : string );
6667 protected _allLeadingIcons: QueryList <MatChipAvatar >;
6768 protected _allRemoveIcons: QueryList <MatChipRemove >;
@@ -90,14 +91,15 @@ export class MatChip extends _MatChipMixinBase implements OnInit, AfterViewInit,
9091 protected _highlighted: boolean ;
9192 id: string ;
9293 _isBasicChip: boolean ;
93- readonly _isRippleCentered = false ;
9494 _isRippleDisabled(): boolean ;
9595 leadingIcon: MatChipAvatar ;
9696 // (undocumented)
9797 ngAfterContentInit(): void ;
9898 // (undocumented)
9999 ngAfterViewInit(): void ;
100100 // (undocumented)
101+ ngDoCheck(): void ;
102+ // (undocumented)
101103 ngOnDestroy(): void ;
102104 // (undocumented)
103105 ngOnInit(): void ;
@@ -114,7 +116,9 @@ export class MatChip extends _MatChipMixinBase implements OnInit, AfterViewInit,
114116 readonly removed: EventEmitter <MatChipEvent >;
115117 removeIcon: MatChipRemove ;
116118 // @deprecated
117- ripple: MatRipple ;
119+ get ripple(): MatRipple ;
120+ set ripple(v : MatRipple );
121+ _rippleLoader: MatRippleLoader ;
118122 role: string | null ;
119123 trailingIcon: MatChipTrailingIcon ;
120124 get value(): any ;
@@ -407,6 +411,8 @@ export class MatChipRow extends MatChip implements AfterViewInit {
407411 // (undocumented)
408412 _isEditing: boolean ;
409413 // (undocumented)
414+ _isRippleDisabled(): boolean ;
415+ // (undocumented)
410416 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 >;
411417 // (undocumented)
412418 static ɵfac: i0 .ɵɵFactoryDeclaration <MatChipRow , [null , null , null , null , null , { optional: true ; }, { optional: true ; }, { attribute: " tabindex" ; }]>;
0 commit comments