Whether or not the ripple should be disabled.
()
| 319 | |
| 320 | /** Whether or not the ripple should be disabled. */ |
| 321 | _isRippleDisabled(): boolean { |
| 322 | return ( |
| 323 | this.disabled || |
| 324 | this.disableRipple || |
| 325 | this._animationsDisabled || |
| 326 | this._isBasicChip || |
| 327 | !this._hasInteractiveActions() || |
| 328 | !!this._globalRippleOptions?.disabled |
| 329 | ); |
| 330 | } |
| 331 | |
| 332 | /** Returns whether the chip has a trailing icon. */ |
| 333 | _hasTrailingIcon() { |
no test coverage detected