{"ast":null,"code":"\"use client\";\n\nimport { genFocusOutline, resetComponent } from '../../style';\nimport { genComponentStyleHook, mergeToken } from '../../theme/internal';\nimport genStepsCustomIconStyle from './custom-icon';\nimport genStepsInlineStyle from './inline';\nimport genStepsLabelPlacementStyle from './label-placement';\nimport genStepsNavStyle from './nav';\nimport genStepsProgressStyle from './progress';\nimport genStepsProgressDotStyle from './progress-dot';\nimport genStepsRTLStyle from './rtl';\nimport genStepsSmallStyle from './small';\nimport genStepsVerticalStyle from './vertical';\nvar StepItemStatusEnum;\n(function (StepItemStatusEnum) {\n  StepItemStatusEnum[\"wait\"] = \"wait\";\n  StepItemStatusEnum[\"process\"] = \"process\";\n  StepItemStatusEnum[\"finish\"] = \"finish\";\n  StepItemStatusEnum[\"error\"] = \"error\";\n})(StepItemStatusEnum || (StepItemStatusEnum = {}));\nconst genStepsItemStatusStyle = (status, token) => {\n  const prefix = `${token.componentCls}-item`;\n  const iconColorKey = `${status}IconColor`;\n  const titleColorKey = `${status}TitleColor`;\n  const descriptionColorKey = `${status}DescriptionColor`;\n  const tailColorKey = `${status}TailColor`;\n  const iconBgColorKey = `${status}IconBgColor`;\n  const iconBorderColorKey = `${status}IconBorderColor`;\n  const dotColorKey = `${status}DotColor`;\n  return {\n    [`${prefix}-${status} ${prefix}-icon`]: {\n      backgroundColor: token[iconBgColorKey],\n      borderColor: token[iconBorderColorKey],\n      [`> ${token.componentCls}-icon`]: {\n        color: token[iconColorKey],\n        [`${token.componentCls}-icon-dot`]: {\n          background: token[dotColorKey]\n        }\n      }\n    },\n    [`${prefix}-${status}${prefix}-custom ${prefix}-icon`]: {\n      [`> ${token.componentCls}-icon`]: {\n        color: token[dotColorKey]\n      }\n    },\n    [`${prefix}-${status} > ${prefix}-container > ${prefix}-content > ${prefix}-title`]: {\n      color: token[titleColorKey],\n      '&::after': {\n        backgroundColor: token[tailColorKey]\n      }\n    },\n    [`${prefix}-${status} > ${prefix}-container > ${prefix}-content > ${prefix}-description`]: {\n      color: token[descriptionColorKey]\n    },\n    [`${prefix}-${status} > ${prefix}-container > ${prefix}-tail::after`]: {\n      backgroundColor: token[tailColorKey]\n    }\n  };\n};\nconst genStepsItemStyle = token => {\n  const {\n    componentCls,\n    motionDurationSlow\n  } = token;\n  const stepsItemCls = `${componentCls}-item`; // .ant-steps-item\n  const stepItemIconCls = `${stepsItemCls}-icon`;\n  return Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({\n    [stepsItemCls]: {\n      position: 'relative',\n      display: 'inline-block',\n      flex: 1,\n      overflow: 'hidden',\n      verticalAlign: 'top',\n      '&:last-child': {\n        flex: 'none',\n        [`> ${stepsItemCls}-container > ${stepsItemCls}-tail, > ${stepsItemCls}-container >  ${stepsItemCls}-content > ${stepsItemCls}-title::after`]: {\n          display: 'none'\n        }\n      }\n    },\n    [`${stepsItemCls}-container`]: {\n      outline: 'none',\n      [`&:focus-visible`]: {\n        [stepItemIconCls]: Object.assign({}, genFocusOutline(token))\n      }\n    },\n    [`${stepItemIconCls}, ${stepsItemCls}-content`]: {\n      display: 'inline-block',\n      verticalAlign: 'top'\n    },\n    [stepItemIconCls]: {\n      width: token.iconSize,\n      height: token.iconSize,\n      marginTop: 0,\n      marginBottom: 0,\n      marginInlineStart: 0,\n      marginInlineEnd: token.marginXS,\n      fontSize: token.iconFontSize,\n      fontFamily: token.fontFamily,\n      lineHeight: `${token.iconSize}px`,\n      textAlign: 'center',\n      borderRadius: token.iconSize,\n      border: `${token.lineWidth}px ${token.lineType} transparent`,\n      transition: `background-color ${motionDurationSlow}, border-color ${motionDurationSlow}`,\n      [`${componentCls}-icon`]: {\n        position: 'relative',\n        top: token.iconTop,\n        color: token.colorPrimary,\n        lineHeight: 1\n      }\n    },\n    [`${stepsItemCls}-tail`]: {\n      position: 'absolute',\n      top: token.iconSize / 2 - token.paddingXXS,\n      insetInlineStart: 0,\n      width: '100%',\n      '&::after': {\n        display: 'inline-block',\n        width: '100%',\n        height: token.lineWidth,\n        background: token.colorSplit,\n        borderRadius: token.lineWidth,\n        transition: `background ${motionDurationSlow}`,\n        content: '\"\"'\n      }\n    },\n    [`${stepsItemCls}-title`]: {\n      position: 'relative',\n      display: 'inline-block',\n      paddingInlineEnd: token.padding,\n      color: token.colorText,\n      fontSize: token.fontSizeLG,\n      lineHeight: `${token.titleLineHeight}px`,\n      '&::after': {\n        position: 'absolute',\n        top: token.titleLineHeight / 2,\n        insetInlineStart: '100%',\n        display: 'block',\n        width: 9999,\n        height: token.lineWidth,\n        background: token.processTailColor,\n        content: '\"\"'\n      }\n    },\n    [`${stepsItemCls}-subtitle`]: {\n      display: 'inline',\n      marginInlineStart: token.marginXS,\n      color: token.colorTextDescription,\n      fontWeight: 'normal',\n      fontSize: token.fontSize\n    },\n    [`${stepsItemCls}-description`]: {\n      color: token.colorTextDescription,\n      fontSize: token.fontSize\n    }\n  }, genStepsItemStatusStyle(StepItemStatusEnum.wait, token)), genStepsItemStatusStyle(StepItemStatusEnum.process, token)), {\n    [`${stepsItemCls}-process > ${stepsItemCls}-container > ${stepsItemCls}-title`]: {\n      fontWeight: token.fontWeightStrong\n    }\n  }), genStepsItemStatusStyle(StepItemStatusEnum.finish, token)), genStepsItemStatusStyle(StepItemStatusEnum.error, token)), {\n    [`${stepsItemCls}${componentCls}-next-error > ${componentCls}-item-title::after`]: {\n      background: token.colorError\n    },\n    [`${stepsItemCls}-disabled`]: {\n      cursor: 'not-allowed'\n    }\n  });\n};\n// ============================= Clickable ===========================\nconst genStepsClickableStyle = token => {\n  const {\n    componentCls,\n    motionDurationSlow\n  } = token;\n  return {\n    [`& ${componentCls}-item`]: {\n      [`&:not(${componentCls}-item-active)`]: {\n        [`& > ${componentCls}-item-container[role='button']`]: {\n          cursor: 'pointer',\n          [`${componentCls}-item`]: {\n            [`&-title, &-subtitle, &-description, &-icon ${componentCls}-icon`]: {\n              transition: `color ${motionDurationSlow}`\n            }\n          },\n          '&:hover': {\n            [`${componentCls}-item`]: {\n              [`&-title, &-subtitle, &-description`]: {\n                color: token.colorPrimary\n              }\n            }\n          }\n        },\n        [`&:not(${componentCls}-item-process)`]: {\n          [`& > ${componentCls}-item-container[role='button']:hover`]: {\n            [`${componentCls}-item`]: {\n              '&-icon': {\n                borderColor: token.colorPrimary,\n                [`${componentCls}-icon`]: {\n                  color: token.colorPrimary\n                }\n              }\n            }\n          }\n        }\n      }\n    },\n    [`&${componentCls}-horizontal:not(${componentCls}-label-vertical)`]: {\n      [`${componentCls}-item`]: {\n        paddingInlineStart: token.padding,\n        whiteSpace: 'nowrap',\n        '&:first-child': {\n          paddingInlineStart: 0\n        },\n        [`&:last-child ${componentCls}-item-title`]: {\n          paddingInlineEnd: 0\n        },\n        '&-tail': {\n          display: 'none'\n        },\n        '&-description': {\n          maxWidth: token.descriptionMaxWidth,\n          whiteSpace: 'normal'\n        }\n      }\n    }\n  };\n};\nconst genStepsStyle = token => {\n  const {\n    componentCls\n  } = token; // .ant-steps\n  return {\n    [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({}, resetComponent(token)), {\n      display: 'flex',\n      width: '100%',\n      fontSize: 0,\n      textAlign: 'initial'\n    }), genStepsItemStyle(token)), genStepsClickableStyle(token)), genStepsCustomIconStyle(token)), genStepsSmallStyle(token)), genStepsVerticalStyle(token)), genStepsLabelPlacementStyle(token)), genStepsProgressDotStyle(token)), genStepsNavStyle(token)), genStepsRTLStyle(token)), genStepsProgressStyle(token)), genStepsInlineStyle(token))\n  };\n};\n// ============================== Export ==============================\nexport default genComponentStyleHook('Steps', token => {\n  const {\n    wireframe,\n    colorTextDisabled,\n    controlHeightLG,\n    colorTextLightSolid,\n    colorText,\n    colorPrimary,\n    colorTextLabel,\n    colorTextDescription,\n    colorTextQuaternary,\n    colorFillContent,\n    controlItemBgActive,\n    colorError,\n    colorBgContainer,\n    colorBorderSecondary,\n    colorSplit\n  } = token;\n  const stepsToken = mergeToken(token, {\n    // Steps component less variable\n    processIconColor: colorTextLightSolid,\n    processTitleColor: colorText,\n    processDescriptionColor: colorText,\n    processIconBgColor: colorPrimary,\n    processIconBorderColor: colorPrimary,\n    processDotColor: colorPrimary,\n    processTailColor: colorSplit,\n    waitIconColor: wireframe ? colorTextDisabled : colorTextLabel,\n    waitTitleColor: colorTextDescription,\n    waitDescriptionColor: colorTextDescription,\n    waitTailColor: colorSplit,\n    waitIconBgColor: wireframe ? colorBgContainer : colorFillContent,\n    waitIconBorderColor: wireframe ? colorTextDisabled : 'transparent',\n    waitDotColor: colorTextDisabled,\n    finishIconColor: colorPrimary,\n    finishTitleColor: colorText,\n    finishDescriptionColor: colorTextDescription,\n    finishTailColor: colorPrimary,\n    finishIconBgColor: wireframe ? colorBgContainer : controlItemBgActive,\n    finishIconBorderColor: wireframe ? colorPrimary : controlItemBgActive,\n    finishDotColor: colorPrimary,\n    errorIconColor: colorTextLightSolid,\n    errorTitleColor: colorError,\n    errorDescriptionColor: colorError,\n    errorTailColor: colorSplit,\n    errorIconBgColor: colorError,\n    errorIconBorderColor: colorError,\n    errorDotColor: colorError,\n    stepsNavActiveColor: colorPrimary,\n    stepsProgressSize: controlHeightLG,\n    // Steps inline variable\n    inlineDotSize: 6,\n    inlineTitleColor: colorTextQuaternary,\n    inlineTailColor: colorBorderSecondary\n  });\n  return [genStepsStyle(stepsToken)];\n}, token => {\n  const {\n    colorTextDisabled,\n    fontSize,\n    controlHeightSM,\n    controlHeight,\n    controlHeightLG,\n    fontSizeHeading3\n  } = token;\n  return {\n    titleLineHeight: controlHeight,\n    customIconSize: controlHeight,\n    customIconTop: 0,\n    customIconFontSize: controlHeightSM,\n    iconSize: controlHeight,\n    iconTop: -0.5,\n    iconFontSize: fontSize,\n    iconSizeSM: fontSizeHeading3,\n    dotSize: controlHeight / 4,\n    dotCurrentSize: controlHeightLG / 4,\n    navArrowColor: colorTextDisabled,\n    navContentMaxWidth: 'auto',\n    descriptionMaxWidth: 140\n  };\n});","map":{"version":3,"names":["genFocusOutline","resetComponent","genComponentStyleHook","mergeToken","genStepsCustomIconStyle","genStepsInlineStyle","genStepsLabelPlacementStyle","genStepsNavStyle","genStepsProgressStyle","genStepsProgressDotStyle","genStepsRTLStyle","genStepsSmallStyle","genStepsVerticalStyle","StepItemStatusEnum","genStepsItemStatusStyle","status","token","prefix","componentCls","iconColorKey","titleColorKey","descriptionColorKey","tailColorKey","iconBgColorKey","iconBorderColorKey","dotColorKey","backgroundColor","borderColor","color","background","genStepsItemStyle","motionDurationSlow","stepsItemCls","stepItemIconCls","Object","assign","position","display","flex","overflow","verticalAlign","outline","width","iconSize","height","marginTop","marginBottom","marginInlineStart","marginInlineEnd","marginXS","fontSize","iconFontSize","fontFamily","lineHeight","textAlign","borderRadius","border","lineWidth","lineType","transition","top","iconTop","colorPrimary","paddingXXS","insetInlineStart","colorSplit","content","paddingInlineEnd","padding","colorText","fontSizeLG","titleLineHeight","processTailColor","colorTextDescription","fontWeight","wait","process","fontWeightStrong","finish","error","colorError","cursor","genStepsClickableStyle","paddingInlineStart","whiteSpace","maxWidth","descriptionMaxWidth","genStepsStyle","wireframe","colorTextDisabled","controlHeightLG","colorTextLightSolid","colorTextLabel","colorTextQuaternary","colorFillContent","controlItemBgActive","colorBgContainer","colorBorderSecondary","stepsToken","processIconColor","processTitleColor","processDescriptionColor","processIconBgColor","processIconBorderColor","processDotColor","waitIconColor","waitTitleColor","waitDescriptionColor","waitTailColor","waitIconBgColor","waitIconBorderColor","waitDotColor","finishIconColor","finishTitleColor","finishDescriptionColor","finishTailColor","finishIconBgColor","finishIconBorderColor","finishDotColor","errorIconColor","errorTitleColor","errorDescriptionColor","errorTailColor","errorIconBgColor","errorIconBorderColor","errorDotColor","stepsNavActiveColor","stepsProgressSize","inlineDotSize","inlineTitleColor","inlineTailColor","controlHeightSM","controlHeight","fontSizeHeading3","customIconSize","customIconTop","customIconFontSize","iconSizeSM","dotSize","dotCurrentSize","navArrowColor","navContentMaxWidth"],"sources":["/var/www/gavt/node_modules/antd/es/steps/style/index.js"],"sourcesContent":["\"use client\";\n\nimport { genFocusOutline, resetComponent } from '../../style';\nimport { genComponentStyleHook, mergeToken } from '../../theme/internal';\nimport genStepsCustomIconStyle from './custom-icon';\nimport genStepsInlineStyle from './inline';\nimport genStepsLabelPlacementStyle from './label-placement';\nimport genStepsNavStyle from './nav';\nimport genStepsProgressStyle from './progress';\nimport genStepsProgressDotStyle from './progress-dot';\nimport genStepsRTLStyle from './rtl';\nimport genStepsSmallStyle from './small';\nimport genStepsVerticalStyle from './vertical';\nvar StepItemStatusEnum;\n(function (StepItemStatusEnum) {\n  StepItemStatusEnum[\"wait\"] = \"wait\";\n  StepItemStatusEnum[\"process\"] = \"process\";\n  StepItemStatusEnum[\"finish\"] = \"finish\";\n  StepItemStatusEnum[\"error\"] = \"error\";\n})(StepItemStatusEnum || (StepItemStatusEnum = {}));\nconst genStepsItemStatusStyle = (status, token) => {\n  const prefix = `${token.componentCls}-item`;\n  const iconColorKey = `${status}IconColor`;\n  const titleColorKey = `${status}TitleColor`;\n  const descriptionColorKey = `${status}DescriptionColor`;\n  const tailColorKey = `${status}TailColor`;\n  const iconBgColorKey = `${status}IconBgColor`;\n  const iconBorderColorKey = `${status}IconBorderColor`;\n  const dotColorKey = `${status}DotColor`;\n  return {\n    [`${prefix}-${status} ${prefix}-icon`]: {\n      backgroundColor: token[iconBgColorKey],\n      borderColor: token[iconBorderColorKey],\n      [`> ${token.componentCls}-icon`]: {\n        color: token[iconColorKey],\n        [`${token.componentCls}-icon-dot`]: {\n          background: token[dotColorKey]\n        }\n      }\n    },\n    [`${prefix}-${status}${prefix}-custom ${prefix}-icon`]: {\n      [`> ${token.componentCls}-icon`]: {\n        color: token[dotColorKey]\n      }\n    },\n    [`${prefix}-${status} > ${prefix}-container > ${prefix}-content > ${prefix}-title`]: {\n      color: token[titleColorKey],\n      '&::after': {\n        backgroundColor: token[tailColorKey]\n      }\n    },\n    [`${prefix}-${status} > ${prefix}-container > ${prefix}-content > ${prefix}-description`]: {\n      color: token[descriptionColorKey]\n    },\n    [`${prefix}-${status} > ${prefix}-container > ${prefix}-tail::after`]: {\n      backgroundColor: token[tailColorKey]\n    }\n  };\n};\nconst genStepsItemStyle = token => {\n  const {\n    componentCls,\n    motionDurationSlow\n  } = token;\n  const stepsItemCls = `${componentCls}-item`; // .ant-steps-item\n  const stepItemIconCls = `${stepsItemCls}-icon`;\n  return Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({\n    [stepsItemCls]: {\n      position: 'relative',\n      display: 'inline-block',\n      flex: 1,\n      overflow: 'hidden',\n      verticalAlign: 'top',\n      '&:last-child': {\n        flex: 'none',\n        [`> ${stepsItemCls}-container > ${stepsItemCls}-tail, > ${stepsItemCls}-container >  ${stepsItemCls}-content > ${stepsItemCls}-title::after`]: {\n          display: 'none'\n        }\n      }\n    },\n    [`${stepsItemCls}-container`]: {\n      outline: 'none',\n      [`&:focus-visible`]: {\n        [stepItemIconCls]: Object.assign({}, genFocusOutline(token))\n      }\n    },\n    [`${stepItemIconCls}, ${stepsItemCls}-content`]: {\n      display: 'inline-block',\n      verticalAlign: 'top'\n    },\n    [stepItemIconCls]: {\n      width: token.iconSize,\n      height: token.iconSize,\n      marginTop: 0,\n      marginBottom: 0,\n      marginInlineStart: 0,\n      marginInlineEnd: token.marginXS,\n      fontSize: token.iconFontSize,\n      fontFamily: token.fontFamily,\n      lineHeight: `${token.iconSize}px`,\n      textAlign: 'center',\n      borderRadius: token.iconSize,\n      border: `${token.lineWidth}px ${token.lineType} transparent`,\n      transition: `background-color ${motionDurationSlow}, border-color ${motionDurationSlow}`,\n      [`${componentCls}-icon`]: {\n        position: 'relative',\n        top: token.iconTop,\n        color: token.colorPrimary,\n        lineHeight: 1\n      }\n    },\n    [`${stepsItemCls}-tail`]: {\n      position: 'absolute',\n      top: token.iconSize / 2 - token.paddingXXS,\n      insetInlineStart: 0,\n      width: '100%',\n      '&::after': {\n        display: 'inline-block',\n        width: '100%',\n        height: token.lineWidth,\n        background: token.colorSplit,\n        borderRadius: token.lineWidth,\n        transition: `background ${motionDurationSlow}`,\n        content: '\"\"'\n      }\n    },\n    [`${stepsItemCls}-title`]: {\n      position: 'relative',\n      display: 'inline-block',\n      paddingInlineEnd: token.padding,\n      color: token.colorText,\n      fontSize: token.fontSizeLG,\n      lineHeight: `${token.titleLineHeight}px`,\n      '&::after': {\n        position: 'absolute',\n        top: token.titleLineHeight / 2,\n        insetInlineStart: '100%',\n        display: 'block',\n        width: 9999,\n        height: token.lineWidth,\n        background: token.processTailColor,\n        content: '\"\"'\n      }\n    },\n    [`${stepsItemCls}-subtitle`]: {\n      display: 'inline',\n      marginInlineStart: token.marginXS,\n      color: token.colorTextDescription,\n      fontWeight: 'normal',\n      fontSize: token.fontSize\n    },\n    [`${stepsItemCls}-description`]: {\n      color: token.colorTextDescription,\n      fontSize: token.fontSize\n    }\n  }, genStepsItemStatusStyle(StepItemStatusEnum.wait, token)), genStepsItemStatusStyle(StepItemStatusEnum.process, token)), {\n    [`${stepsItemCls}-process > ${stepsItemCls}-container > ${stepsItemCls}-title`]: {\n      fontWeight: token.fontWeightStrong\n    }\n  }), genStepsItemStatusStyle(StepItemStatusEnum.finish, token)), genStepsItemStatusStyle(StepItemStatusEnum.error, token)), {\n    [`${stepsItemCls}${componentCls}-next-error > ${componentCls}-item-title::after`]: {\n      background: token.colorError\n    },\n    [`${stepsItemCls}-disabled`]: {\n      cursor: 'not-allowed'\n    }\n  });\n};\n// ============================= Clickable ===========================\nconst genStepsClickableStyle = token => {\n  const {\n    componentCls,\n    motionDurationSlow\n  } = token;\n  return {\n    [`& ${componentCls}-item`]: {\n      [`&:not(${componentCls}-item-active)`]: {\n        [`& > ${componentCls}-item-container[role='button']`]: {\n          cursor: 'pointer',\n          [`${componentCls}-item`]: {\n            [`&-title, &-subtitle, &-description, &-icon ${componentCls}-icon`]: {\n              transition: `color ${motionDurationSlow}`\n            }\n          },\n          '&:hover': {\n            [`${componentCls}-item`]: {\n              [`&-title, &-subtitle, &-description`]: {\n                color: token.colorPrimary\n              }\n            }\n          }\n        },\n        [`&:not(${componentCls}-item-process)`]: {\n          [`& > ${componentCls}-item-container[role='button']:hover`]: {\n            [`${componentCls}-item`]: {\n              '&-icon': {\n                borderColor: token.colorPrimary,\n                [`${componentCls}-icon`]: {\n                  color: token.colorPrimary\n                }\n              }\n            }\n          }\n        }\n      }\n    },\n    [`&${componentCls}-horizontal:not(${componentCls}-label-vertical)`]: {\n      [`${componentCls}-item`]: {\n        paddingInlineStart: token.padding,\n        whiteSpace: 'nowrap',\n        '&:first-child': {\n          paddingInlineStart: 0\n        },\n        [`&:last-child ${componentCls}-item-title`]: {\n          paddingInlineEnd: 0\n        },\n        '&-tail': {\n          display: 'none'\n        },\n        '&-description': {\n          maxWidth: token.descriptionMaxWidth,\n          whiteSpace: 'normal'\n        }\n      }\n    }\n  };\n};\nconst genStepsStyle = token => {\n  const {\n    componentCls\n  } = token; // .ant-steps\n  return {\n    [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({}, resetComponent(token)), {\n      display: 'flex',\n      width: '100%',\n      fontSize: 0,\n      textAlign: 'initial'\n    }), genStepsItemStyle(token)), genStepsClickableStyle(token)), genStepsCustomIconStyle(token)), genStepsSmallStyle(token)), genStepsVerticalStyle(token)), genStepsLabelPlacementStyle(token)), genStepsProgressDotStyle(token)), genStepsNavStyle(token)), genStepsRTLStyle(token)), genStepsProgressStyle(token)), genStepsInlineStyle(token))\n  };\n};\n// ============================== Export ==============================\nexport default genComponentStyleHook('Steps', token => {\n  const {\n    wireframe,\n    colorTextDisabled,\n    controlHeightLG,\n    colorTextLightSolid,\n    colorText,\n    colorPrimary,\n    colorTextLabel,\n    colorTextDescription,\n    colorTextQuaternary,\n    colorFillContent,\n    controlItemBgActive,\n    colorError,\n    colorBgContainer,\n    colorBorderSecondary,\n    colorSplit\n  } = token;\n  const stepsToken = mergeToken(token, {\n    // Steps component less variable\n    processIconColor: colorTextLightSolid,\n    processTitleColor: colorText,\n    processDescriptionColor: colorText,\n    processIconBgColor: colorPrimary,\n    processIconBorderColor: colorPrimary,\n    processDotColor: colorPrimary,\n    processTailColor: colorSplit,\n    waitIconColor: wireframe ? colorTextDisabled : colorTextLabel,\n    waitTitleColor: colorTextDescription,\n    waitDescriptionColor: colorTextDescription,\n    waitTailColor: colorSplit,\n    waitIconBgColor: wireframe ? colorBgContainer : colorFillContent,\n    waitIconBorderColor: wireframe ? colorTextDisabled : 'transparent',\n    waitDotColor: colorTextDisabled,\n    finishIconColor: colorPrimary,\n    finishTitleColor: colorText,\n    finishDescriptionColor: colorTextDescription,\n    finishTailColor: colorPrimary,\n    finishIconBgColor: wireframe ? colorBgContainer : controlItemBgActive,\n    finishIconBorderColor: wireframe ? colorPrimary : controlItemBgActive,\n    finishDotColor: colorPrimary,\n    errorIconColor: colorTextLightSolid,\n    errorTitleColor: colorError,\n    errorDescriptionColor: colorError,\n    errorTailColor: colorSplit,\n    errorIconBgColor: colorError,\n    errorIconBorderColor: colorError,\n    errorDotColor: colorError,\n    stepsNavActiveColor: colorPrimary,\n    stepsProgressSize: controlHeightLG,\n    // Steps inline variable\n    inlineDotSize: 6,\n    inlineTitleColor: colorTextQuaternary,\n    inlineTailColor: colorBorderSecondary\n  });\n  return [genStepsStyle(stepsToken)];\n}, token => {\n  const {\n    colorTextDisabled,\n    fontSize,\n    controlHeightSM,\n    controlHeight,\n    controlHeightLG,\n    fontSizeHeading3\n  } = token;\n  return {\n    titleLineHeight: controlHeight,\n    customIconSize: controlHeight,\n    customIconTop: 0,\n    customIconFontSize: controlHeightSM,\n    iconSize: controlHeight,\n    iconTop: -0.5,\n    iconFontSize: fontSize,\n    iconSizeSM: fontSizeHeading3,\n    dotSize: controlHeight / 4,\n    dotCurrentSize: controlHeightLG / 4,\n    navArrowColor: colorTextDisabled,\n    navContentMaxWidth: 'auto',\n    descriptionMaxWidth: 140\n  };\n});"],"mappings":"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"},"metadata":{},"sourceType":"module","externalDependencies":[]}