Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/lib/core/ripple/ripple.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ export interface RippleGlobalOptions {
* setting it to 0.5 will cause the ripple fade-in animation to take twice as long.
* A changed speedFactor will not affect the fade-out duration of the ripples.
* @deprecated Use the `animation` global option instead.
* @deletion-target 7.0.0
*/
baseSpeedFactor?: number;
}
Expand Down Expand Up @@ -82,6 +83,7 @@ export class MatRipple implements OnInit, OnDestroy, RippleTarget {
* setting it to 0.5 will cause the animations to take twice as long.
* A changed speedFactor will not modify the fade-out duration of the ripples.
* @deprecated Use the [matRippleAnimation] binding instead.
* @deletion-target 7.0.0
*/
@Input('matRippleSpeedFactor') speedFactor: number = 1;

Expand Down
2 changes: 1 addition & 1 deletion src/lib/radio/radio.ts
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ export class MatRadioButton extends _MatRadioButtonMixinBase
/**
* Whether or not the radio-button should appear before or after the label.
* @deprecated
* @deletion-target
* @deletion-target 6.0.0
*/
@Input()
get align(): 'start' | 'end' {
Expand Down
1 change: 1 addition & 0 deletions src/lib/snack-bar/snack-bar-ref.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ export class MatSnackBarRef<T> {
/**
* Marks the snackbar action clicked.
* @deprecated Use `dismissWithAction` instead.
* @deletion-target 7.0.0
*/
closeWithAction(): void {
this.dismissWithAction();
Expand Down