index.d.ts 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. import type { FullToken } from '../../theme/internal';
  2. export interface ComponentToken {
  3. descriptionWidth: number;
  4. }
  5. export interface StepsToken extends FullToken<'Steps'> {
  6. processTailColor: string;
  7. stepsNavArrowColor: string;
  8. stepsIconSize: number;
  9. stepsIconCustomSize: number;
  10. stepsIconCustomTop: number;
  11. stepsIconCustomFontSize: number;
  12. stepsIconTop: number;
  13. stepsIconFontSize: number;
  14. stepsTitleLineHeight: number;
  15. stepsSmallIconSize: number;
  16. stepsDotSize: number;
  17. stepsCurrentDotSize: number;
  18. stepsNavContentMaxWidth: string;
  19. processIconColor: string;
  20. processTitleColor: string;
  21. processDescriptionColor: string;
  22. processIconBgColor: string;
  23. processIconBorderColor: string;
  24. processDotColor: string;
  25. waitIconColor: string;
  26. waitTitleColor: string;
  27. waitDescriptionColor: string;
  28. waitTailColor: string;
  29. waitIconBgColor: string;
  30. waitIconBorderColor: string;
  31. waitDotColor: string;
  32. finishIconColor: string;
  33. finishTitleColor: string;
  34. finishDescriptionColor: string;
  35. finishTailColor: string;
  36. finishIconBgColor: string;
  37. finishIconBorderColor: string;
  38. finishDotColor: string;
  39. errorIconColor: string;
  40. errorTitleColor: string;
  41. errorDescriptionColor: string;
  42. errorTailColor: string;
  43. errorIconBgColor: string;
  44. errorIconBorderColor: string;
  45. errorDotColor: string;
  46. stepsNavActiveColor: string;
  47. stepsProgressSize: number;
  48. inlineDotSize: number;
  49. inlineTitleColor: string;
  50. inlineTailColor: string;
  51. }
  52. declare const _default: (_prefixCls?: import("vue").Ref<string>) => import("../../theme/internal").UseComponentStyleResult;
  53. export default _default;