@material-ui/lab
Version:
Laboratory for new Material-UI modules.
92 lines (82 loc) • 3 kB
JavaScript
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
import _extends from "@babel/runtime/helpers/esm/extends";
import * as React from 'react';
import PropTypes from 'prop-types';
import clsx from 'clsx';
import { capitalize } from '@material-ui/core/utils';
import { styled, useThemeProps } from '@material-ui/core/styles';
import { unstable_composeClasses as composeClasses } from '@material-ui/unstyled';
import Typography from '@material-ui/core/Typography';
import TimelineContext from '../Timeline/TimelineContext';
import { getTimelineContentUtilityClass } from './timelineContentClasses';
import { jsx as _jsx } from "react/jsx-runtime";
var useUtilityClasses = function useUtilityClasses(styleProps) {
var position = styleProps.position,
classes = styleProps.classes;
var slots = {
root: ['root', "position".concat(capitalize(position))]
};
return composeClasses(slots, getTimelineContentUtilityClass, classes);
};
var TimelineContentRoot = styled(Typography, {
name: 'MuiTimelineContent',
slot: 'Root',
overridesResolver: function overridesResolver(props, styles) {
var styleProps = props.styleProps;
return [styles.root, styles["position".concat(capitalize(styleProps.position))]];
}
})(function (_ref) {
var styleProps = _ref.styleProps;
return _extends({
flex: 1,
padding: '6px 16px',
textAlign: 'left'
}, styleProps.position === 'left' && {
textAlign: 'right'
});
});
var TimelineContent = /*#__PURE__*/React.forwardRef(function TimelineContent(inProps, ref) {
var props = useThemeProps({
props: inProps,
name: 'MuiTimelineContent'
});
var className = props.className,
other = _objectWithoutProperties(props, ["className"]);
var _React$useContext = React.useContext(TimelineContext),
positionContext = _React$useContext.position;
var styleProps = _extends({}, props, {
position: positionContext || 'right'
});
var classes = useUtilityClasses(styleProps);
return /*#__PURE__*/_jsx(TimelineContentRoot, _extends({
component: "div",
className: clsx(classes.root, className),
styleProps: styleProps,
ref: ref
}, other));
});
process.env.NODE_ENV !== "production" ? TimelineContent.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 system prop that allows defining system overrides as well as additional CSS styles.
*/
sx: PropTypes.object
} : void 0;
export default TimelineContent;