feat(range): add ticks attribute (#17718)

closes #17717
This commit is contained in:
Seth Lilly
2019-03-26 14:33:16 -04:00
committed by Brandy Carney
parent 583c43127b
commit 016fa16d44
11 changed files with 105 additions and 55 deletions

View File

@ -3332,6 +3332,10 @@ export namespace Components {
*/
'step': number;
/**
* If `true`, tick marks are displayed based on the step value. Only applies when `snaps` is `true`.
*/
'ticks': boolean;
/**
* the value of the range.
*/
'value': RangeValue;
@ -3394,6 +3398,10 @@ export namespace Components {
*/
'step'?: number;
/**
* If `true`, tick marks are displayed based on the step value. Only applies when `snaps` is `true`.
*/
'ticks'?: boolean;
/**
* the value of the range.
*/
'value'?: RangeValue;