mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 00:09:39 +08:00
94 lines
2.1 KiB
TypeScript
94 lines
2.1 KiB
TypeScript
import type { FullToken, GenerateStyle, GetDefaultToken } from '../../theme/internal';
|
|
import { genStyleHooks } from '../../theme/internal';
|
|
|
|
export interface ComponentToken {
|
|
/**
|
|
* @desc 确认框 z-index
|
|
* @descEN z-index of Popconfirm
|
|
*/
|
|
zIndexPopup: number;
|
|
}
|
|
|
|
/**
|
|
* @desc Popconfirm 组件的 Token
|
|
* @descEN Token for Popconfirm component
|
|
*/
|
|
export interface PopconfirmToken extends FullToken<'Popconfirm'> {}
|
|
|
|
// =============================== Base ===============================
|
|
const genBaseStyle: GenerateStyle<PopconfirmToken> = (token) => {
|
|
const {
|
|
componentCls,
|
|
iconCls,
|
|
antCls,
|
|
zIndexPopup,
|
|
colorText,
|
|
colorWarning,
|
|
marginXXS,
|
|
marginXS,
|
|
fontSize,
|
|
fontWeightStrong,
|
|
colorTextHeading,
|
|
} = token;
|
|
|
|
return {
|
|
[componentCls]: {
|
|
zIndex: zIndexPopup,
|
|
|
|
[`&${antCls}-popover`]: {
|
|
fontSize,
|
|
},
|
|
|
|
[`${componentCls}-message`]: {
|
|
marginBottom: marginXS,
|
|
display: 'flex',
|
|
flexWrap: 'nowrap',
|
|
alignItems: 'start',
|
|
|
|
[`> ${componentCls}-message-icon ${iconCls}`]: {
|
|
color: colorWarning,
|
|
fontSize,
|
|
lineHeight: 1,
|
|
marginInlineEnd: marginXS,
|
|
},
|
|
|
|
[`${componentCls}-title`]: {
|
|
fontWeight: fontWeightStrong,
|
|
color: colorTextHeading,
|
|
|
|
'&:only-child': {
|
|
fontWeight: 'normal',
|
|
},
|
|
},
|
|
|
|
[`${componentCls}-description`]: {
|
|
marginTop: marginXXS,
|
|
color: colorText,
|
|
},
|
|
},
|
|
|
|
[`${componentCls}-buttons`]: {
|
|
textAlign: 'end',
|
|
whiteSpace: 'nowrap',
|
|
|
|
button: {
|
|
marginInlineStart: marginXS,
|
|
},
|
|
},
|
|
},
|
|
};
|
|
};
|
|
|
|
// ============================== Export ==============================
|
|
export const prepareComponentToken: GetDefaultToken<'Popconfirm'> = (token) => {
|
|
const { zIndexPopupBase } = token;
|
|
|
|
return {
|
|
zIndexPopup: zIndexPopupBase + 60,
|
|
};
|
|
};
|
|
|
|
export default genStyleHooks('Popconfirm', (token) => genBaseStyle(token), prepareComponentToken, {
|
|
resetStyle: false,
|
|
});
|