207 lines
7.9 KiB
JavaScript
207 lines
7.9 KiB
JavaScript
|
'use client';
|
||
|
|
||
|
import _extends from "@babel/runtime/helpers/esm/extends";
|
||
|
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
||
|
import { Popper as BasePopper } from '@mui/base/Popper';
|
||
|
import useTheme from '@mui/system/useThemeWithoutDefault';
|
||
|
import refType from '@mui/utils/refType';
|
||
|
import HTMLElementType from '@mui/utils/HTMLElementType';
|
||
|
import PropTypes from 'prop-types';
|
||
|
import * as React from 'react';
|
||
|
import { styled, useThemeProps } from '../styles';
|
||
|
import { jsx as _jsx } from "react/jsx-runtime";
|
||
|
var PopperRoot = styled(BasePopper, {
|
||
|
name: 'MuiPopper',
|
||
|
slot: 'Root',
|
||
|
overridesResolver: function overridesResolver(props, styles) {
|
||
|
return styles.root;
|
||
|
}
|
||
|
})({});
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* Demos:
|
||
|
*
|
||
|
* - [Autocomplete](https://mui.com/material-ui/react-autocomplete/)
|
||
|
* - [Menu](https://mui.com/material-ui/react-menu/)
|
||
|
* - [Popper](https://mui.com/material-ui/react-popper/)
|
||
|
*
|
||
|
* API:
|
||
|
*
|
||
|
* - [Popper API](https://mui.com/material-ui/api/popper/)
|
||
|
*/
|
||
|
var Popper = /*#__PURE__*/React.forwardRef(function Popper(inProps, ref) {
|
||
|
var _slots$root;
|
||
|
var theme = useTheme();
|
||
|
var props = useThemeProps({
|
||
|
props: inProps,
|
||
|
name: 'MuiPopper'
|
||
|
});
|
||
|
var anchorEl = props.anchorEl,
|
||
|
component = props.component,
|
||
|
components = props.components,
|
||
|
componentsProps = props.componentsProps,
|
||
|
container = props.container,
|
||
|
disablePortal = props.disablePortal,
|
||
|
keepMounted = props.keepMounted,
|
||
|
modifiers = props.modifiers,
|
||
|
open = props.open,
|
||
|
placement = props.placement,
|
||
|
popperOptions = props.popperOptions,
|
||
|
popperRef = props.popperRef,
|
||
|
transition = props.transition,
|
||
|
slots = props.slots,
|
||
|
slotProps = props.slotProps,
|
||
|
other = _objectWithoutProperties(props, ["anchorEl", "component", "components", "componentsProps", "container", "disablePortal", "keepMounted", "modifiers", "open", "placement", "popperOptions", "popperRef", "transition", "slots", "slotProps"]);
|
||
|
var RootComponent = (_slots$root = slots == null ? void 0 : slots.root) != null ? _slots$root : components == null ? void 0 : components.Root;
|
||
|
var otherProps = _extends({
|
||
|
anchorEl: anchorEl,
|
||
|
container: container,
|
||
|
disablePortal: disablePortal,
|
||
|
keepMounted: keepMounted,
|
||
|
modifiers: modifiers,
|
||
|
open: open,
|
||
|
placement: placement,
|
||
|
popperOptions: popperOptions,
|
||
|
popperRef: popperRef,
|
||
|
transition: transition
|
||
|
}, other);
|
||
|
return /*#__PURE__*/_jsx(PopperRoot, _extends({
|
||
|
as: component,
|
||
|
direction: theme == null ? void 0 : theme.direction,
|
||
|
slots: {
|
||
|
root: RootComponent
|
||
|
},
|
||
|
slotProps: slotProps != null ? slotProps : componentsProps
|
||
|
}, otherProps, {
|
||
|
ref: ref
|
||
|
}));
|
||
|
});
|
||
|
process.env.NODE_ENV !== "production" ? Popper.propTypes /* remove-proptypes */ = {
|
||
|
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
||
|
// │ These PropTypes are generated from the TypeScript type definitions. │
|
||
|
// │ To update them, edit the TypeScript types and run `pnpm proptypes`. │
|
||
|
// └─────────────────────────────────────────────────────────────────────┘
|
||
|
/**
|
||
|
* An HTML element, [virtualElement](https://popper.js.org/docs/v2/virtual-elements/),
|
||
|
* or a function that returns either.
|
||
|
* It's used to set the position of the popper.
|
||
|
* The return value will passed as the reference object of the Popper instance.
|
||
|
*/
|
||
|
anchorEl: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([HTMLElementType, PropTypes.object, PropTypes.func]),
|
||
|
/**
|
||
|
* Popper render function or node.
|
||
|
*/
|
||
|
children: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([PropTypes.node, PropTypes.func]),
|
||
|
/**
|
||
|
* The component used for the root node.
|
||
|
* Either a string to use a HTML element or a component.
|
||
|
*/
|
||
|
component: PropTypes.elementType,
|
||
|
/**
|
||
|
* The components used for each slot inside the Popper.
|
||
|
* Either a string to use a HTML element or a component.
|
||
|
* @default {}
|
||
|
*/
|
||
|
components: PropTypes.shape({
|
||
|
Root: PropTypes.elementType
|
||
|
}),
|
||
|
/**
|
||
|
* The props used for each slot inside the Popper.
|
||
|
* @default {}
|
||
|
*/
|
||
|
componentsProps: PropTypes.shape({
|
||
|
root: PropTypes.oneOfType([PropTypes.func, PropTypes.object])
|
||
|
}),
|
||
|
/**
|
||
|
* An HTML element or function that returns one.
|
||
|
* The `container` will have the portal children appended to it.
|
||
|
*
|
||
|
* You can also provide a callback, which is called in a React layout effect.
|
||
|
* This lets you set the container from a ref, and also makes server-side rendering possible.
|
||
|
*
|
||
|
* By default, it uses the body of the top-level document object,
|
||
|
* so it's simply `document.body` most of the time.
|
||
|
*/
|
||
|
container: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([HTMLElementType, PropTypes.func]),
|
||
|
/**
|
||
|
* The `children` will be under the DOM hierarchy of the parent component.
|
||
|
* @default false
|
||
|
*/
|
||
|
disablePortal: PropTypes.bool,
|
||
|
/**
|
||
|
* Always keep the children in the DOM.
|
||
|
* This prop can be useful in SEO situation or
|
||
|
* when you want to maximize the responsiveness of the Popper.
|
||
|
* @default false
|
||
|
*/
|
||
|
keepMounted: PropTypes.bool,
|
||
|
/**
|
||
|
* Popper.js is based on a "plugin-like" architecture,
|
||
|
* most of its features are fully encapsulated "modifiers".
|
||
|
*
|
||
|
* 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://popper.js.org/docs/v2/modifiers/).
|
||
|
*/
|
||
|
modifiers: PropTypes.arrayOf(PropTypes.shape({
|
||
|
data: PropTypes.object,
|
||
|
effect: PropTypes.func,
|
||
|
enabled: PropTypes.bool,
|
||
|
fn: PropTypes.func,
|
||
|
name: PropTypes.any,
|
||
|
options: PropTypes.object,
|
||
|
phase: PropTypes.oneOf(['afterMain', 'afterRead', 'afterWrite', 'beforeMain', 'beforeRead', 'beforeWrite', 'main', 'read', 'write']),
|
||
|
requires: PropTypes.arrayOf(PropTypes.string),
|
||
|
requiresIfExists: PropTypes.arrayOf(PropTypes.string)
|
||
|
})),
|
||
|
/**
|
||
|
* If `true`, the component is shown.
|
||
|
*/
|
||
|
open: PropTypes.bool.isRequired,
|
||
|
/**
|
||
|
* Popper placement.
|
||
|
* @default 'bottom'
|
||
|
*/
|
||
|
placement: PropTypes.oneOf(['auto-end', 'auto-start', 'auto', 'bottom-end', 'bottom-start', 'bottom', 'left-end', 'left-start', 'left', 'right-end', 'right-start', 'right', 'top-end', 'top-start', 'top']),
|
||
|
/**
|
||
|
* Options provided to the [`Popper.js`](https://popper.js.org/docs/v2/constructors/#options) instance.
|
||
|
* @default {}
|
||
|
*/
|
||
|
popperOptions: PropTypes.shape({
|
||
|
modifiers: PropTypes.array,
|
||
|
onFirstUpdate: PropTypes.func,
|
||
|
placement: PropTypes.oneOf(['auto-end', 'auto-start', 'auto', 'bottom-end', 'bottom-start', 'bottom', 'left-end', 'left-start', 'left', 'right-end', 'right-start', 'right', 'top-end', 'top-start', 'top']),
|
||
|
strategy: PropTypes.oneOf(['absolute', 'fixed'])
|
||
|
}),
|
||
|
/**
|
||
|
* A ref that points to the used popper instance.
|
||
|
*/
|
||
|
popperRef: refType,
|
||
|
/**
|
||
|
* The props used for each slot inside the Popper.
|
||
|
* @default {}
|
||
|
*/
|
||
|
slotProps: PropTypes.shape({
|
||
|
root: PropTypes.oneOfType([PropTypes.func, PropTypes.object])
|
||
|
}),
|
||
|
/**
|
||
|
* The components used for each slot inside the Popper.
|
||
|
* Either a string to use a HTML element or a component.
|
||
|
* @default {}
|
||
|
*/
|
||
|
slots: PropTypes.shape({
|
||
|
root: PropTypes.elementType
|
||
|
}),
|
||
|
/**
|
||
|
* The system prop that allows defining system overrides as well as additional CSS styles.
|
||
|
*/
|
||
|
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
|
||
|
/**
|
||
|
* Help supporting a react-transition-group/Transition component.
|
||
|
* @default false
|
||
|
*/
|
||
|
transition: PropTypes.bool
|
||
|
} : void 0;
|
||
|
export default Popper;
|