diff --git a/docs/src/modules/components/Head.js b/docs/src/modules/components/Head.js index 7ede23a2858a80..36216990dd4ba7 100644 --- a/docs/src/modules/components/Head.js +++ b/docs/src/modules/components/Head.js @@ -25,7 +25,7 @@ function Head(props) { /> - + ); } diff --git a/packages/material-ui/src/Drawer/Drawer.js b/packages/material-ui/src/Drawer/Drawer.js index f239d8119940b9..2b932e87b4ed60 100644 --- a/packages/material-ui/src/Drawer/Drawer.js +++ b/packages/material-ui/src/Drawer/Drawer.js @@ -96,7 +96,7 @@ export const styles = theme => ({ }); /** - * The properties of the [Modal](/api/modal) component are available + * The properties of the [Modal](/api/modal/) component are available * when `variant="temporary"` is set. */ class Drawer extends React.Component { @@ -213,7 +213,7 @@ Drawer.propTypes = { */ elevation: PropTypes.number, /** - * Properties applied to the [`Modal`](/api/modal) element. + * Properties applied to the [`Modal`](/api/modal/) element. */ ModalProps: PropTypes.object, /** diff --git a/packages/material-ui/src/Popover/Popover.js b/packages/material-ui/src/Popover/Popover.js index bcea43d0ec97b2..b3e606c223449c 100644 --- a/packages/material-ui/src/Popover/Popover.js +++ b/packages/material-ui/src/Popover/Popover.js @@ -426,7 +426,7 @@ Popover.propTypes = { */ marginThreshold: PropTypes.number, /** - * `classes` property applied to the [`Modal`](/api/modal) element. + * `classes` property applied to the [`Modal`](/api/modal/) element. */ ModalClasses: PropTypes.object, /** diff --git a/packages/material-ui/src/Tooltip/Tooltip.js b/packages/material-ui/src/Tooltip/Tooltip.js index 729ee5cd4febdb..b517e5306fa172 100644 --- a/packages/material-ui/src/Tooltip/Tooltip.js +++ b/packages/material-ui/src/Tooltip/Tooltip.js @@ -416,7 +416,7 @@ Tooltip.propTypes = { 'top', ]), /** - * Properties applied to the [`Popper`](/api/popper) element. + * Properties applied to the [`Popper`](/api/popper/) element. */ PopperProps: PropTypes.object, /** diff --git a/pages/api/drawer.md b/pages/api/drawer.md index 06a0b1879321df..98cad70c70d7aa 100644 --- a/pages/api/drawer.md +++ b/pages/api/drawer.md @@ -13,7 +13,7 @@ title: Drawer API import Drawer from '@material-ui/core/Drawer'; ``` -The properties of the [Modal](/api/modal) component are available +The properties of the [Modal](/api/modal/) component are available when `variant="temporary"` is set. ## Props @@ -24,7 +24,7 @@ when `variant="temporary"` is set. | children | node |   | The contents of the drawer. | | classes | object |   | Override or extend the styles applied to the component. See [CSS API](#css-api) below for more details. | | elevation | number | 16 | The elevation of the drawer. | -| ModalProps | object |   | Properties applied to the [`Modal`](/api/modal) element. | +| ModalProps | object |   | Properties applied to the [`Modal`](/api/modal/) element. | | onClose | func |   | Callback fired when the component requests to be closed.

**Signature:**
`function(event: object) => void`
*event:* The event source of the callback | | open | bool | false | If `true`, the drawer is open. | | PaperProps | object |   | Properties applied to the [`Paper`](/api/paper/) element. | diff --git a/pages/api/popover.md b/pages/api/popover.md index 197a843b53a9cd..af177a07c56583 100644 --- a/pages/api/popover.md +++ b/pages/api/popover.md @@ -30,7 +30,7 @@ import Popover from '@material-ui/core/Popover'; | elevation | number | 8 | The elevation of the popover. | | getContentAnchorEl | func |   | This function is called in order to retrieve the content anchor element. It's the opposite of the `anchorEl` property. The content anchor element should be an element inside the popover. It's used to correctly scroll and set the position of the popover. The positioning strategy tries to make the content anchor element just above the anchor element. | | marginThreshold | number | 16 | Specifies how close to the edge of the window the popover can appear. | -| ModalClasses | object |   | `classes` property applied to the [`Modal`](/api/modal) element. | +| ModalClasses | object |   | `classes` property applied to the [`Modal`](/api/modal/) element. | | onClose | func |   | Callback fired when the component requests to be closed.

**Signature:**
`function(event: object) => void`
*event:* The event source of the callback. | | onEnter | func |   | Callback fired before the component is entering. | | onEntered | func |   | Callback fired when the component has entered. | diff --git a/pages/api/tooltip.md b/pages/api/tooltip.md index 007c48a3719799..094dac15dea868 100644 --- a/pages/api/tooltip.md +++ b/pages/api/tooltip.md @@ -33,7 +33,7 @@ import Tooltip from '@material-ui/core/Tooltip'; | onOpen | func |   | Callback fired when the tooltip requests to be open.

**Signature:**
`function(event: object) => void`
*event:* The event source of the callback | | open | bool |   | If `true`, the tooltip is shown. | | placement | enum: 'bottom-end', 'bottom-start', 'bottom', 'left-end', 'left-start', 'left', 'right-end', 'right-start', 'right', 'top-end', 'top-start', 'top'
| 'bottom' | Tooltip placement. | -| PopperProps | object |   | Properties applied to the [`Popper`](/api/popper) element. | +| PopperProps | object |   | Properties applied to the [`Popper`](/api/popper/) element. | | title * | node |   | Tooltip title. Zero-length titles string are never displayed. | | TransitionComponent | union: string |
 func |
 object
| Grow | Transition component. | | TransitionProps | object |   | Properties applied to the `Transition` element. |