All Downloads are FREE. Search and download functionalities are using the official Maven repository.

components.controls.Slider.allProps.js Maven / Gradle / Ivy

There is a newer version: 7.28.3
Show newest version
import PropTypes from 'prop-types'

export const propTypes = {
    multiple: PropTypes.bool,
    showTooltip: PropTypes.bool,
    tooltipPlacement: PropTypes.string,
    step: PropTypes.number,
    vertical: PropTypes.bool,
    disabled: PropTypes.bool,
    dots: PropTypes.bool,
    min: PropTypes.number,
    max: PropTypes.number,
    marks: PropTypes.object,
    pushable: PropTypes.bool,
    tooltipFormatter: PropTypes.string,
    stringMode: PropTypes.bool,
}

export const defaultProps = {
    multiple: false,
    showTooltip: false,
    tooltipPlacement: 'top',
    stringMode: true,
    onChange: () => {},
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy