You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
198 lines
6.7 KiB
JavaScript
198 lines
6.7 KiB
JavaScript
'use client';
|
|
|
|
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
|
|
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
const _excluded = ["align", "className", "component", "gutterBottom", "noWrap", "paragraph", "variant", "variantMapping"];
|
|
import * as React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import clsx from 'clsx';
|
|
import { unstable_extendSxProp as extendSxProp } from '@mui/system';
|
|
import { unstable_composeClasses as composeClasses } from '@mui/base/composeClasses';
|
|
import styled from '../styles/styled';
|
|
import useThemeProps from '../styles/useThemeProps';
|
|
import capitalize from '../utils/capitalize';
|
|
import { getTypographyUtilityClass } from './typographyClasses';
|
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
const useUtilityClasses = ownerState => {
|
|
const {
|
|
align,
|
|
gutterBottom,
|
|
noWrap,
|
|
paragraph,
|
|
variant,
|
|
classes
|
|
} = ownerState;
|
|
const slots = {
|
|
root: ['root', variant, ownerState.align !== 'inherit' && `align${capitalize(align)}`, gutterBottom && 'gutterBottom', noWrap && 'noWrap', paragraph && 'paragraph']
|
|
};
|
|
return composeClasses(slots, getTypographyUtilityClass, classes);
|
|
};
|
|
export const TypographyRoot = styled('span', {
|
|
name: 'MuiTypography',
|
|
slot: 'Root',
|
|
overridesResolver: (props, styles) => {
|
|
const {
|
|
ownerState
|
|
} = props;
|
|
return [styles.root, ownerState.variant && styles[ownerState.variant], ownerState.align !== 'inherit' && styles[`align${capitalize(ownerState.align)}`], ownerState.noWrap && styles.noWrap, ownerState.gutterBottom && styles.gutterBottom, ownerState.paragraph && styles.paragraph];
|
|
}
|
|
})(({
|
|
theme,
|
|
ownerState
|
|
}) => _extends({
|
|
margin: 0
|
|
}, ownerState.variant === 'inherit' && {
|
|
// Some elements, like <button> on Chrome have default font that doesn't inherit, reset this.
|
|
font: 'inherit'
|
|
}, ownerState.variant !== 'inherit' && theme.typography[ownerState.variant], ownerState.align !== 'inherit' && {
|
|
textAlign: ownerState.align
|
|
}, ownerState.noWrap && {
|
|
overflow: 'hidden',
|
|
textOverflow: 'ellipsis',
|
|
whiteSpace: 'nowrap'
|
|
}, ownerState.gutterBottom && {
|
|
marginBottom: '0.35em'
|
|
}, ownerState.paragraph && {
|
|
marginBottom: 16
|
|
}));
|
|
const defaultVariantMapping = {
|
|
h1: 'h1',
|
|
h2: 'h2',
|
|
h3: 'h3',
|
|
h4: 'h4',
|
|
h5: 'h5',
|
|
h6: 'h6',
|
|
subtitle1: 'h6',
|
|
subtitle2: 'h6',
|
|
body1: 'p',
|
|
body2: 'p',
|
|
inherit: 'p'
|
|
};
|
|
|
|
// TODO v6: deprecate these color values in v5.x and remove the transformation in v6
|
|
const colorTransformations = {
|
|
primary: 'primary.main',
|
|
textPrimary: 'text.primary',
|
|
secondary: 'secondary.main',
|
|
textSecondary: 'text.secondary',
|
|
error: 'error.main'
|
|
};
|
|
const transformDeprecatedColors = color => {
|
|
return colorTransformations[color] || color;
|
|
};
|
|
const Typography = /*#__PURE__*/React.forwardRef(function Typography(inProps, ref) {
|
|
const themeProps = useThemeProps({
|
|
props: inProps,
|
|
name: 'MuiTypography'
|
|
});
|
|
const color = transformDeprecatedColors(themeProps.color);
|
|
const props = extendSxProp(_extends({}, themeProps, {
|
|
color
|
|
}));
|
|
const {
|
|
align = 'inherit',
|
|
className,
|
|
component,
|
|
gutterBottom = false,
|
|
noWrap = false,
|
|
paragraph = false,
|
|
variant = 'body1',
|
|
variantMapping = defaultVariantMapping
|
|
} = props,
|
|
other = _objectWithoutPropertiesLoose(props, _excluded);
|
|
const ownerState = _extends({}, props, {
|
|
align,
|
|
color,
|
|
className,
|
|
component,
|
|
gutterBottom,
|
|
noWrap,
|
|
paragraph,
|
|
variant,
|
|
variantMapping
|
|
});
|
|
const Component = component || (paragraph ? 'p' : variantMapping[variant] || defaultVariantMapping[variant]) || 'span';
|
|
const classes = useUtilityClasses(ownerState);
|
|
return /*#__PURE__*/_jsx(TypographyRoot, _extends({
|
|
as: Component,
|
|
ref: ref,
|
|
ownerState: ownerState,
|
|
className: clsx(classes.root, className)
|
|
}, other));
|
|
});
|
|
process.env.NODE_ENV !== "production" ? Typography.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`. │
|
|
// └─────────────────────────────────────────────────────────────────────┘
|
|
/**
|
|
* Set the text-align on the component.
|
|
* @default 'inherit'
|
|
*/
|
|
align: PropTypes.oneOf(['center', 'inherit', 'justify', 'left', 'right']),
|
|
/**
|
|
* 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,
|
|
/**
|
|
* If `true`, the text will have a bottom margin.
|
|
* @default false
|
|
*/
|
|
gutterBottom: PropTypes.bool,
|
|
/**
|
|
* If `true`, the text will not wrap, but instead will truncate with a text overflow ellipsis.
|
|
*
|
|
* Note that text overflow can only happen with block or inline-block level elements
|
|
* (the element needs to have a width in order to overflow).
|
|
* @default false
|
|
*/
|
|
noWrap: PropTypes.bool,
|
|
/**
|
|
* If `true`, the element will be a paragraph element.
|
|
* @default false
|
|
*/
|
|
paragraph: PropTypes.bool,
|
|
/**
|
|
* 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]),
|
|
/**
|
|
* Applies the theme typography styles.
|
|
* @default 'body1'
|
|
*/
|
|
variant: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([PropTypes.oneOf(['body1', 'body2', 'button', 'caption', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'inherit', 'overline', 'subtitle1', 'subtitle2']), PropTypes.string]),
|
|
/**
|
|
* The component maps the variant prop to a range of different HTML element types.
|
|
* For instance, subtitle1 to `<h6>`.
|
|
* If you wish to change that mapping, you can provide your own.
|
|
* Alternatively, you can use the `component` prop.
|
|
* @default {
|
|
* h1: 'h1',
|
|
* h2: 'h2',
|
|
* h3: 'h3',
|
|
* h4: 'h4',
|
|
* h5: 'h5',
|
|
* h6: 'h6',
|
|
* subtitle1: 'h6',
|
|
* subtitle2: 'h6',
|
|
* body1: 'p',
|
|
* body2: 'p',
|
|
* inherit: 'p',
|
|
* }
|
|
*/
|
|
variantMapping: PropTypes /* @typescript-to-proptypes-ignore */.object
|
|
} : void 0;
|
|
export default Typography; |