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
[Slider] Replace reversed with rtl support on horizontal sliders (mui#12972)
* [Slider] Replace reversed with rtl support on horizontal sliders
This follows WAI-ARIA slider authoring practices as well as the
material design specs. The vertical slider is kept regardless.
* [docs] Remove obsolete reverse slider section
Copy file name to clipboardExpand all lines: pages/lab/api/slider.md
-2Lines changed: 0 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,6 @@ import Slider from '@material-ui/lab/Slider';
27
27
| <spanclass="prop-name">onChange</span> | <spanclass="prop-type">func || Callback function that is fired when the slider's value changed. |
28
28
| <spanclass="prop-name">onDragEnd</span> | <spanclass="prop-type">func || Callback function that is fired when the slide has stopped moving. |
29
29
| <spanclass="prop-name">onDragStart</span> | <spanclass="prop-type">func || Callback function that is fired when the slider has begun to move. |
30
-
| <spanclass="prop-name">reverse</span> | <spanclass="prop-type">bool || If `true`, the slider will be reversed. |
31
30
| <spanclass="prop-name">step</span> | <spanclass="prop-type">number || The granularity the slider can step through values. |
32
31
| <spanclass="prop-name">thumb</span> | <spanclass="prop-type">element || The component used for the slider icon. This is optional, if provided should be a react element. |
33
32
| <spanclass="prop-name required">value *</span> | <spanclass="prop-type">number || The value of the slider. |
@@ -51,7 +50,6 @@ This property accepts the following keys:
51
50
| <spanclass="prop-name">thumb</span> | Styles applied to the thumb element.
52
51
| <spanclass="prop-name">thumbIconWrapper</span> | Class applied to the thumb element if custom thumb icon provided.
53
52
| <spanclass="prop-name">thumbIcon</span> |
54
-
| <spanclass="prop-name">reverse</span> | Class applied to the root element to trigger JSS nested styles if `reverse={true}`.
55
53
| <spanclass="prop-name">disabled</span> | Class applied to the track and thumb elements to trigger JSS nested styles if `disabled`.
56
54
| <spanclass="prop-name">jumped</span> | Class applied to the track and thumb elements to trigger JSS nested styles if `jumped`.
57
55
| <spanclass="prop-name">focused</span> | Class applied to the track and thumb elements to trigger JSS nested styles if `focused`.
0 commit comments