@material-ui/unstyled
Version:
Unstyled React components with which to implement custom design systems.
105 lines (94 loc) • 3.47 kB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
import * as React from 'react';
import PropTypes from 'prop-types';
import clsx from 'clsx';
import composeClasses from '../composeClasses';
import isHostComponent from '../utils/isHostComponent';
import { getBackdropUtilityClass } from './backdropUnstyledClasses';
import { jsx as _jsx } from "react/jsx-runtime";
var useUtilityClasses = function useUtilityClasses(ownerState) {
var classes = ownerState.classes,
invisible = ownerState.invisible;
var slots = {
root: ['root', invisible && 'invisible']
};
return composeClasses(slots, getBackdropUtilityClass, classes);
};
var BackdropUnstyled = /*#__PURE__*/React.forwardRef(function BackdropUnstyled(props, ref) {
var classesProp = props.classes,
className = props.className,
_props$invisible = props.invisible,
invisible = _props$invisible === void 0 ? false : _props$invisible,
_props$component = props.component,
component = _props$component === void 0 ? 'div' : _props$component,
_props$components = props.components,
components = _props$components === void 0 ? {} : _props$components,
_props$componentsProp = props.componentsProps,
componentsProps = _props$componentsProp === void 0 ? {} : _props$componentsProp,
theme = props.theme,
other = _objectWithoutProperties(props, ["classes", "className", "invisible", "component", "components", "componentsProps", "theme"]);
var ownerState = _extends({}, props, {
classes: classesProp,
invisible: invisible
});
var classes = useUtilityClasses(ownerState);
var Root = components.Root || component;
var rootProps = componentsProps.root || {};
return /*#__PURE__*/_jsx(Root, _extends({
"aria-hidden": true
}, rootProps, !isHostComponent(Root) && {
as: component,
ownerState: _extends({}, ownerState, rootProps.ownerState),
theme: theme
}, {
ref: ref
}, other, {
className: clsx(classes.root, rootProps.className, className)
}));
});
process.env.NODE_ENV !== "production" ? BackdropUnstyled.propTypes
/* remove-proptypes */
= {
// ----------------------------- Warning --------------------------------
// | These PropTypes are generated from the TypeScript type definitions |
// | To update them edit the d.ts file and run "yarn proptypes" |
// ----------------------------------------------------------------------
/**
* The content of the component.
*/
children: PropTypes.node,
/**
* Override or extend the styles applied to the component.
*/
classes: PropTypes.object,
/**
* @ignore
*/
className: PropTypes.string,
/**
* 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 Backdrop.
* 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 Backdrop.
* @default {}
*/
componentsProps: PropTypes.object,
/**
* If `true`, the backdrop is invisible.
* It can be used when rendering a popover or a custom select component.
* @default false
*/
invisible: PropTypes.bool
} : void 0;
export default BackdropUnstyled;