{"ast":null,"code":"import { resetComponent } from '../../style';\nimport { genCollapseMotion, zoomIn } from '../../style/motion';\nimport { genComponentStyleHook, mergeToken } from '../../theme/internal';\nimport genFormValidateMotionStyle from './explain';\nconst resetForm = token => ({\n  legend: {\n    display: 'block',\n    width: '100%',\n    marginBottom: token.marginLG,\n    padding: 0,\n    color: token.colorTextDescription,\n    fontSize: token.fontSizeLG,\n    lineHeight: 'inherit',\n    border: 0,\n    borderBottom: `${token.lineWidth}px ${token.lineType} ${token.colorBorder}`\n  },\n  label: {\n    fontSize: token.fontSize\n  },\n  'input[type=\"search\"]': {\n    boxSizing: 'border-box'\n  },\n  // Position radios and checkboxes better\n  'input[type=\"radio\"], input[type=\"checkbox\"]': {\n    lineHeight: 'normal'\n  },\n  'input[type=\"file\"]': {\n    display: 'block'\n  },\n  // Make range inputs behave like textual form controls\n  'input[type=\"range\"]': {\n    display: 'block',\n    width: '100%'\n  },\n  // Make multiple select elements height not fixed\n  'select[multiple], select[size]': {\n    height: 'auto'\n  },\n  // Focus for file, radio, and checkbox\n  [`input[type='file']:focus,\n  input[type='radio']:focus,\n  input[type='checkbox']:focus`]: {\n    outline: 0,\n    boxShadow: `0 0 0 ${token.controlOutlineWidth}px ${token.controlOutline}`\n  },\n  // Adjust output element\n  output: {\n    display: 'block',\n    paddingTop: 15,\n    color: token.colorText,\n    fontSize: token.fontSize,\n    lineHeight: token.lineHeight\n  }\n});\nconst genFormSize = (token, height) => {\n  const {\n    formItemCls\n  } = token;\n  return {\n    [formItemCls]: {\n      [`${formItemCls}-label > label`]: {\n        height\n      },\n      [`${formItemCls}-control-input`]: {\n        minHeight: height\n      }\n    }\n  };\n};\nconst genFormStyle = token => {\n  const {\n    componentCls\n  } = token;\n  return {\n    [token.componentCls]: Object.assign(Object.assign(Object.assign({}, resetComponent(token)), resetForm(token)), {\n      [`${componentCls}-text`]: {\n        display: 'inline-block',\n        paddingInlineEnd: token.paddingSM\n      },\n      // ================================================================\n      // =                             Size                             =\n      // ================================================================\n      '&-small': Object.assign({}, genFormSize(token, token.controlHeightSM)),\n      '&-large': Object.assign({}, genFormSize(token, token.controlHeightLG))\n    })\n  };\n};\nconst genFormItemStyle = token => {\n  const {\n    formItemCls,\n    iconCls,\n    componentCls,\n    rootPrefixCls,\n    labelRequiredMarkColor,\n    labelColor,\n    labelFontSize,\n    labelHeight,\n    labelColonMarginInlineStart,\n    labelColonMarginInlineEnd,\n    itemMarginBottom\n  } = token;\n  return {\n    [formItemCls]: Object.assign(Object.assign({}, resetComponent(token)), {\n      marginBottom: itemMarginBottom,\n      verticalAlign: 'top',\n      '&-with-help': {\n        transition: 'none'\n      },\n      [`&-hidden,\n        &-hidden.${rootPrefixCls}-row`]: {\n        // https://github.com/ant-design/ant-design/issues/26141\n        display: 'none'\n      },\n      '&-has-warning': {\n        [`${formItemCls}-split`]: {\n          color: token.colorError\n        }\n      },\n      '&-has-error': {\n        [`${formItemCls}-split`]: {\n          color: token.colorWarning\n        }\n      },\n      // ==============================================================\n      // =                            Label                           =\n      // ==============================================================\n      [`${formItemCls}-label`]: {\n        flexGrow: 0,\n        overflow: 'hidden',\n        whiteSpace: 'nowrap',\n        textAlign: 'end',\n        verticalAlign: 'middle',\n        '&-left': {\n          textAlign: 'start'\n        },\n        '&-wrap': {\n          overflow: 'unset',\n          lineHeight: `${token.lineHeight} - 0.25em`,\n          whiteSpace: 'unset'\n        },\n        '> label': {\n          position: 'relative',\n          display: 'inline-flex',\n          alignItems: 'center',\n          maxWidth: '100%',\n          height: labelHeight,\n          color: labelColor,\n          fontSize: labelFontSize,\n          [`> ${iconCls}`]: {\n            fontSize: token.fontSize,\n            verticalAlign: 'top'\n          },\n          // Required mark\n          [`&${formItemCls}-required:not(${formItemCls}-required-mark-optional)::before`]: {\n            display: 'inline-block',\n            marginInlineEnd: token.marginXXS,\n            color: labelRequiredMarkColor,\n            fontSize: token.fontSize,\n            fontFamily: 'SimSun, sans-serif',\n            lineHeight: 1,\n            content: '\"*\"',\n            [`${componentCls}-hide-required-mark &`]: {\n              display: 'none'\n            }\n          },\n          // Optional mark\n          [`${formItemCls}-optional`]: {\n            display: 'inline-block',\n            marginInlineStart: token.marginXXS,\n            color: token.colorTextDescription,\n            [`${componentCls}-hide-required-mark &`]: {\n              display: 'none'\n            }\n          },\n          // Optional mark\n          [`${formItemCls}-tooltip`]: {\n            color: token.colorTextDescription,\n            cursor: 'help',\n            writingMode: 'horizontal-tb',\n            marginInlineStart: token.marginXXS\n          },\n          '&::after': {\n            content: '\":\"',\n            position: 'relative',\n            marginBlock: 0,\n            marginInlineStart: labelColonMarginInlineStart,\n            marginInlineEnd: labelColonMarginInlineEnd\n          },\n          [`&${formItemCls}-no-colon::after`]: {\n            content: '\"\\\\a0\"'\n          }\n        }\n      },\n      // ==============================================================\n      // =                            Input                           =\n      // ==============================================================\n      [`${formItemCls}-control`]: {\n        ['--ant-display']: 'flex',\n        flexDirection: 'column',\n        flexGrow: 1,\n        [`&:first-child:not([class^=\"'${rootPrefixCls}-col-'\"]):not([class*=\"' ${rootPrefixCls}-col-'\"])`]: {\n          width: '100%'\n        },\n        '&-input': {\n          position: 'relative',\n          display: 'flex',\n          alignItems: 'center',\n          minHeight: token.controlHeight,\n          '&-content': {\n            flex: 'auto',\n            maxWidth: '100%'\n          }\n        }\n      },\n      // ==============================================================\n      // =                           Explain                          =\n      // ==============================================================\n      [formItemCls]: {\n        '&-explain, &-extra': {\n          clear: 'both',\n          color: token.colorTextDescription,\n          fontSize: token.fontSize,\n          lineHeight: token.lineHeight\n        },\n        '&-explain-connected': {\n          width: '100%'\n        },\n        '&-extra': {\n          minHeight: token.controlHeightSM,\n          transition: `color ${token.motionDurationMid} ${token.motionEaseOut}` // sync input color transition\n        },\n\n        '&-explain': {\n          '&-error': {\n            color: token.colorError\n          },\n          '&-warning': {\n            color: token.colorWarning\n          }\n        }\n      },\n      [`&-with-help ${formItemCls}-explain`]: {\n        height: 'auto',\n        opacity: 1\n      },\n      // ==============================================================\n      // =                        Feedback Icon                       =\n      // ==============================================================\n      [`${formItemCls}-feedback-icon`]: {\n        fontSize: token.fontSize,\n        textAlign: 'center',\n        visibility: 'visible',\n        animationName: zoomIn,\n        animationDuration: token.motionDurationMid,\n        animationTimingFunction: token.motionEaseOutBack,\n        pointerEvents: 'none',\n        '&-success': {\n          color: token.colorSuccess\n        },\n        '&-error': {\n          color: token.colorError\n        },\n        '&-warning': {\n          color: token.colorWarning\n        },\n        '&-validating': {\n          color: token.colorPrimary\n        }\n      }\n    })\n  };\n};\nconst genHorizontalStyle = token => {\n  const {\n    componentCls,\n    formItemCls\n  } = token;\n  return {\n    [`${componentCls}-horizontal`]: {\n      [`${formItemCls}-label`]: {\n        flexGrow: 0\n      },\n      [`${formItemCls}-control`]: {\n        flex: '1 1 0',\n        // https://github.com/ant-design/ant-design/issues/32777\n        // https://github.com/ant-design/ant-design/issues/33773\n        minWidth: 0\n      },\n      // Do not change this to `ant-col-24`! `-24` match all the responsive rules\n      // https://github.com/ant-design/ant-design/issues/32980\n      // https://github.com/ant-design/ant-design/issues/34903\n      // https://github.com/ant-design/ant-design/issues/44538\n      [`${formItemCls}-label[class$='-24'], ${formItemCls}-label[class*='-24 ']`]: {\n        [`& + ${formItemCls}-control`]: {\n          minWidth: 'unset'\n        }\n      }\n    }\n  };\n};\nconst genInlineStyle = token => {\n  const {\n    componentCls,\n    formItemCls\n  } = token;\n  return {\n    [`${componentCls}-inline`]: {\n      display: 'flex',\n      flexWrap: 'wrap',\n      [formItemCls]: {\n        flex: 'none',\n        marginInlineEnd: token.margin,\n        marginBottom: 0,\n        '&-row': {\n          flexWrap: 'nowrap'\n        },\n        [`> ${formItemCls}-label,\n        > ${formItemCls}-control`]: {\n          display: 'inline-block',\n          verticalAlign: 'top'\n        },\n        [`> ${formItemCls}-label`]: {\n          flex: 'none'\n        },\n        [`${componentCls}-text`]: {\n          display: 'inline-block'\n        },\n        [`${formItemCls}-has-feedback`]: {\n          display: 'inline-block'\n        }\n      }\n    }\n  };\n};\nconst makeVerticalLayoutLabel = token => ({\n  padding: token.verticalLabelPadding,\n  margin: token.verticalLabelMargin,\n  whiteSpace: 'initial',\n  textAlign: 'start',\n  '> label': {\n    margin: 0,\n    '&::after': {\n      // https://github.com/ant-design/ant-design/issues/43538\n      visibility: 'hidden'\n    }\n  }\n});\nconst makeVerticalLayout = token => {\n  const {\n    componentCls,\n    formItemCls,\n    rootPrefixCls\n  } = token;\n  return {\n    [`${formItemCls} ${formItemCls}-label`]: makeVerticalLayoutLabel(token),\n    // ref: https://github.com/ant-design/ant-design/issues/45122\n    [`${componentCls}:not(${componentCls}-inline)`]: {\n      [formItemCls]: {\n        flexWrap: 'wrap',\n        [`${formItemCls}-label, ${formItemCls}-control`]: {\n          // When developer pass `xs: { span }`,\n          // It should follow the `xs` screen config\n          // ref: https://github.com/ant-design/ant-design/issues/44386\n          [`&:not([class*=\" ${rootPrefixCls}-col-xs\"])`]: {\n            flex: '0 0 100%',\n            maxWidth: '100%'\n          }\n        }\n      }\n    }\n  };\n};\nconst genVerticalStyle = token => {\n  const {\n    componentCls,\n    formItemCls,\n    rootPrefixCls\n  } = token;\n  return {\n    [`${componentCls}-vertical`]: {\n      [formItemCls]: {\n        '&-row': {\n          flexDirection: 'column'\n        },\n        '&-label > label': {\n          height: 'auto'\n        },\n        [`${componentCls}-item-control`]: {\n          width: '100%'\n        }\n      }\n    },\n    [`${componentCls}-vertical ${formItemCls}-label,\n      .${rootPrefixCls}-col-24${formItemCls}-label,\n      .${rootPrefixCls}-col-xl-24${formItemCls}-label`]: makeVerticalLayoutLabel(token),\n    [`@media (max-width: ${token.screenXSMax}px)`]: [makeVerticalLayout(token), {\n      [componentCls]: {\n        [`.${rootPrefixCls}-col-xs-24${formItemCls}-label`]: makeVerticalLayoutLabel(token)\n      }\n    }],\n    [`@media (max-width: ${token.screenSMMax}px)`]: {\n      [componentCls]: {\n        [`.${rootPrefixCls}-col-sm-24${formItemCls}-label`]: makeVerticalLayoutLabel(token)\n      }\n    },\n    [`@media (max-width: ${token.screenMDMax}px)`]: {\n      [componentCls]: {\n        [`.${rootPrefixCls}-col-md-24${formItemCls}-label`]: makeVerticalLayoutLabel(token)\n      }\n    },\n    [`@media (max-width: ${token.screenLGMax}px)`]: {\n      [componentCls]: {\n        [`.${rootPrefixCls}-col-lg-24${formItemCls}-label`]: makeVerticalLayoutLabel(token)\n      }\n    }\n  };\n};\n// ============================== Export ==============================\nexport const prepareToken = (token, rootPrefixCls) => {\n  const formToken = mergeToken(token, {\n    formItemCls: `${token.componentCls}-item`,\n    rootPrefixCls\n  });\n  return formToken;\n};\nexport default genComponentStyleHook('Form', (token, _ref) => {\n  let {\n    rootPrefixCls\n  } = _ref;\n  const formToken = prepareToken(token, rootPrefixCls);\n  return [genFormStyle(formToken), genFormItemStyle(formToken), genFormValidateMotionStyle(formToken), genHorizontalStyle(formToken), genInlineStyle(formToken), genVerticalStyle(formToken), genCollapseMotion(formToken), zoomIn];\n}, token => ({\n  labelRequiredMarkColor: token.colorError,\n  labelColor: token.colorTextHeading,\n  labelFontSize: token.fontSize,\n  labelHeight: token.controlHeight,\n  labelColonMarginInlineStart: token.marginXXS / 2,\n  labelColonMarginInlineEnd: token.marginXS,\n  itemMarginBottom: token.marginLG,\n  verticalLabelPadding: `0 0 ${token.paddingXS}px`,\n  verticalLabelMargin: 0\n}), {\n  // Let From style before the Grid\n  // ref https://github.com/ant-design/ant-design/issues/44386\n  order: -1000\n});","map":{"version":3,"names":["resetComponent","genCollapseMotion","zoomIn","genComponentStyleHook","mergeToken","genFormValidateMotionStyle","resetForm","token","legend","display","width","marginBottom","marginLG","padding","color","colorTextDescription","fontSize","fontSizeLG","lineHeight","border","borderBottom","lineWidth","lineType","colorBorder","label","boxSizing","height","outline","boxShadow","controlOutlineWidth","controlOutline","output","paddingTop","colorText","genFormSize","formItemCls","minHeight","genFormStyle","componentCls","Object","assign","paddingInlineEnd","paddingSM","controlHeightSM","controlHeightLG","genFormItemStyle","iconCls","rootPrefixCls","labelRequiredMarkColor","labelColor","labelFontSize","labelHeight","labelColonMarginInlineStart","labelColonMarginInlineEnd","itemMarginBottom","verticalAlign","transition","colorError","colorWarning","flexGrow","overflow","whiteSpace","textAlign","position","alignItems","maxWidth","marginInlineEnd","marginXXS","fontFamily","content","marginInlineStart","cursor","writingMode","marginBlock","flexDirection","controlHeight","flex","clear","motionDurationMid","motionEaseOut","opacity","visibility","animationName","animationDuration","animationTimingFunction","motionEaseOutBack","pointerEvents","colorSuccess","colorPrimary","genHorizontalStyle","minWidth","genInlineStyle","flexWrap","margin","makeVerticalLayoutLabel","verticalLabelPadding","verticalLabelMargin","makeVerticalLayout","genVerticalStyle","screenXSMax","screenSMMax","screenMDMax","screenLGMax","prepareToken","formToken","_ref","colorTextHeading","marginXS","paddingXS","order"],"sources":["/Users/chrishaack/UC_Trains_Voice/react-demo/node_modules/antd/es/form/style/index.js"],"sourcesContent":["import { resetComponent } from '../../style';\nimport { genCollapseMotion, zoomIn } from '../../style/motion';\nimport { genComponentStyleHook, mergeToken } from '../../theme/internal';\nimport genFormValidateMotionStyle from './explain';\nconst resetForm = token => ({\n  legend: {\n    display: 'block',\n    width: '100%',\n    marginBottom: token.marginLG,\n    padding: 0,\n    color: token.colorTextDescription,\n    fontSize: token.fontSizeLG,\n    lineHeight: 'inherit',\n    border: 0,\n    borderBottom: `${token.lineWidth}px ${token.lineType} ${token.colorBorder}`\n  },\n  label: {\n    fontSize: token.fontSize\n  },\n  'input[type=\"search\"]': {\n    boxSizing: 'border-box'\n  },\n  // Position radios and checkboxes better\n  'input[type=\"radio\"], input[type=\"checkbox\"]': {\n    lineHeight: 'normal'\n  },\n  'input[type=\"file\"]': {\n    display: 'block'\n  },\n  // Make range inputs behave like textual form controls\n  'input[type=\"range\"]': {\n    display: 'block',\n    width: '100%'\n  },\n  // Make multiple select elements height not fixed\n  'select[multiple], select[size]': {\n    height: 'auto'\n  },\n  // Focus for file, radio, and checkbox\n  [`input[type='file']:focus,\n  input[type='radio']:focus,\n  input[type='checkbox']:focus`]: {\n    outline: 0,\n    boxShadow: `0 0 0 ${token.controlOutlineWidth}px ${token.controlOutline}`\n  },\n  // Adjust output element\n  output: {\n    display: 'block',\n    paddingTop: 15,\n    color: token.colorText,\n    fontSize: token.fontSize,\n    lineHeight: token.lineHeight\n  }\n});\nconst genFormSize = (token, height) => {\n  const {\n    formItemCls\n  } = token;\n  return {\n    [formItemCls]: {\n      [`${formItemCls}-label > label`]: {\n        height\n      },\n      [`${formItemCls}-control-input`]: {\n        minHeight: height\n      }\n    }\n  };\n};\nconst genFormStyle = token => {\n  const {\n    componentCls\n  } = token;\n  return {\n    [token.componentCls]: Object.assign(Object.assign(Object.assign({}, resetComponent(token)), resetForm(token)), {\n      [`${componentCls}-text`]: {\n        display: 'inline-block',\n        paddingInlineEnd: token.paddingSM\n      },\n      // ================================================================\n      // =                             Size                             =\n      // ================================================================\n      '&-small': Object.assign({}, genFormSize(token, token.controlHeightSM)),\n      '&-large': Object.assign({}, genFormSize(token, token.controlHeightLG))\n    })\n  };\n};\nconst genFormItemStyle = token => {\n  const {\n    formItemCls,\n    iconCls,\n    componentCls,\n    rootPrefixCls,\n    labelRequiredMarkColor,\n    labelColor,\n    labelFontSize,\n    labelHeight,\n    labelColonMarginInlineStart,\n    labelColonMarginInlineEnd,\n    itemMarginBottom\n  } = token;\n  return {\n    [formItemCls]: Object.assign(Object.assign({}, resetComponent(token)), {\n      marginBottom: itemMarginBottom,\n      verticalAlign: 'top',\n      '&-with-help': {\n        transition: 'none'\n      },\n      [`&-hidden,\n        &-hidden.${rootPrefixCls}-row`]: {\n        // https://github.com/ant-design/ant-design/issues/26141\n        display: 'none'\n      },\n      '&-has-warning': {\n        [`${formItemCls}-split`]: {\n          color: token.colorError\n        }\n      },\n      '&-has-error': {\n        [`${formItemCls}-split`]: {\n          color: token.colorWarning\n        }\n      },\n      // ==============================================================\n      // =                            Label                           =\n      // ==============================================================\n      [`${formItemCls}-label`]: {\n        flexGrow: 0,\n        overflow: 'hidden',\n        whiteSpace: 'nowrap',\n        textAlign: 'end',\n        verticalAlign: 'middle',\n        '&-left': {\n          textAlign: 'start'\n        },\n        '&-wrap': {\n          overflow: 'unset',\n          lineHeight: `${token.lineHeight} - 0.25em`,\n          whiteSpace: 'unset'\n        },\n        '> label': {\n          position: 'relative',\n          display: 'inline-flex',\n          alignItems: 'center',\n          maxWidth: '100%',\n          height: labelHeight,\n          color: labelColor,\n          fontSize: labelFontSize,\n          [`> ${iconCls}`]: {\n            fontSize: token.fontSize,\n            verticalAlign: 'top'\n          },\n          // Required mark\n          [`&${formItemCls}-required:not(${formItemCls}-required-mark-optional)::before`]: {\n            display: 'inline-block',\n            marginInlineEnd: token.marginXXS,\n            color: labelRequiredMarkColor,\n            fontSize: token.fontSize,\n            fontFamily: 'SimSun, sans-serif',\n            lineHeight: 1,\n            content: '\"*\"',\n            [`${componentCls}-hide-required-mark &`]: {\n              display: 'none'\n            }\n          },\n          // Optional mark\n          [`${formItemCls}-optional`]: {\n            display: 'inline-block',\n            marginInlineStart: token.marginXXS,\n            color: token.colorTextDescription,\n            [`${componentCls}-hide-required-mark &`]: {\n              display: 'none'\n            }\n          },\n          // Optional mark\n          [`${formItemCls}-tooltip`]: {\n            color: token.colorTextDescription,\n            cursor: 'help',\n            writingMode: 'horizontal-tb',\n            marginInlineStart: token.marginXXS\n          },\n          '&::after': {\n            content: '\":\"',\n            position: 'relative',\n            marginBlock: 0,\n            marginInlineStart: labelColonMarginInlineStart,\n            marginInlineEnd: labelColonMarginInlineEnd\n          },\n          [`&${formItemCls}-no-colon::after`]: {\n            content: '\"\\\\a0\"'\n          }\n        }\n      },\n      // ==============================================================\n      // =                            Input                           =\n      // ==============================================================\n      [`${formItemCls}-control`]: {\n        ['--ant-display']: 'flex',\n        flexDirection: 'column',\n        flexGrow: 1,\n        [`&:first-child:not([class^=\"'${rootPrefixCls}-col-'\"]):not([class*=\"' ${rootPrefixCls}-col-'\"])`]: {\n          width: '100%'\n        },\n        '&-input': {\n          position: 'relative',\n          display: 'flex',\n          alignItems: 'center',\n          minHeight: token.controlHeight,\n          '&-content': {\n            flex: 'auto',\n            maxWidth: '100%'\n          }\n        }\n      },\n      // ==============================================================\n      // =                           Explain                          =\n      // ==============================================================\n      [formItemCls]: {\n        '&-explain, &-extra': {\n          clear: 'both',\n          color: token.colorTextDescription,\n          fontSize: token.fontSize,\n          lineHeight: token.lineHeight\n        },\n        '&-explain-connected': {\n          width: '100%'\n        },\n        '&-extra': {\n          minHeight: token.controlHeightSM,\n          transition: `color ${token.motionDurationMid} ${token.motionEaseOut}` // sync input color transition\n        },\n\n        '&-explain': {\n          '&-error': {\n            color: token.colorError\n          },\n          '&-warning': {\n            color: token.colorWarning\n          }\n        }\n      },\n      [`&-with-help ${formItemCls}-explain`]: {\n        height: 'auto',\n        opacity: 1\n      },\n      // ==============================================================\n      // =                        Feedback Icon                       =\n      // ==============================================================\n      [`${formItemCls}-feedback-icon`]: {\n        fontSize: token.fontSize,\n        textAlign: 'center',\n        visibility: 'visible',\n        animationName: zoomIn,\n        animationDuration: token.motionDurationMid,\n        animationTimingFunction: token.motionEaseOutBack,\n        pointerEvents: 'none',\n        '&-success': {\n          color: token.colorSuccess\n        },\n        '&-error': {\n          color: token.colorError\n        },\n        '&-warning': {\n          color: token.colorWarning\n        },\n        '&-validating': {\n          color: token.colorPrimary\n        }\n      }\n    })\n  };\n};\nconst genHorizontalStyle = token => {\n  const {\n    componentCls,\n    formItemCls\n  } = token;\n  return {\n    [`${componentCls}-horizontal`]: {\n      [`${formItemCls}-label`]: {\n        flexGrow: 0\n      },\n      [`${formItemCls}-control`]: {\n        flex: '1 1 0',\n        // https://github.com/ant-design/ant-design/issues/32777\n        // https://github.com/ant-design/ant-design/issues/33773\n        minWidth: 0\n      },\n      // Do not change this to `ant-col-24`! `-24` match all the responsive rules\n      // https://github.com/ant-design/ant-design/issues/32980\n      // https://github.com/ant-design/ant-design/issues/34903\n      // https://github.com/ant-design/ant-design/issues/44538\n      [`${formItemCls}-label[class$='-24'], ${formItemCls}-label[class*='-24 ']`]: {\n        [`& + ${formItemCls}-control`]: {\n          minWidth: 'unset'\n        }\n      }\n    }\n  };\n};\nconst genInlineStyle = token => {\n  const {\n    componentCls,\n    formItemCls\n  } = token;\n  return {\n    [`${componentCls}-inline`]: {\n      display: 'flex',\n      flexWrap: 'wrap',\n      [formItemCls]: {\n        flex: 'none',\n        marginInlineEnd: token.margin,\n        marginBottom: 0,\n        '&-row': {\n          flexWrap: 'nowrap'\n        },\n        [`> ${formItemCls}-label,\n        > ${formItemCls}-control`]: {\n          display: 'inline-block',\n          verticalAlign: 'top'\n        },\n        [`> ${formItemCls}-label`]: {\n          flex: 'none'\n        },\n        [`${componentCls}-text`]: {\n          display: 'inline-block'\n        },\n        [`${formItemCls}-has-feedback`]: {\n          display: 'inline-block'\n        }\n      }\n    }\n  };\n};\nconst makeVerticalLayoutLabel = token => ({\n  padding: token.verticalLabelPadding,\n  margin: token.verticalLabelMargin,\n  whiteSpace: 'initial',\n  textAlign: 'start',\n  '> label': {\n    margin: 0,\n    '&::after': {\n      // https://github.com/ant-design/ant-design/issues/43538\n      visibility: 'hidden'\n    }\n  }\n});\nconst makeVerticalLayout = token => {\n  const {\n    componentCls,\n    formItemCls,\n    rootPrefixCls\n  } = token;\n  return {\n    [`${formItemCls} ${formItemCls}-label`]: makeVerticalLayoutLabel(token),\n    // ref: https://github.com/ant-design/ant-design/issues/45122\n    [`${componentCls}:not(${componentCls}-inline)`]: {\n      [formItemCls]: {\n        flexWrap: 'wrap',\n        [`${formItemCls}-label, ${formItemCls}-control`]: {\n          // When developer pass `xs: { span }`,\n          // It should follow the `xs` screen config\n          // ref: https://github.com/ant-design/ant-design/issues/44386\n          [`&:not([class*=\" ${rootPrefixCls}-col-xs\"])`]: {\n            flex: '0 0 100%',\n            maxWidth: '100%'\n          }\n        }\n      }\n    }\n  };\n};\nconst genVerticalStyle = token => {\n  const {\n    componentCls,\n    formItemCls,\n    rootPrefixCls\n  } = token;\n  return {\n    [`${componentCls}-vertical`]: {\n      [formItemCls]: {\n        '&-row': {\n          flexDirection: 'column'\n        },\n        '&-label > label': {\n          height: 'auto'\n        },\n        [`${componentCls}-item-control`]: {\n          width: '100%'\n        }\n      }\n    },\n    [`${componentCls}-vertical ${formItemCls}-label,\n      .${rootPrefixCls}-col-24${formItemCls}-label,\n      .${rootPrefixCls}-col-xl-24${formItemCls}-label`]: makeVerticalLayoutLabel(token),\n    [`@media (max-width: ${token.screenXSMax}px)`]: [makeVerticalLayout(token), {\n      [componentCls]: {\n        [`.${rootPrefixCls}-col-xs-24${formItemCls}-label`]: makeVerticalLayoutLabel(token)\n      }\n    }],\n    [`@media (max-width: ${token.screenSMMax}px)`]: {\n      [componentCls]: {\n        [`.${rootPrefixCls}-col-sm-24${formItemCls}-label`]: makeVerticalLayoutLabel(token)\n      }\n    },\n    [`@media (max-width: ${token.screenMDMax}px)`]: {\n      [componentCls]: {\n        [`.${rootPrefixCls}-col-md-24${formItemCls}-label`]: makeVerticalLayoutLabel(token)\n      }\n    },\n    [`@media (max-width: ${token.screenLGMax}px)`]: {\n      [componentCls]: {\n        [`.${rootPrefixCls}-col-lg-24${formItemCls}-label`]: makeVerticalLayoutLabel(token)\n      }\n    }\n  };\n};\n// ============================== Export ==============================\nexport const prepareToken = (token, rootPrefixCls) => {\n  const formToken = mergeToken(token, {\n    formItemCls: `${token.componentCls}-item`,\n    rootPrefixCls\n  });\n  return formToken;\n};\nexport default genComponentStyleHook('Form', (token, _ref) => {\n  let {\n    rootPrefixCls\n  } = _ref;\n  const formToken = prepareToken(token, rootPrefixCls);\n  return [genFormStyle(formToken), genFormItemStyle(formToken), genFormValidateMotionStyle(formToken), genHorizontalStyle(formToken), genInlineStyle(formToken), genVerticalStyle(formToken), genCollapseMotion(formToken), zoomIn];\n}, token => ({\n  labelRequiredMarkColor: token.colorError,\n  labelColor: token.colorTextHeading,\n  labelFontSize: token.fontSize,\n  labelHeight: token.controlHeight,\n  labelColonMarginInlineStart: token.marginXXS / 2,\n  labelColonMarginInlineEnd: token.marginXS,\n  itemMarginBottom: token.marginLG,\n  verticalLabelPadding: `0 0 ${token.paddingXS}px`,\n  verticalLabelMargin: 0\n}), {\n  // Let From style before the Grid\n  // ref https://github.com/ant-design/ant-design/issues/44386\n  order: -1000\n});"],"mappings":"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"},"metadata":{},"sourceType":"module","externalDependencies":[]}