| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- 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>) => import("../../theme/internal").UseComponentStyleResult;
- export default _default;
|