/
githubmirror
/
material-ui
Обзор
Документация
Войти
/
githubmirror
/
material-ui
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
packages/mui-lab/src/TimelineContent/TimelineContent.js
89 строк
3 KB
Marija Najdova
[lab] Remove @mui/base dependency (#45602)
20 мар 2025, 12:02
Не верифицирован
20 мар 2025, 12:02
c2d938d
Код
Авторство
О чём код?
'use client'; import * as React from 'react'; import PropTypes from 'prop-types'; import clsx from 'clsx'; import { styled, useThemeProps } from '@mui/material/styles'; import composeClasses from '@mui/utils/composeClasses'; import Typography from '@mui/material/Typography'; import TimelineContext from '../Timeline/TimelineContext'; import { getTimelineContentUtilityClass } from './timelineContentClasses'; import convertTimelinePositionToClass from '../internal/convertTimelinePositionToClass'; const useUtilityClasses = (ownerState) => { const { position, classes } = ownerState; const slots = { root: ['root', convertTimelinePositionToClass(position)], }; return composeClasses(slots, getTimelineContentUtilityClass, classes); }; const TimelineContentRoot = styled(Typography, { name: 'MuiTimelineContent', slot: 'Root', overridesResolver: (props, styles) => { const { ownerState } = props; return [styles.root, styles[convertTimelinePositionToClass(ownerState.position)]]; }, })(({ ownerState }) => ({ flex: 1, padding: '6px 16px', textAlign: 'left', ...(ownerState.position === 'left' && { textAlign: 'right', }), })); const TimelineContent = React.forwardRef(function TimelineContent(inProps, ref) { const props = useThemeProps({ props: inProps, name: 'MuiTimelineContent' }); const { className, ...other } = props; const { position: positionContext } = React.useContext(TimelineContext); const ownerState = { ...props, position: positionContext || 'right', }; const classes = useUtilityClasses(ownerState); return ( <TimelineContentRoot component="div" className={clsx(classes.root, className)} ownerState={ownerState} ref={ref} {...other} /> ); }); TimelineContent.propTypes /* remove-proptypes */ = { // ┌────────────────────────────── Warning ──────────────────────────────┐ // │ These PropTypes are generated from the TypeScript type definitions. │ // │ To update them, edit the d.ts file and run `pnpm 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.oneOfType([ PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object, ]), }; export default TimelineContent;