Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(material-experimental/mdc-slider): remove unused event emitters #22921

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 0 additions & 6 deletions src/material-experimental/mdc-slider/slider.ts
Expand Up @@ -331,12 +331,6 @@ export class MatSliderThumb implements AfterViewInit, ControlValueAccessor, OnIn
/** Event emitted every time the MatSliderThumb is focused. */
@Output() readonly _focus: EventEmitter<void> = new EventEmitter<void>();

/** Event emitted on pointer up or after left or right arrow key presses. */
@Output() readonly change: EventEmitter<Event> = new EventEmitter<Event>();

/** Event emitted on each value change that happens to the slider. */
@Output() readonly input: EventEmitter<Event> = new EventEmitter<Event>();

/**
* Used to determine the disabled state of the MatSlider (ControlValueAccessor).
* For ranged sliders, the disabled state of the MatSlider depends on the combined state of the
Expand Down