first commit
This commit is contained in:
312
frontend/node_modules/antd/lib/steps/style/index.js
generated
vendored
Normal file
312
frontend/node_modules/antd/lib/steps/style/index.js
generated
vendored
Normal file
@@ -0,0 +1,312 @@
|
||||
"use strict";
|
||||
|
||||
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.prepareComponentToken = exports.default = void 0;
|
||||
var _cssinjs = require("@ant-design/cssinjs");
|
||||
var _style = require("../../style");
|
||||
var _internal = require("../../theme/internal");
|
||||
var _customIcon = _interopRequireDefault(require("./custom-icon"));
|
||||
var _horizontal = _interopRequireDefault(require("./horizontal"));
|
||||
var _inline = _interopRequireDefault(require("./inline"));
|
||||
var _labelPlacement = _interopRequireDefault(require("./label-placement"));
|
||||
var _nav = _interopRequireDefault(require("./nav"));
|
||||
var _progress = _interopRequireDefault(require("./progress"));
|
||||
var _progressDot = _interopRequireDefault(require("./progress-dot"));
|
||||
var _rtl = _interopRequireDefault(require("./rtl"));
|
||||
var _small = _interopRequireDefault(require("./small"));
|
||||
var _vertical = _interopRequireDefault(require("./vertical"));
|
||||
const STEP_ITEM_STATUS_WAIT = 'wait';
|
||||
const STEP_ITEM_STATUS_PROCESS = 'process';
|
||||
const STEP_ITEM_STATUS_FINISH = 'finish';
|
||||
const STEP_ITEM_STATUS_ERROR = 'error';
|
||||
const genStepsItemStatusStyle = (status, token) => {
|
||||
const prefix = `${token.componentCls}-item`;
|
||||
const iconColorKey = `${status}IconColor`;
|
||||
const titleColorKey = `${status}TitleColor`;
|
||||
const descriptionColorKey = `${status}DescriptionColor`;
|
||||
const tailColorKey = `${status}TailColor`;
|
||||
const iconBgColorKey = `${status}IconBgColor`;
|
||||
const iconBorderColorKey = `${status}IconBorderColor`;
|
||||
const dotColorKey = `${status}DotColor`;
|
||||
return {
|
||||
[`${prefix}-${status} ${prefix}-icon`]: {
|
||||
backgroundColor: token[iconBgColorKey],
|
||||
borderColor: token[iconBorderColorKey],
|
||||
[`> ${token.componentCls}-icon`]: {
|
||||
color: token[iconColorKey],
|
||||
[`${token.componentCls}-icon-dot`]: {
|
||||
background: token[dotColorKey]
|
||||
}
|
||||
}
|
||||
},
|
||||
[`${prefix}-${status}${prefix}-custom ${prefix}-icon`]: {
|
||||
[`> ${token.componentCls}-icon`]: {
|
||||
color: token[dotColorKey]
|
||||
}
|
||||
},
|
||||
[`${prefix}-${status} > ${prefix}-container > ${prefix}-content > ${prefix}-title`]: {
|
||||
color: token[titleColorKey],
|
||||
'&::after': {
|
||||
backgroundColor: token[tailColorKey]
|
||||
}
|
||||
},
|
||||
[`${prefix}-${status} > ${prefix}-container > ${prefix}-content > ${prefix}-description`]: {
|
||||
color: token[descriptionColorKey]
|
||||
},
|
||||
[`${prefix}-${status} > ${prefix}-container > ${prefix}-tail::after`]: {
|
||||
backgroundColor: token[tailColorKey]
|
||||
}
|
||||
};
|
||||
};
|
||||
const genStepsItemStyle = token => {
|
||||
const {
|
||||
componentCls,
|
||||
motionDurationSlow
|
||||
} = token;
|
||||
const stepsItemCls = `${componentCls}-item`; // .ant-steps-item
|
||||
const stepItemIconCls = `${stepsItemCls}-icon`;
|
||||
return Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({
|
||||
[stepsItemCls]: {
|
||||
position: 'relative',
|
||||
display: 'inline-block',
|
||||
flex: 1,
|
||||
overflow: 'hidden',
|
||||
verticalAlign: 'top',
|
||||
'&:last-child': {
|
||||
flex: 'none',
|
||||
[`> ${stepsItemCls}-container > ${stepsItemCls}-tail, > ${stepsItemCls}-container > ${stepsItemCls}-content > ${stepsItemCls}-title::after`]: {
|
||||
display: 'none'
|
||||
}
|
||||
}
|
||||
},
|
||||
[`${stepsItemCls}-container`]: {
|
||||
outline: 'none',
|
||||
[`&:focus-visible ${stepItemIconCls}`]: (0, _style.genFocusOutline)(token)
|
||||
},
|
||||
[`${stepItemIconCls}, ${stepsItemCls}-content`]: {
|
||||
display: 'inline-block',
|
||||
verticalAlign: 'top'
|
||||
},
|
||||
[stepItemIconCls]: {
|
||||
width: token.iconSize,
|
||||
height: token.iconSize,
|
||||
marginTop: 0,
|
||||
marginBottom: 0,
|
||||
marginInlineStart: 0,
|
||||
marginInlineEnd: token.marginXS,
|
||||
fontSize: token.iconFontSize,
|
||||
fontFamily: token.fontFamily,
|
||||
lineHeight: (0, _cssinjs.unit)(token.iconSize),
|
||||
textAlign: 'center',
|
||||
borderRadius: token.iconSize,
|
||||
border: `${(0, _cssinjs.unit)(token.lineWidth)} ${token.lineType} transparent`,
|
||||
transition: `background-color ${motionDurationSlow}, border-color ${motionDurationSlow}`,
|
||||
[`${componentCls}-icon`]: {
|
||||
position: 'relative',
|
||||
top: token.iconTop,
|
||||
color: token.colorPrimary,
|
||||
lineHeight: 1
|
||||
}
|
||||
},
|
||||
[`${stepsItemCls}-tail`]: {
|
||||
position: 'absolute',
|
||||
top: token.calc(token.iconSize).div(2).equal(),
|
||||
insetInlineStart: 0,
|
||||
width: '100%',
|
||||
'&::after': {
|
||||
display: 'inline-block',
|
||||
width: '100%',
|
||||
height: token.lineWidth,
|
||||
background: token.colorSplit,
|
||||
borderRadius: token.lineWidth,
|
||||
transition: `background ${motionDurationSlow}`,
|
||||
content: '""'
|
||||
}
|
||||
},
|
||||
[`${stepsItemCls}-title`]: {
|
||||
position: 'relative',
|
||||
display: 'inline-block',
|
||||
paddingInlineEnd: token.padding,
|
||||
color: token.colorText,
|
||||
fontSize: token.fontSizeLG,
|
||||
lineHeight: (0, _cssinjs.unit)(token.titleLineHeight),
|
||||
'&::after': {
|
||||
position: 'absolute',
|
||||
top: token.calc(token.titleLineHeight).div(2).equal(),
|
||||
insetInlineStart: '100%',
|
||||
display: 'block',
|
||||
width: 9999,
|
||||
height: token.lineWidth,
|
||||
background: token.processTailColor,
|
||||
content: '""'
|
||||
}
|
||||
},
|
||||
[`${stepsItemCls}-subtitle`]: {
|
||||
display: 'inline',
|
||||
marginInlineStart: token.marginXS,
|
||||
color: token.colorTextDescription,
|
||||
fontWeight: 'normal',
|
||||
fontSize: token.fontSize
|
||||
},
|
||||
[`${stepsItemCls}-description`]: {
|
||||
color: token.colorTextDescription,
|
||||
fontSize: token.fontSize
|
||||
}
|
||||
}, genStepsItemStatusStyle(STEP_ITEM_STATUS_WAIT, token)), genStepsItemStatusStyle(STEP_ITEM_STATUS_PROCESS, token)), {
|
||||
[`${stepsItemCls}-process > ${stepsItemCls}-container > ${stepsItemCls}-title`]: {
|
||||
fontWeight: token.fontWeightStrong
|
||||
}
|
||||
}), genStepsItemStatusStyle(STEP_ITEM_STATUS_FINISH, token)), genStepsItemStatusStyle(STEP_ITEM_STATUS_ERROR, token)), {
|
||||
[`${stepsItemCls}${componentCls}-next-error > ${componentCls}-item-title::after`]: {
|
||||
background: token.colorError
|
||||
},
|
||||
[`${stepsItemCls}-disabled`]: {
|
||||
cursor: 'not-allowed'
|
||||
}
|
||||
});
|
||||
};
|
||||
// ============================= Clickable ===========================
|
||||
const genStepsClickableStyle = token => {
|
||||
const {
|
||||
componentCls,
|
||||
motionDurationSlow
|
||||
} = token;
|
||||
return {
|
||||
[`& ${componentCls}-item`]: {
|
||||
[`&:not(${componentCls}-item-active)`]: {
|
||||
[`& > ${componentCls}-item-container[role='button']`]: {
|
||||
cursor: 'pointer',
|
||||
[`${componentCls}-item`]: {
|
||||
[`&-title, &-subtitle, &-description, &-icon ${componentCls}-icon`]: {
|
||||
transition: `color ${motionDurationSlow}`
|
||||
}
|
||||
},
|
||||
'&:hover': {
|
||||
[`${componentCls}-item`]: {
|
||||
'&-title, &-subtitle, &-description': {
|
||||
color: token.colorPrimary
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
[`&:not(${componentCls}-item-process)`]: {
|
||||
[`& > ${componentCls}-item-container[role='button']:hover`]: {
|
||||
[`${componentCls}-item`]: {
|
||||
'&-icon': {
|
||||
borderColor: token.colorPrimary,
|
||||
[`${componentCls}-icon`]: {
|
||||
color: token.colorPrimary
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
[`&${componentCls}-horizontal:not(${componentCls}-label-vertical)`]: {
|
||||
[`${componentCls}-item`]: {
|
||||
paddingInlineStart: token.padding,
|
||||
whiteSpace: 'nowrap',
|
||||
'&:first-child': {
|
||||
paddingInlineStart: 0
|
||||
},
|
||||
[`&:last-child ${componentCls}-item-title`]: {
|
||||
paddingInlineEnd: 0
|
||||
},
|
||||
'&-tail': {
|
||||
display: 'none'
|
||||
},
|
||||
'&-description': {
|
||||
maxWidth: token.descriptionMaxWidth,
|
||||
whiteSpace: 'normal'
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
};
|
||||
const genStepsStyle = token => {
|
||||
const {
|
||||
componentCls
|
||||
} = token; // .ant-steps
|
||||
return {
|
||||
[componentCls]: Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({}, (0, _style.resetComponent)(token)), {
|
||||
display: 'flex',
|
||||
width: '100%',
|
||||
fontSize: 0,
|
||||
textAlign: 'initial'
|
||||
}), genStepsItemStyle(token)), genStepsClickableStyle(token)), (0, _customIcon.default)(token)), (0, _small.default)(token)), (0, _vertical.default)(token)), (0, _horizontal.default)(token)), (0, _labelPlacement.default)(token)), (0, _progressDot.default)(token)), (0, _nav.default)(token)), (0, _rtl.default)(token)), (0, _progress.default)(token)), (0, _inline.default)(token))
|
||||
};
|
||||
};
|
||||
// ============================== Export ==============================
|
||||
const prepareComponentToken = token => ({
|
||||
titleLineHeight: token.controlHeight,
|
||||
customIconSize: token.controlHeight,
|
||||
customIconTop: 0,
|
||||
customIconFontSize: token.controlHeightSM,
|
||||
iconSize: token.controlHeight,
|
||||
iconTop: -0.5,
|
||||
// magic for ui experience
|
||||
iconFontSize: token.fontSize,
|
||||
iconSizeSM: token.fontSizeHeading3,
|
||||
dotSize: token.controlHeight / 4,
|
||||
dotCurrentSize: token.controlHeightLG / 4,
|
||||
navArrowColor: token.colorTextDisabled,
|
||||
navContentMaxWidth: 'unset',
|
||||
descriptionMaxWidth: 140,
|
||||
waitIconColor: token.wireframe ? token.colorTextDisabled : token.colorTextLabel,
|
||||
waitIconBgColor: token.wireframe ? token.colorBgContainer : token.colorFillContent,
|
||||
waitIconBorderColor: token.wireframe ? token.colorTextDisabled : 'transparent',
|
||||
finishIconBgColor: token.wireframe ? token.colorBgContainer : token.controlItemBgActive,
|
||||
finishIconBorderColor: token.wireframe ? token.colorPrimary : token.controlItemBgActive
|
||||
});
|
||||
exports.prepareComponentToken = prepareComponentToken;
|
||||
var _default = exports.default = (0, _internal.genStyleHooks)('Steps', token => {
|
||||
const {
|
||||
colorTextDisabled,
|
||||
controlHeightLG,
|
||||
colorTextLightSolid,
|
||||
colorText,
|
||||
colorPrimary,
|
||||
colorTextDescription,
|
||||
colorTextQuaternary,
|
||||
colorError,
|
||||
colorBorderSecondary,
|
||||
colorSplit
|
||||
} = token;
|
||||
const stepsToken = (0, _internal.mergeToken)(token, {
|
||||
// Steps component less variable
|
||||
processIconColor: colorTextLightSolid,
|
||||
processTitleColor: colorText,
|
||||
processDescriptionColor: colorText,
|
||||
processIconBgColor: colorPrimary,
|
||||
processIconBorderColor: colorPrimary,
|
||||
processDotColor: colorPrimary,
|
||||
processTailColor: colorSplit,
|
||||
waitTitleColor: colorTextDescription,
|
||||
waitDescriptionColor: colorTextDescription,
|
||||
waitTailColor: colorSplit,
|
||||
waitDotColor: colorTextDisabled,
|
||||
finishIconColor: colorPrimary,
|
||||
finishTitleColor: colorText,
|
||||
finishDescriptionColor: colorTextDescription,
|
||||
finishTailColor: colorPrimary,
|
||||
finishDotColor: colorPrimary,
|
||||
errorIconColor: colorTextLightSolid,
|
||||
errorTitleColor: colorError,
|
||||
errorDescriptionColor: colorError,
|
||||
errorTailColor: colorSplit,
|
||||
errorIconBgColor: colorError,
|
||||
errorIconBorderColor: colorError,
|
||||
errorDotColor: colorError,
|
||||
stepsNavActiveColor: colorPrimary,
|
||||
stepsProgressSize: controlHeightLG,
|
||||
// Steps inline variable
|
||||
inlineDotSize: 6,
|
||||
inlineTitleColor: colorTextQuaternary,
|
||||
inlineTailColor: colorBorderSecondary
|
||||
});
|
||||
return genStepsStyle(stepsToken);
|
||||
}, prepareComponentToken);
|
||||
Reference in New Issue
Block a user