You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`slidableZoneSize` | Size of the zone in which sliders can be dragged | `number` or `string` | `7px`,
81
83
`backgroundColor` | Background color of the slider | `string` | `#EEEEEE`
82
84
`equalColor` | Color of all bars when their values are equal | `string` |
83
-
`style` | Custom style for the slider | `object` or `function` | `{}`
84
-
`onSlide*` | Callback that gets called when the progress is updated | `function` |
85
+
`style` | Custom style for the slider <br> *Signature:* <br> `function(props: object) => object` | `object` or `function` | `{}`
86
+
`onSlide` | Callback that is fired when the progress was set <br> *Signature:* <br> `function(progress: number) => void` | `function` |
87
+
`onDragStart` | Callback function that is fired when the slider has begun to move <br> *Signature:* <br> `function(progress: number) => void` | `function` |
88
+
`onDragStop`| Callback function that is fired when the slide has stopped moving <br> *Signature:* <br> `function(progress: number) => void` | `function` |
85
89
`roundedCorners` | When set to `true`, the slider has rounded corners | `bool` | `false`
86
90
`reversed` | When set to `true`, the slider is reversed | `bool` | `false`
87
91
`readOnly` | When set to `true`, the slider can't be updated | `bool` | `false`
0 commit comments