mirror of
https://github.com/ant-design/ant-design.git
synced 2026-02-09 02:49:18 +08:00
* fix(css): replace background transition with background-color * chore: update --------- Co-authored-by: thinkasany <480968828@qq.com>
340 lines
9.4 KiB
TypeScript
340 lines
9.4 KiB
TypeScript
import { unit } from '@ant-design/cssinjs';
|
|
|
|
import {
|
|
genBasicInputStyle,
|
|
genPlaceholderStyle,
|
|
initComponentToken,
|
|
initInputToken,
|
|
} from '../../input/style';
|
|
import type { SharedComponentToken, SharedInputToken } from '../../input/style/token';
|
|
import {
|
|
genBorderlessStyle,
|
|
genDisabledStyle,
|
|
genFilledStyle,
|
|
genOutlinedStyle,
|
|
genUnderlinedStyle,
|
|
} from '../../input/style/variants';
|
|
import { resetComponent, textEllipsis } from '../../style';
|
|
import type { FullToken, GenerateStyle, GetDefaultToken } from '../../theme/internal';
|
|
import { genStyleHooks, mergeToken } from '../../theme/internal';
|
|
import { genCssVar } from '../../theme/util/genStyleUtils';
|
|
|
|
export interface ComponentToken extends SharedComponentToken {
|
|
/**
|
|
* @desc 弹层 z-index
|
|
* @descEN z-index of popup
|
|
*/
|
|
zIndexPopup: number;
|
|
/**
|
|
* @desc 弹层高度
|
|
* @descEN Height of popup
|
|
*/
|
|
dropdownHeight: number | string;
|
|
/**
|
|
* @desc 菜单项高度
|
|
* @descEN Height of menu item
|
|
*/
|
|
controlItemWidth: number | string;
|
|
}
|
|
|
|
/**
|
|
* @desc Mentions 组件的 Token
|
|
* @descEN Token for Mentions component
|
|
*/
|
|
type MentionsToken = FullToken<'Mentions'> &
|
|
SharedInputToken & {
|
|
/**
|
|
* @desc 菜单项内边距
|
|
* @descEN Padding of menu item
|
|
*/
|
|
itemPaddingVertical: string | number;
|
|
};
|
|
|
|
// ============================= Mentions =============================
|
|
const genDropdownStyle: GenerateStyle<MentionsToken> = (token) => {
|
|
const {
|
|
componentCls,
|
|
fontSize,
|
|
paddingXXS,
|
|
colorBgElevated,
|
|
borderRadiusLG,
|
|
boxShadowSecondary,
|
|
itemPaddingVertical,
|
|
controlPaddingHorizontal,
|
|
colorText,
|
|
borderRadius,
|
|
lineHeight,
|
|
colorTextDisabled,
|
|
controlItemBgHover,
|
|
motionDurationSlow,
|
|
} = token;
|
|
return {
|
|
[componentCls]: {
|
|
// ================== Dropdown ==================
|
|
'&-dropdown': {
|
|
// Ref select dropdown style
|
|
...resetComponent(token),
|
|
|
|
position: 'absolute',
|
|
top: -9999,
|
|
insetInlineStart: -9999,
|
|
zIndex: token.zIndexPopup,
|
|
boxSizing: 'border-box',
|
|
fontSize,
|
|
fontVariant: 'initial',
|
|
padding: paddingXXS,
|
|
backgroundColor: colorBgElevated,
|
|
borderRadius: borderRadiusLG,
|
|
outline: 'none',
|
|
boxShadow: boxShadowSecondary,
|
|
|
|
'&-hidden': {
|
|
display: 'none',
|
|
},
|
|
|
|
[`${componentCls}-dropdown-menu`]: {
|
|
maxHeight: token.dropdownHeight,
|
|
margin: 0,
|
|
paddingInlineStart: 0, // Override default ul/ol
|
|
overflow: 'auto',
|
|
listStyle: 'none',
|
|
outline: 'none',
|
|
|
|
'&-item': {
|
|
...textEllipsis,
|
|
position: 'relative',
|
|
display: 'block',
|
|
minWidth: token.controlItemWidth,
|
|
padding: `${unit(itemPaddingVertical)} ${unit(controlPaddingHorizontal)}`,
|
|
color: colorText,
|
|
borderRadius,
|
|
fontWeight: 'normal',
|
|
lineHeight,
|
|
cursor: 'pointer',
|
|
transition: `background-color ${motionDurationSlow} ease`,
|
|
|
|
'&:hover': {
|
|
backgroundColor: controlItemBgHover,
|
|
},
|
|
|
|
'&-disabled': {
|
|
color: colorTextDisabled,
|
|
cursor: 'not-allowed',
|
|
|
|
'&:hover': {
|
|
color: colorTextDisabled,
|
|
backgroundColor: controlItemBgHover,
|
|
cursor: 'not-allowed',
|
|
},
|
|
},
|
|
|
|
'&-selected': {
|
|
color: colorText,
|
|
fontWeight: token.fontWeightStrong,
|
|
backgroundColor: controlItemBgHover,
|
|
},
|
|
|
|
'&-active': {
|
|
backgroundColor: controlItemBgHover,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
};
|
|
};
|
|
|
|
const genMentionsStyle: GenerateStyle<MentionsToken> = (token) => {
|
|
const { componentCls, colorText, antCls, colorTextDisabled, calc } = token;
|
|
const [varName, varRef] = genCssVar(antCls, 'cmp-mentions');
|
|
return {
|
|
[componentCls]: [
|
|
// =========================== Common ===========================
|
|
resetComponent(token),
|
|
genBasicInputStyle(token, {
|
|
largeStyle: {
|
|
padding: 0,
|
|
},
|
|
smallStyle: {
|
|
padding: 0,
|
|
},
|
|
}),
|
|
|
|
// ========================== Variants ==========================
|
|
genOutlinedStyle(token),
|
|
genFilledStyle(token),
|
|
genBorderlessStyle(token),
|
|
genUnderlinedStyle(token),
|
|
|
|
// ========================== Mentions ==========================
|
|
{
|
|
[varName('padding-inline')]: token.paddingInline,
|
|
[varName('padding-block')]: token.paddingBlock,
|
|
[varName('control-height')]: token.controlHeight,
|
|
|
|
display: 'flex',
|
|
padding: 0,
|
|
whiteSpace: 'pre-wrap',
|
|
|
|
// ========================= Textarea =========================
|
|
'> textarea': [
|
|
resetComponent(token),
|
|
genPlaceholderStyle(token.colorTextPlaceholder),
|
|
|
|
{
|
|
background: 'transparent',
|
|
border: 'none',
|
|
borderRadius: 'inherit',
|
|
outline: 'none',
|
|
flex: 'auto',
|
|
minWidth: 0,
|
|
resize: 'none',
|
|
|
|
'&:disabled': {
|
|
color: colorTextDisabled,
|
|
},
|
|
},
|
|
],
|
|
|
|
[`> textarea, ${componentCls}-measure`]: {
|
|
color: colorText,
|
|
boxSizing: 'border-box',
|
|
margin: 0,
|
|
minHeight: calc(varRef('control-height'))
|
|
.sub(calc(token.lineWidth).mul(2).equal())
|
|
.equal(),
|
|
paddingInline: varRef('padding-inline'),
|
|
paddingBlock: varRef('padding-block'),
|
|
overflow: 'inherit',
|
|
overflowX: 'hidden',
|
|
overflowY: 'auto',
|
|
fontWeight: 'inherit',
|
|
fontSize: 'inherit',
|
|
fontFamily: 'inherit',
|
|
fontStyle: 'inherit',
|
|
fontVariant: 'inherit',
|
|
fontSizeAdjust: 'inherit',
|
|
fontStretch: 'inherit',
|
|
lineHeight: 'inherit',
|
|
direction: 'inherit',
|
|
letterSpacing: 'inherit',
|
|
whiteSpace: 'inherit',
|
|
textAlign: 'inherit',
|
|
verticalAlign: 'top',
|
|
wordWrap: 'break-word',
|
|
wordBreak: 'inherit',
|
|
tabSize: 'inherit',
|
|
},
|
|
|
|
// ========================= Measure ==========================
|
|
[`${componentCls}-measure`]: {
|
|
position: 'absolute',
|
|
inset: 0,
|
|
zIndex: -1,
|
|
color: 'transparent',
|
|
pointerEvents: 'none',
|
|
|
|
'> span': {
|
|
display: 'inline-block',
|
|
minHeight: '1em',
|
|
},
|
|
},
|
|
|
|
// ========================== Suffix ==========================
|
|
[`${componentCls}-suffix`]: {
|
|
display: 'inline-flex',
|
|
alignItems: 'center',
|
|
flex: 'none',
|
|
color: token.colorTextQuaternary,
|
|
fontSize: token.fontSizeIcon,
|
|
lineHeight: 1,
|
|
position: 'absolute',
|
|
top: '50%',
|
|
transform: 'translateY(-50%)',
|
|
insetInlineEnd: varRef('padding-inline'),
|
|
columnGap: token.marginXS,
|
|
|
|
[`${componentCls}-clear-icon`]: {
|
|
// https://github.com/ant-design/ant-design/pull/18151
|
|
// https://codesandbox.io/s/wizardly-sun-u10br
|
|
cursor: 'pointer',
|
|
border: 0,
|
|
background: 'transparent',
|
|
|
|
'&:hover': {
|
|
color: token.colorIcon,
|
|
},
|
|
|
|
'&:active': {
|
|
color: token.colorText,
|
|
},
|
|
|
|
'&-hidden': {
|
|
visibility: 'hidden',
|
|
},
|
|
},
|
|
|
|
[`${antCls}-form-item-feedback-icon`]: {
|
|
display: 'inline-flex',
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
},
|
|
},
|
|
},
|
|
|
|
// ========================= AllowClear =========================
|
|
{
|
|
'&-has-suffix': {
|
|
'> textarea': {
|
|
paddingInlineEnd: calc(token.paddingXXS)
|
|
.mul(1.5)
|
|
.add(token.fontSizeIcon)
|
|
.add(varRef('padding-inline'))
|
|
.equal(),
|
|
},
|
|
},
|
|
},
|
|
|
|
// ========================== Disabled ==========================
|
|
{
|
|
'&-disabled': {
|
|
'> textarea': {
|
|
...genDisabledStyle(token),
|
|
},
|
|
},
|
|
},
|
|
{
|
|
'&-lg': {
|
|
[varName('padding-inline')]: token.paddingInlineLG,
|
|
[varName('padding-block')]: token.paddingBlockLG,
|
|
[varName('control-height')]: token.controlHeightLG,
|
|
},
|
|
'&-sm': {
|
|
[varName('padding-inline')]: token.paddingInlineSM,
|
|
[varName('padding-block')]: token.paddingBlockSM,
|
|
[varName('control-height')]: token.controlHeightSM,
|
|
},
|
|
},
|
|
],
|
|
};
|
|
};
|
|
|
|
// ============================== Tokens ==============================
|
|
export const prepareComponentToken: GetDefaultToken<'Mentions'> = (token) => ({
|
|
...initComponentToken(token),
|
|
dropdownHeight: 250,
|
|
controlItemWidth: 100,
|
|
zIndexPopup: token.zIndexPopupBase + 50,
|
|
itemPaddingVertical: (token.controlHeight - token.fontHeight) / 2,
|
|
});
|
|
|
|
// ============================== Export ==============================
|
|
export default genStyleHooks(
|
|
'Mentions',
|
|
(token) => {
|
|
const mentionsToken = mergeToken<MentionsToken>(token, initInputToken(token));
|
|
return [genMentionsStyle(mentionsToken), genDropdownStyle(mentionsToken)];
|
|
},
|
|
prepareComponentToken,
|
|
);
|