@mui/joy
Version:
Joy UI is an open-source React component library that implements MUI's own design principles. It's comprehensive and can be used in production out of the box.
130 lines (129 loc) • 4.39 kB
JavaScript
'use client';
import _extends from "@babel/runtime/helpers/esm/extends";
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
const _excluded = ["className", "component", "children", "orientation", "slots", "slotProps"];
import * as React from 'react';
import clsx from 'clsx';
import PropTypes from 'prop-types';
import { unstable_composeClasses as composeClasses } from '@mui/base';
import { useThemeProps } from '../styles';
import styled from '../styles/styled';
import { getCardContentUtilityClass } from './cardContentClasses';
import cardOverflowClasses from '../CardOverflow/cardOverflowClasses';
import useSlot from '../utils/useSlot';
import { jsx as _jsx } from "react/jsx-runtime";
const useUtilityClasses = () => {
const slots = {
root: ['root']
};
return composeClasses(slots, getCardContentUtilityClass, {});
};
export const StyledCardContentRoot = styled('div')(({
ownerState
}) => ({
display: 'flex',
flexDirection: ownerState.orientation === 'horizontal' ? 'row' : 'column',
flex: 9999,
// fill the available space in the Card and also shrink if needed
zIndex: 1,
columnGap: 'var(--Card-padding)',
rowGap: 'max(2px, calc(0.1875 * var(--Card-padding)))',
padding: 'var(--unstable_padding)',
[`.${cardOverflowClasses.root} > &`]: {
'--unstable_padding': 'calc(var(--Card-padding) * 0.75) 0px'
}
}));
const CardContentRoot = styled(StyledCardContentRoot, {
name: 'JoyCardContent',
slot: 'Root',
overridesResolver: (props, styles) => styles.root
})({});
/**
*
* Demos:
*
* - [Card](https://mui.com/joy-ui/react-card/)
*
* API:
*
* - [CardContent API](https://mui.com/joy-ui/api/card-content/)
*/
const CardContent = /*#__PURE__*/React.forwardRef(function CardContent(inProps, ref) {
const props = useThemeProps({
props: inProps,
name: 'JoyCardContent'
});
const {
className,
component = 'div',
children,
orientation = 'vertical',
slots = {},
slotProps = {}
} = props,
other = _objectWithoutPropertiesLoose(props, _excluded);
const externalForwardedProps = _extends({}, other, {
component,
slots,
slotProps
});
const ownerState = _extends({}, props, {
component,
orientation
});
const classes = useUtilityClasses();
const [SlotRoot, rootProps] = useSlot('root', {
ref,
className: clsx(classes.root, className),
elementType: CardContentRoot,
externalForwardedProps,
ownerState
});
return /*#__PURE__*/_jsx(SlotRoot, _extends({}, rootProps, {
children: children
}));
});
process.env.NODE_ENV !== "production" ? CardContent.propTypes /* remove-proptypes */ = {
// ┌────────────────────────────── Warning ──────────────────────────────┐
// │ These PropTypes are generated from the TypeScript type definitions. │
// │ To update them, edit the TypeScript types and run `pnpm proptypes`. │
// └─────────────────────────────────────────────────────────────────────┘
/**
* Used to render icon or text elements inside the CardContent if `src` is not set.
* This can be an element, or just a string.
*/
children: PropTypes.node,
/**
* @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 component orientation.
* @default 'vertical'
*/
orientation: PropTypes.oneOf(['horizontal', 'vertical']),
/**
* The props used for each slot inside.
* @default {}
*/
slotProps: PropTypes.shape({
root: PropTypes.oneOfType([PropTypes.func, PropTypes.object])
}),
/**
* The components used for each slot inside.
* @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])
} : void 0;
export default CardContent;