You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
128 lines
2.6 KiB
128 lines
2.6 KiB
// deps-lint-skip-all
|
|
import { FullToken, genComponentStyleHook } from '../../_util/theme';
|
|
import type { GenerateStyle } from '../../_util/theme';
|
|
import { operationUnit } from '../../_util/theme/util/operationUnit';
|
|
import {
|
|
getTitleStyles,
|
|
getResetStyles,
|
|
getLinkStyles,
|
|
getEditableStyles,
|
|
getCopiableStyles,
|
|
getEllipsisStyles,
|
|
} from './mixins';
|
|
|
|
/** Component only token. Which will handle additional calculation of alias token */
|
|
export interface ComponentToken {
|
|
sizeMarginHeadingVerticalStart: number | string;
|
|
sizeMarginHeadingVerticalEnd: number | string;
|
|
}
|
|
|
|
export type TypographyToken = FullToken<'Typography'>;
|
|
|
|
const genTypographyStyle: GenerateStyle<TypographyToken> = token => {
|
|
const { componentCls, sizeMarginHeadingVerticalStart } = token;
|
|
|
|
return {
|
|
[componentCls]: {
|
|
color: token.colorText,
|
|
overflowWrap: 'break-word',
|
|
'&&-secondary': {
|
|
color: token.colorTextSecondary,
|
|
},
|
|
|
|
'&&-success': {
|
|
color: token.colorSuccess,
|
|
},
|
|
|
|
'&&-warning': {
|
|
color: token.colorWarning,
|
|
},
|
|
|
|
'&&-danger': {
|
|
color: token.colorError,
|
|
'a&:active, a&:focus': {
|
|
color: token.colorErrorActive,
|
|
},
|
|
'a&:hover': {
|
|
color: token.colorErrorHover,
|
|
},
|
|
},
|
|
|
|
'&&-disabled': {
|
|
color: token.colorTextDisabled,
|
|
cursor: 'not-allowed',
|
|
userSelect: 'none',
|
|
},
|
|
|
|
[`
|
|
div&,
|
|
p
|
|
`]: {
|
|
marginBottom: '1em',
|
|
},
|
|
|
|
...getTitleStyles(token),
|
|
|
|
[`
|
|
& + h1&,
|
|
& + h2&,
|
|
& + h3&,
|
|
& + h4&,
|
|
& + h5&
|
|
`]: {
|
|
marginTop: sizeMarginHeadingVerticalStart,
|
|
},
|
|
|
|
[`
|
|
div,
|
|
ul,
|
|
li,
|
|
p,
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5`]: {
|
|
[`
|
|
+ h1,
|
|
+ h2,
|
|
+ h3,
|
|
+ h4,
|
|
+ h5
|
|
`]: {
|
|
marginTop: sizeMarginHeadingVerticalStart,
|
|
},
|
|
},
|
|
|
|
...getResetStyles(),
|
|
|
|
...getLinkStyles(token),
|
|
|
|
// Operation
|
|
[`
|
|
${componentCls}-expand,
|
|
${componentCls}-edit,
|
|
${componentCls}-copy
|
|
`]: {
|
|
...operationUnit(token),
|
|
marginInlineStart: token.marginXXS,
|
|
},
|
|
|
|
...getEditableStyles(token),
|
|
|
|
...getCopiableStyles(token),
|
|
|
|
...getEllipsisStyles(),
|
|
|
|
'&-rtl': {
|
|
direction: 'rtl',
|
|
},
|
|
},
|
|
};
|
|
};
|
|
|
|
// ============================== Export ==============================
|
|
export default genComponentStyleHook('Typography', token => [genTypographyStyle(token)], {
|
|
sizeMarginHeadingVerticalStart: '1.2em',
|
|
sizeMarginHeadingVerticalEnd: '0.5em',
|
|
});
|
|
|