Skip to content

Commit

Permalink
fix(material-experimental/mdc-slider): remove unused event emitters (#…
Browse files Browse the repository at this point in the history
…22921)

* Delete the unused 'change' and 'input' event emitters.
  • Loading branch information
wagnermaciel committed Jun 10, 2021
1 parent 71afc46 commit f750db2
Showing 1 changed file with 0 additions and 6 deletions.
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

0 comments on commit f750db2

Please sign in to comment.