'use client'; import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose"; import _extends from "@babel/runtime/helpers/esm/extends"; const _excluded = ["action", "avatar", "className", "component", "disableTypography", "subheader", "subheaderTypographyProps", "title", "titleTypographyProps"]; import * as React from 'react'; import PropTypes from 'prop-types'; import clsx from 'clsx'; import composeClasses from '@mui/utils/composeClasses'; import Typography from '../Typography'; import useThemeProps from '../styles/useThemeProps'; import styled from '../styles/styled'; import cardHeaderClasses, { getCardHeaderUtilityClass } from './cardHeaderClasses'; import { jsx as _jsx } from "react/jsx-runtime"; import { jsxs as _jsxs } from "react/jsx-runtime"; const useUtilityClasses = ownerState => { const { classes } = ownerState; const slots = { root: ['root'], avatar: ['avatar'], action: ['action'], content: ['content'], title: ['title'], subheader: ['subheader'] }; return composeClasses(slots, getCardHeaderUtilityClass, classes); }; const CardHeaderRoot = styled('div', { name: 'MuiCardHeader', slot: 'Root', overridesResolver: (props, styles) => _extends({ [`& .${cardHeaderClasses.title}`]: styles.title, [`& .${cardHeaderClasses.subheader}`]: styles.subheader }, styles.root) })({ display: 'flex', alignItems: 'center', padding: 16 }); const CardHeaderAvatar = styled('div', { name: 'MuiCardHeader', slot: 'Avatar', overridesResolver: (props, styles) => styles.avatar })({ display: 'flex', flex: '0 0 auto', marginRight: 16 }); const CardHeaderAction = styled('div', { name: 'MuiCardHeader', slot: 'Action', overridesResolver: (props, styles) => styles.action })({ flex: '0 0 auto', alignSelf: 'flex-start', marginTop: -4, marginRight: -8, marginBottom: -4 }); const CardHeaderContent = styled('div', { name: 'MuiCardHeader', slot: 'Content', overridesResolver: (props, styles) => styles.content })({ flex: '1 1 auto' }); const CardHeader = /*#__PURE__*/React.forwardRef(function CardHeader(inProps, ref) { const props = useThemeProps({ props: inProps, name: 'MuiCardHeader' }); const { action, avatar, className, component = 'div', disableTypography = false, subheader: subheaderProp, subheaderTypographyProps, title: titleProp, titleTypographyProps } = props, other = _objectWithoutPropertiesLoose(props, _excluded); const ownerState = _extends({}, props, { component, disableTypography }); const classes = useUtilityClasses(ownerState); let title = titleProp; if (title != null && title.type !== Typography && !disableTypography) { title = /*#__PURE__*/_jsx(Typography, _extends({ variant: avatar ? 'body2' : 'h5', className: classes.title, component: "span", display: "block" }, titleTypographyProps, { children: title })); } let subheader = subheaderProp; if (subheader != null && subheader.type !== Typography && !disableTypography) { subheader = /*#__PURE__*/_jsx(Typography, _extends({ variant: avatar ? 'body2' : 'body1', className: classes.subheader, color: "text.secondary", component: "span", display: "block" }, subheaderTypographyProps, { children: subheader })); } return /*#__PURE__*/_jsxs(CardHeaderRoot, _extends({ className: clsx(classes.root, className), as: component, ref: ref, ownerState: ownerState }, other, { children: [avatar && /*#__PURE__*/_jsx(CardHeaderAvatar, { className: classes.avatar, ownerState: ownerState, children: avatar }), /*#__PURE__*/_jsxs(CardHeaderContent, { className: classes.content, ownerState: ownerState, children: [title, subheader] }), action && /*#__PURE__*/_jsx(CardHeaderAction, { className: classes.action, ownerState: ownerState, children: action })] })); }); process.env.NODE_ENV !== "production" ? CardHeader.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 action to display in the card header. */ action: PropTypes.node, /** * The Avatar element to display. */ avatar: PropTypes.node, /** * @ignore */ 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, /** * If `true`, `subheader` and `title` won't be wrapped by a Typography component. * This can be useful to render an alternative Typography variant by wrapping * the `title` text, and optional `subheader` text * with the Typography component. * @default false */ disableTypography: PropTypes.bool, /** * The content of the component. */ subheader: PropTypes.node, /** * These props will be forwarded to the subheader * (as long as disableTypography is not `true`). */ subheaderTypographyProps: PropTypes.object, /** * 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]), /** * The content of the component. */ title: PropTypes.node, /** * These props will be forwarded to the title * (as long as disableTypography is not `true`). */ titleTypographyProps: PropTypes.object } : void 0; export default CardHeader;