zmp-react
Version:
Build full featured iOS & Android apps using ZMP & React
33 lines (32 loc) • 835 B
JavaScript
import Range from '../components/range';
/* dts-props
id?: string | number;
className?: string;
style?: React.CSSProperties;
init? : boolean
value? : number | Array<any> | string
min? : number | string
max? : number | string
step? : number | string
label? : boolean
dual? : boolean
vertical? : boolean
verticalReversed? : boolean
draggableBar? : boolean
formatLabel? : Function
scale? : boolean
scaleSteps? : number
scaleSubSteps? : number
formatScaleLabel? : Function
limitKnobPosition? : boolean
name? : string
input? : boolean
inputId? : string
disabled? : boolean
COLOR_PROPS
onRangeChange? : (val?: any) => void
onRangeChanged? : (val?: any) => void
ref?: React.MutableRefObject<{el: HTMLElement | null; zmpRange: () => Range.Range}>;
CHILDREN_PROP
*/
export default Range;