From 99ffff57865c46569b8690d70e02e48ceab0d232 Mon Sep 17 00:00:00 2001 From: Sebastian Silbermann Date: Wed, 8 Apr 2020 11:08:17 +0200 Subject: [PATCH] [Popper] Fix incomplete merge --- packages/material-ui/src/Popper/Popper.d.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/packages/material-ui/src/Popper/Popper.d.ts b/packages/material-ui/src/Popper/Popper.d.ts index f4b531bcf83a59..6d4cc2637ea581 100644 --- a/packages/material-ui/src/Popper/Popper.d.ts +++ b/packages/material-ui/src/Popper/Popper.d.ts @@ -23,8 +23,7 @@ export interface PopperProps extends Omit, * The return value will passed as the reference object of the Popper * instance. * - * The reference element should be an HTML Element instance or a referenceObject: - * https://popper.js.org/popper-documentation.html#referenceObject. + * The reference element should be an HTML Element instance or a [referenceObject](https://popper.js.org/docs/v1/#referenceObject). */ anchorEl?: null | ReferenceObject | (() => ReferenceObject); /** @@ -65,7 +64,7 @@ export interface PopperProps extends Omit, * A modifier is a function that is called each time Popper.js needs to * compute the position of the popper. * For this reason, modifiers should be very performant to avoid bottlenecks. - * To learn how to create a modifier, [read the modifiers documentation](https://github.com/FezVrasta/popper.js/blob/master/docs/_includes/popper-documentation.md#modifiers--object). + * To learn how to create a modifier, [read the modifiers documentation](https://popper.js.org/docs/v1/#modifiers). */ modifiers?: object; /** @@ -77,7 +76,7 @@ export interface PopperProps extends Omit, */ placement?: PopperPlacementType; /** - * Options provided to the [`popper.js`](https://github.com/FezVrasta/popper.js) instance. + * Options provided to the [`popper.js`](https://popper.js.org/docs/v1/) instance. */ popperOptions?: object; /**