54 lines
1.7 KiB
TypeScript
54 lines
1.7 KiB
TypeScript
import type { FullToken } from '../../theme/internal';
|
|
export interface ComponentToken {
|
|
descriptionWidth: number;
|
|
}
|
|
export interface StepsToken extends FullToken<'Steps'> {
|
|
processTailColor: string;
|
|
stepsNavArrowColor: string;
|
|
stepsIconSize: number;
|
|
stepsIconCustomSize: number;
|
|
stepsIconCustomTop: number;
|
|
stepsIconCustomFontSize: number;
|
|
stepsIconTop: number;
|
|
stepsIconFontSize: number;
|
|
stepsTitleLineHeight: number;
|
|
stepsSmallIconSize: number;
|
|
stepsDotSize: number;
|
|
stepsCurrentDotSize: number;
|
|
stepsNavContentMaxWidth: string;
|
|
processIconColor: string;
|
|
processTitleColor: string;
|
|
processDescriptionColor: string;
|
|
processIconBgColor: string;
|
|
processIconBorderColor: string;
|
|
processDotColor: string;
|
|
waitIconColor: string;
|
|
waitTitleColor: string;
|
|
waitDescriptionColor: string;
|
|
waitTailColor: string;
|
|
waitIconBgColor: string;
|
|
waitIconBorderColor: string;
|
|
waitDotColor: string;
|
|
finishIconColor: string;
|
|
finishTitleColor: string;
|
|
finishDescriptionColor: string;
|
|
finishTailColor: string;
|
|
finishIconBgColor: string;
|
|
finishIconBorderColor: string;
|
|
finishDotColor: string;
|
|
errorIconColor: string;
|
|
errorTitleColor: string;
|
|
errorDescriptionColor: string;
|
|
errorTailColor: string;
|
|
errorIconBgColor: string;
|
|
errorIconBorderColor: string;
|
|
errorDotColor: string;
|
|
stepsNavActiveColor: string;
|
|
stepsProgressSize: number;
|
|
inlineDotSize: number;
|
|
inlineTitleColor: string;
|
|
inlineTailColor: string;
|
|
}
|
|
declare const _default: (_prefixCls?: import("vue").Ref<string, string>) => import("../../theme/internal").UseComponentStyleResult;
|
|
export default _default;
|