Skip to content

Commit 475b2fd

Browse files
[docs] Fix disableFocusRipple prop description (#21116)
1 parent 48402b6 commit 475b2fd

File tree

14 files changed

+7
-14
lines changed

14 files changed

+7
-14
lines changed

docs/pages/api-docs/button-base.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ The `MuiButtonBase` name can be used for providing [default props](/customizatio
3838
| <span class="prop-name">disabled</span> | <span class="prop-type">bool</span> | <span class="prop-default">false</span> | If `true`, the base button will be disabled. |
3939
| <span class="prop-name">disableRipple</span> | <span class="prop-type">bool</span> | <span class="prop-default">false</span> | If `true`, the ripple effect will be disabled.<br>⚠️ Without a ripple there is no styling for :focus-visible by default. Be sure to highlight the element by applying separate styles with the `focusVisibleClassName`. |
4040
| <span class="prop-name">disableTouchRipple</span> | <span class="prop-type">bool</span> | <span class="prop-default">false</span> | If `true`, the touch ripple effect will be disabled. |
41-
| <span class="prop-name">focusRipple</span> | <span class="prop-type">bool</span> | <span class="prop-default">false</span> | If `true`, the base button will have a keyboard focus ripple. `disableRipple` must also be `false`. |
41+
| <span class="prop-name">focusRipple</span> | <span class="prop-type">bool</span> | <span class="prop-default">false</span> | If `true`, the base button will have a keyboard focus ripple. |
4242
| <span class="prop-name">focusVisibleClassName</span> | <span class="prop-type">string</span> | | This prop can help a person know which element has the keyboard focus. The class name will be applied when the element gain the focus through a keyboard interaction. It's a polyfill for the [CSS :focus-visible selector](https://drafts.csswg.org/selectors-4/#the-focus-visible-pseudo). The rationale for using this feature [is explained here](https://github.com/WICG/focus-visible/blob/master/explainer.md). A [polyfill can be used](https://github.com/WICG/focus-visible) to apply a `focus-visible` class to other components if needed. |
4343
| <span class="prop-name">onFocusVisible</span> | <span class="prop-type">func</span> | | Callback fired when the component is focused with a keyboard. We trigger a `onFocus` callback too. |
4444
| <span class="prop-name">TouchRippleProps</span> | <span class="prop-type">object</span> | | Props applied to the `TouchRipple` element. |

docs/pages/api-docs/button-group.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The `MuiButtonGroup` name can be used for providing [default props](/customizati
3434
| <span class="prop-name">component</span> | <span class="prop-type">elementType</span> | <span class="prop-default">'div'</span> | The component used for the root node. Either a string to use a HTML element or a component. |
3535
| <span class="prop-name">disabled</span> | <span class="prop-type">bool</span> | <span class="prop-default">false</span> | If `true`, the buttons will be disabled. |
3636
| <span class="prop-name">disableElevation</span> | <span class="prop-type">bool</span> | <span class="prop-default">false</span> | If `true`, no elevation is used. |
37-
| <span class="prop-name">disableFocusRipple</span> | <span class="prop-type">bool</span> | <span class="prop-default">false</span> | If `true`, the button keyboard focus ripple will be disabled. `disableRipple` must also be true. |
37+
| <span class="prop-name">disableFocusRipple</span> | <span class="prop-type">bool</span> | <span class="prop-default">false</span> | If `true`, the button keyboard focus ripple will be disabled. |
3838
| <span class="prop-name">disableRipple</span> | <span class="prop-type">bool</span> | <span class="prop-default">false</span> | If `true`, the button ripple effect will be disabled. |
3939
| <span class="prop-name">fullWidth</span> | <span class="prop-type">bool</span> | <span class="prop-default">false</span> | If `true`, the buttons will take up the full width of its container. |
4040
| <span class="prop-name">orientation</span> | <span class="prop-type">'vertical'<br>&#124;&nbsp;'horizontal'</span> | <span class="prop-default">'horizontal'</span> | The group orientation (layout flow direction). |

docs/pages/api-docs/button.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The `MuiButton` name can be used for providing [default props](/customization/gl
3434
| <span class="prop-name">component</span> | <span class="prop-type">elementType</span> | <span class="prop-default">'button'</span> | The component used for the root node. Either a string to use a HTML element or a component. |
3535
| <span class="prop-name">disabled</span> | <span class="prop-type">bool</span> | <span class="prop-default">false</span> | If `true`, the button will be disabled. |
3636
| <span class="prop-name">disableElevation</span> | <span class="prop-type">bool</span> | <span class="prop-default">false</span> | If `true`, no elevation is used. |
37-
| <span class="prop-name">disableFocusRipple</span> | <span class="prop-type">bool</span> | <span class="prop-default">false</span> | If `true`, the keyboard focus ripple will be disabled. `disableRipple` must also be true. |
37+
| <span class="prop-name">disableFocusRipple</span> | <span class="prop-type">bool</span> | <span class="prop-default">false</span> | If `true`, the keyboard focus ripple will be disabled. |
3838
| <span class="prop-name">disableRipple</span> | <span class="prop-type">bool</span> | | If `true`, the ripple effect will be disabled.<br>⚠️ Without a ripple there is no styling for :focus-visible by default. Be sure to highlight the element by applying separate styles with the `focusVisibleClassName`. |
3939
| <span class="prop-name">endIcon</span> | <span class="prop-type">node</span> | | Element placed after the children. |
4040
| <span class="prop-name">fullWidth</span> | <span class="prop-type">bool</span> | <span class="prop-default">false</span> | If `true`, the button will take up the full width of its container. |

docs/pages/api-docs/fab.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ The `MuiFab` name can be used for providing [default props](/customization/globa
3333
| <span class="prop-name">color</span> | <span class="prop-type">'default'<br>&#124;&nbsp;'inherit'<br>&#124;&nbsp;'primary'<br>&#124;&nbsp;'secondary'</span> | <span class="prop-default">'default'</span> | The color of the component. It supports those theme colors that make sense for this component. |
3434
| <span class="prop-name">component</span> | <span class="prop-type">elementType</span> | <span class="prop-default">'button'</span> | The component used for the root node. Either a string to use a HTML element or a component. |
3535
| <span class="prop-name">disabled</span> | <span class="prop-type">bool</span> | <span class="prop-default">false</span> | If `true`, the button will be disabled. |
36-
| <span class="prop-name">disableFocusRipple</span> | <span class="prop-type">bool</span> | <span class="prop-default">false</span> | If `true`, the keyboard focus ripple will be disabled. `disableRipple` must also be true. |
36+
| <span class="prop-name">disableFocusRipple</span> | <span class="prop-type">bool</span> | <span class="prop-default">false</span> | If `true`, the keyboard focus ripple will be disabled. |
3737
| <span class="prop-name">disableRipple</span> | <span class="prop-type">bool</span> | | If `true`, the ripple effect will be disabled. |
3838
| <span class="prop-name">href</span> | <span class="prop-type">string</span> | | The URL to link to when the button is clicked. If defined, an `a` element will be used as the root node. |
3939
| <span class="prop-name">size</span> | <span class="prop-type">'small'<br>&#124;&nbsp;'medium'<br>&#124;&nbsp;'large'</span> | <span class="prop-default">'large'</span> | The size of the button. `small` is equivalent to the dense button styling. |

docs/pages/api-docs/icon-button.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ The `MuiIconButton` name can be used for providing [default props](/customizatio
3333
| <span class="prop-name">classes</span> | <span class="prop-type">object</span> | | Override or extend the styles applied to the component. See [CSS API](#css) below for more details. |
3434
| <span class="prop-name">color</span> | <span class="prop-type">'default'<br>&#124;&nbsp;'inherit'<br>&#124;&nbsp;'primary'<br>&#124;&nbsp;'secondary'</span> | <span class="prop-default">'default'</span> | The color of the component. It supports those theme colors that make sense for this component. |
3535
| <span class="prop-name">disabled</span> | <span class="prop-type">bool</span> | <span class="prop-default">false</span> | If `true`, the button will be disabled. |
36-
| <span class="prop-name">disableFocusRipple</span> | <span class="prop-type">bool</span> | <span class="prop-default">false</span> | If `true`, the keyboard focus ripple will be disabled. `disableRipple` must also be true. |
36+
| <span class="prop-name">disableFocusRipple</span> | <span class="prop-type">bool</span> | <span class="prop-default">false</span> | If `true`, the keyboard focus ripple will be disabled. |
3737
| <span class="prop-name">disableRipple</span> | <span class="prop-type">bool</span> | | If `true`, the ripple effect will be disabled. |
3838
| <span class="prop-name">edge</span> | <span class="prop-type">'start'<br>&#124;&nbsp;'end'<br>&#124;&nbsp;false</span> | <span class="prop-default">false</span> | If given, uses a negative margin to counteract the padding on one side (this is often helpful for aligning the left or right side of the icon with content above or below, without ruining the border size and shape). |
3939
| <span class="prop-name">size</span> | <span class="prop-type">'small'<br>&#124;&nbsp;'medium'</span> | <span class="prop-default">'medium'</span> | The size of the button. `small` is equivalent to the dense button styling. |

docs/pages/api-docs/tab.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The `MuiTab` name can be used for providing [default props](/customization/globa
3131
| <span class="prop-name">children</span> | <span class="prop-type">unsupportedProp</span> | | This prop isn't supported. Use the `component` prop if you need to change the children structure. |
3232
| <span class="prop-name">classes</span> | <span class="prop-type">object</span> | | Override or extend the styles applied to the component. See [CSS API](#css) below for more details. |
3333
| <span class="prop-name">disabled</span> | <span class="prop-type">bool</span> | <span class="prop-default">false</span> | If `true`, the tab will be disabled. |
34-
| <span class="prop-name">disableFocusRipple</span> | <span class="prop-type">bool</span> | <span class="prop-default">false</span> | If `true`, the keyboard focus ripple will be disabled. `disableRipple` must also be true. |
34+
| <span class="prop-name">disableFocusRipple</span> | <span class="prop-type">bool</span> | <span class="prop-default">false</span> | If `true`, the keyboard focus ripple will be disabled. |
3535
| <span class="prop-name">disableRipple</span> | <span class="prop-type">bool</span> | | If `true`, the ripple effect will be disabled. |
3636
| <span class="prop-name">icon</span> | <span class="prop-type">node</span> | | The icon element. |
3737
| <span class="prop-name">label</span> | <span class="prop-type">node</span> | | The label element. |

docs/pages/api-docs/toggle-button.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The `MuiToggleButton` name can be used for providing [default props](/customizat
3131
| <span class="prop-name required">children&nbsp;*</span> | <span class="prop-type">node</span> | | The content of the button. |
3232
| <span class="prop-name">classes</span> | <span class="prop-type">object</span> | | Override or extend the styles applied to the component. See [CSS API](#css) below for more details. |
3333
| <span class="prop-name">disabled</span> | <span class="prop-type">bool</span> | <span class="prop-default">false</span> | If `true`, the button will be disabled. |
34-
| <span class="prop-name">disableFocusRipple</span> | <span class="prop-type">bool</span> | <span class="prop-default">false</span> | If `true`, the keyboard focus ripple will be disabled. `disableRipple` must also be true. |
34+
| <span class="prop-name">disableFocusRipple</span> | <span class="prop-type">bool</span> | <span class="prop-default">false</span> | If `true`, the keyboard focus ripple will be disabled. |
3535
| <span class="prop-name">disableRipple</span> | <span class="prop-type">bool</span> | | If `true`, the ripple effect will be disabled. |
3636
| <span class="prop-name">selected</span> | <span class="prop-type">bool</span> | | If `true`, the button will be rendered in an active state. |
3737
| <span class="prop-name required">value&nbsp;*</span> | <span class="prop-type">any</span> | | The value to associate with the button when selected in a ToggleButtonGroup. |

packages/material-ui-lab/src/ToggleButton/ToggleButton.js

-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,6 @@ ToggleButton.propTypes = {
138138
disabled: PropTypes.bool,
139139
/**
140140
* If `true`, the keyboard focus ripple will be disabled.
141-
* `disableRipple` must also be true.
142141
*/
143142
disableFocusRipple: PropTypes.bool,
144143
/**

packages/material-ui/src/Button/Button.js

-1
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,6 @@ Button.propTypes = {
356356
disableElevation: PropTypes.bool,
357357
/**
358358
* If `true`, the keyboard focus ripple will be disabled.
359-
* `disableRipple` must also be true.
360359
*/
361360
disableFocusRipple: PropTypes.bool,
362361
/**

packages/material-ui/src/ButtonBase/ButtonBase.js

-1
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,6 @@ ButtonBase.propTypes = {
392392
disableTouchRipple: PropTypes.bool,
393393
/**
394394
* If `true`, the base button will have a keyboard focus ripple.
395-
* `disableRipple` must also be `false`.
396395
*/
397396
focusRipple: PropTypes.bool,
398397
/**

packages/material-ui/src/ButtonGroup/ButtonGroup.js

-1
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,6 @@ ButtonGroup.propTypes = {
270270
disableElevation: PropTypes.bool,
271271
/**
272272
* If `true`, the button keyboard focus ripple will be disabled.
273-
* `disableRipple` must also be true.
274273
*/
275274
disableFocusRipple: PropTypes.bool,
276275
/**

packages/material-ui/src/Fab/Fab.js

-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,6 @@ Fab.propTypes = {
189189
disabled: PropTypes.bool,
190190
/**
191191
* If `true`, the keyboard focus ripple will be disabled.
192-
* `disableRipple` must also be true.
193192
*/
194193
disableFocusRipple: PropTypes.bool,
195194
/**

packages/material-ui/src/IconButton/IconButton.js

-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,6 @@ IconButton.propTypes = {
171171
disabled: PropTypes.bool,
172172
/**
173173
* If `true`, the keyboard focus ripple will be disabled.
174-
* `disableRipple` must also be true.
175174
*/
176175
disableFocusRipple: PropTypes.bool,
177176
/**

packages/material-ui/src/Tab/Tab.js

-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,6 @@ Tab.propTypes = {
187187
disabled: PropTypes.bool,
188188
/**
189189
* If `true`, the keyboard focus ripple will be disabled.
190-
* `disableRipple` must also be true.
191190
*/
192191
disableFocusRipple: PropTypes.bool,
193192
/**

0 commit comments

Comments
 (0)