Better sliders!

Add marks and value indication. (Fixes #146)
This commit is contained in:
uwap 2020-10-19 06:24:04 +02:00
parent 0f08e9f1ee
commit a44eea520a
5 changed files with 14 additions and 6 deletions

View file

@ -58,9 +58,10 @@ export type UISlider = $ReadOnly<{|
topic: string,
icon?: Icon,
enableCondition?: (s: State) => boolean,
marks?: boolean | Array<{ value: number, label: string}>,
min?: number,
max?: number,
step?: number
step?: ?number
|}>;
export type UISection = $ReadOnly<{|