onChangeEnd | (
(value: number[]
)) => void | |
orientation | Orientation | |
isDisabled | boolean | |
formatOptions | Intl.NumberFormatOptions | |
minValue | number | The smallest value allowed for the input. |
maxValue | number | The largest value allowed for the input. |
step | number | The amount that the input value changes with each increment or decrement "tick". |
label | ReactNode | The content to display as the label. |
aria-label | string | Defines a string value that labels the current element. |
aria-labelledby | string | Identifies the element (or elements) that labels the current element. |
aria-describedby | string | Identifies the element (or elements) that describes the object. |
aria-details | string | Identifies the element (or elements) that provide a detailed, extended description for the object. |
value | number[] | The current value (controlled). |
defaultValue | number[] | The default value (uncontrolled). |
onChange | (
(value: number[]
)) => void | Handler that is called when the value changes. |