()
| 254 | protected _injector = inject(Injector); |
| 255 | |
| 256 | constructor() { |
| 257 | const styleLoader = inject(_CdkPrivateStyleLoader); |
| 258 | styleLoader.load(_StructuralStylesLoader); |
| 259 | styleLoader.load(_VisuallyHiddenLoader); |
| 260 | this._monitorFocus(); |
| 261 | |
| 262 | this._rippleLoader?.configureRipple(this._elementRef.nativeElement, { |
| 263 | className: 'mat-mdc-chip-ripple', |
| 264 | disabled: this._isRippleDisabled(), |
| 265 | }); |
| 266 | } |
| 267 | |
| 268 | ngOnInit() { |
| 269 | // This check needs to happen in `ngOnInit` so the overridden value of |
nothing calls this directly
no test coverage detected