Skip to content

Commit c8cc414

Browse files
crisbetommalerba
authored andcommitted
refactor(slider): remove 6.0.0 deletion targets (#10373)
Removes the 6.0.0 deletion targets from the `material/slider` entry point. BREAKING CHANGES: * `thumb-label` which was deprecated in 5.0.0 has been removed. Use `thumbLabel` instead. * `tick-interval` which was deprecated in 5.0.0 has been removed. Use `tickInterval` instead.
1 parent 999cb57 commit c8cc414

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

src/lib/slider/slider.ts

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -193,14 +193,6 @@ export class MatSlider extends _MatSliderMixinBase
193193
set thumbLabel(value: boolean) { this._thumbLabel = coerceBooleanProperty(value); }
194194
private _thumbLabel: boolean = false;
195195

196-
/**
197-
* @deprecated
198-
* @deletion-target 6.0.0
199-
*/
200-
@Input('thumb-label')
201-
get _thumbLabelDeprecated(): boolean { return this._thumbLabel; }
202-
set _thumbLabelDeprecated(value) { this._thumbLabel = value; }
203-
204196
/**
205197
* How often to show ticks. Relative to the step so that a tick always appears on a step.
206198
* Ex: Tick interval of 4 with a step of 3 will draw a tick every 4 steps (every 12 values).
@@ -218,14 +210,6 @@ export class MatSlider extends _MatSliderMixinBase
218210
}
219211
private _tickInterval: 'auto' | number = 0;
220212

221-
/**
222-
* @deprecated
223-
* @deletion-target 6.0.0
224-
*/
225-
@Input('tick-interval')
226-
get _tickIntervalDeprecated() { return this.tickInterval; }
227-
set _tickIntervalDeprecated(v) { this.tickInterval = v; }
228-
229213
/** Value of the slider. */
230214
@Input()
231215
get value(): number | null {

0 commit comments

Comments
 (0)