{"ast":null,"code":"import { unit } from '@ant-design/cssinjs';\nimport { resetComponent } from '../../style';\nimport { genCollapseMotion, zoomIn } from '../../style/motion';\nimport { genStyleHooks, 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: `${unit(token.lineWidth)} ${token.lineType} ${token.colorBorder}`\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 ${unit(token.controlOutlineWidth)} ${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,\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        '&-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: ${unit(token.screenXSMax)})`]: [makeVerticalLayout(token), {\n      [componentCls]: {\n        [`.${rootPrefixCls}-col-xs-24${formItemCls}-label`]: makeVerticalLayoutLabel(token)\n      }\n    }],\n    [`@media (max-width: ${unit(token.screenSMMax)})`]: {\n      [componentCls]: {\n        [`.${rootPrefixCls}-col-sm-24${formItemCls}-label`]: makeVerticalLayoutLabel(token)\n      }\n    },\n    [`@media (max-width: ${unit(token.screenMDMax)})`]: {\n      [componentCls]: {\n        [`.${rootPrefixCls}-col-md-24${formItemCls}-label`]: makeVerticalLayoutLabel(token)\n      }\n    },\n    [`@media (max-width: ${unit(token.screenLGMax)})`]: {\n      [componentCls]: {\n        [`.${rootPrefixCls}-col-lg-24${formItemCls}-label`]: makeVerticalLayoutLabel(token)\n      }\n    }\n  };\n};\n// ============================== Export ==============================\nexport const prepareComponentToken = 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});\nexport const prepareToken = (token, rootPrefixCls) => {\n  const formToken = mergeToken(token, {\n    formItemCls: `${token.componentCls}-item`,\n    rootPrefixCls\n  });\n  return formToken;\n};\nexport default genStyleHooks('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}, prepareComponentToken, {\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":["unit","resetComponent","genCollapseMotion","zoomIn","genStyleHooks","mergeToken","genFormValidateMotionStyle","resetForm","token","legend","display","width","marginBottom","marginLG","padding","color","colorTextDescription","fontSize","fontSizeLG","lineHeight","border","borderBottom","lineWidth","lineType","colorBorder","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","prepareComponentToken","colorTextHeading","marginXS","paddingXS","prepareToken","formToken","_ref","order"],"sources":["/var/www/gavt/node_modules/antd/es/form/style/index.js"],"sourcesContent":["import { unit } from '@ant-design/cssinjs';\nimport { resetComponent } from '../../style';\nimport { genCollapseMotion, zoomIn } from '../../style/motion';\nimport { genStyleHooks, 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: `${unit(token.lineWidth)} ${token.lineType} ${token.colorBorder}`\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 ${unit(token.controlOutlineWidth)} ${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,\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        '&-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: ${unit(token.screenXSMax)})`]: [makeVerticalLayout(token), {\n      [componentCls]: {\n        [`.${rootPrefixCls}-col-xs-24${formItemCls}-label`]: makeVerticalLayoutLabel(token)\n      }\n    }],\n    [`@media (max-width: ${unit(token.screenSMMax)})`]: {\n      [componentCls]: {\n        [`.${rootPrefixCls}-col-sm-24${formItemCls}-label`]: makeVerticalLayoutLabel(token)\n      }\n    },\n    [`@media (max-width: ${unit(token.screenMDMax)})`]: {\n      [componentCls]: {\n        [`.${rootPrefixCls}-col-md-24${formItemCls}-label`]: makeVerticalLayoutLabel(token)\n      }\n    },\n    [`@media (max-width: ${unit(token.screenLGMax)})`]: {\n      [componentCls]: {\n        [`.${rootPrefixCls}-col-lg-24${formItemCls}-label`]: makeVerticalLayoutLabel(token)\n      }\n    }\n  };\n};\n// ============================== Export ==============================\nexport const prepareComponentToken = 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});\nexport const prepareToken = (token, rootPrefixCls) => {\n  const formToken = mergeToken(token, {\n    formItemCls: `${token.componentCls}-item`,\n    rootPrefixCls\n  });\n  return formToken;\n};\nexport default genStyleHooks('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}, prepareComponentToken, {\n  // Let From style before the Grid\n  // ref https://github.com/ant-design/ant-design/issues/44386\n  order: -1000\n});"],"mappings":"AAAA,SAASA,IAAI,QAAQ,qBAAqB;AAC1C,SAASC,cAAc,QAAQ,aAAa;AAC5C,SAASC,iBAAiB,EAAEC,MAAM,QAAQ,oBAAoB;AAC9D,SAASC,aAAa,EAAEC,UAAU,QAAQ,sBAAsB;AAChE,OAAOC,0BAA0B,MAAM,WAAW;AAClD,MAAMC,SAAS,GAAGC,KAAK,KAAK;EAC1BC,MAAM,EAAE;IACNC,OAAO,EAAE,OAAO;IAChBC,KAAK,EAAE,MAAM;IACbC,YAAY,EAAEJ,KAAK,CAACK,QAAQ;IAC5BC,OAAO,EAAE,CAAC;IACVC,KAAK,EAAEP,KAAK,CAACQ,oBAAoB;IACjCC,QAAQ,EAAET,KAAK,CAACU,UAAU;IAC1BC,UAAU,EAAE,SAAS;IACrBC,MAAM,EAAE,CAAC;IACTC,YAAY,EAAG,GAAErB,IAAI,CAACQ,KAAK,CAACc,SAAS,CAAE,IAAGd,KAAK,CAACe,QAAS,IAAGf,KAAK,CAACgB,WAAY;EAChF,CAAC;EACD,sBAAsB,EAAE;IACtBC,SAAS,EAAE;EACb,CAAC;EACD;EACA,6CAA6C,EAAE;IAC7CN,UAAU,EAAE;EACd,CAAC;EACD,oBAAoB,EAAE;IACpBT,OAAO,EAAE;EACX,CAAC;EACD;EACA,qBAAqB,EAAE;IACrBA,OAAO,EAAE,OAAO;IAChBC,KAAK,EAAE;EACT,CAAC;EACD;EACA,gCAAgC,EAAE;IAChCe,MAAM,EAAE;EACV,CAAC;EACD;EACA,CAAE;AACJ;AACA,+BAA+B,GAAG;IAC9BC,OAAO,EAAE,CAAC;IACVC,SAAS,EAAG,SAAQ5B,IAAI,CAACQ,KAAK,CAACqB,mBAAmB,CAAE,IAAGrB,KAAK,CAACsB,cAAe;EAC9E,CAAC;EACD;EACAC,MAAM,EAAE;IACNrB,OAAO,EAAE,OAAO;IAChBsB,UAAU,EAAE,EAAE;IACdjB,KAAK,EAAEP,KAAK,CAACyB,SAAS;IACtBhB,QAAQ,EAAET,KAAK,CAACS,QAAQ;IACxBE,UAAU,EAAEX,KAAK,CAACW;EACpB;AACF,CAAC,CAAC;AACF,MAAMe,WAAW,GAAGA,CAAC1B,KAAK,EAAEkB,MAAM,KAAK;EACrC,MAAM;IACJS;EACF,CAAC,GAAG3B,KAAK;EACT,OAAO;IACL,CAAC2B,WAAW,GAAG;MACb,CAAE,GAAEA,WAAY,gBAAe,GAAG;QAChCT;MACF,CAAC;MACD,CAAE,GAAES,WAAY,gBAAe,GAAG;QAChCC,SAAS,EAAEV;MACb;IACF;EACF,CAAC;AACH,CAAC;AACD,MAAMW,YAAY,GAAG7B,KAAK,IAAI;EAC5B,MAAM;IACJ8B;EACF,CAAC,GAAG9B,KAAK;EACT,OAAO;IACL,CAACA,KAAK,CAAC8B,YAAY,GAAGC,MAAM,CAACC,MAAM,CAACD,MAAM,CAACC,MAAM,CAACD,MAAM,CAACC,MAAM,CAAC,CAAC,CAAC,EAAEvC,cAAc,CAACO,KAAK,CAAC,CAAC,EAAED,SAAS,CAACC,KAAK,CAAC,CAAC,EAAE;MAC7G,CAAE,GAAE8B,YAAa,OAAM,GAAG;QACxB5B,OAAO,EAAE,cAAc;QACvB+B,gBAAgB,EAAEjC,KAAK,CAACkC;MAC1B,CAAC;MACD;MACA;MACA;MACA,SAAS,EAAEH,MAAM,CAACC,MAAM,CAAC,CAAC,CAAC,EAAEN,WAAW,CAAC1B,KAAK,EAAEA,KAAK,CAACmC,eAAe,CAAC,CAAC;MACvE,SAAS,EAAEJ,MAAM,CAACC,MAAM,CAAC,CAAC,CAAC,EAAEN,WAAW,CAAC1B,KAAK,EAAEA,KAAK,CAACoC,eAAe,CAAC;IACxE,CAAC;EACH,CAAC;AACH,CAAC;AACD,MAAMC,gBAAgB,GAAGrC,KAAK,IAAI;EAChC,MAAM;IACJ2B,WAAW;IACXW,OAAO;IACPR,YAAY;IACZS,aAAa;IACbC,sBAAsB;IACtBC,UAAU;IACVC,aAAa;IACbC,WAAW;IACXC,2BAA2B;IAC3BC,yBAAyB;IACzBC;EACF,CAAC,GAAG9C,KAAK;EACT,OAAO;IACL,CAAC2B,WAAW,GAAGI,MAAM,CAACC,MAAM,CAACD,MAAM,CAACC,MAAM,CAAC,CAAC,CAAC,EAAEvC,cAAc,CAACO,KAAK,CAAC,CAAC,EAAE;MACrEI,YAAY,EAAE0C,gBAAgB;MAC9BC,aAAa,EAAE,KAAK;MACpB,aAAa,EAAE;QACbC,UAAU,EAAE;MACd,CAAC;MACD,CAAE;AACR,mBAAmBT,aAAc,MAAK,GAAG;QACjC;QACArC,OAAO,EAAE;MACX,CAAC;MACD,eAAe,EAAE;QACf,CAAE,GAAEyB,WAAY,QAAO,GAAG;UACxBpB,KAAK,EAAEP,KAAK,CAACiD;QACf;MACF,CAAC;MACD,aAAa,EAAE;QACb,CAAE,GAAEtB,WAAY,QAAO,GAAG;UACxBpB,KAAK,EAAEP,KAAK,CAACkD;QACf;MACF,CAAC;MACD;MACA;MACA;MACA,CAAE,GAAEvB,WAAY,QAAO,GAAG;QACxBwB,QAAQ,EAAE,CAAC;QACXC,QAAQ,EAAE,QAAQ;QAClBC,UAAU,EAAE,QAAQ;QACpBC,SAAS,EAAE,KAAK;QAChBP,aAAa,EAAE,QAAQ;QACvB,QAAQ,EAAE;UACRO,SAAS,EAAE;QACb,CAAC;QACD,QAAQ,EAAE;UACRF,QAAQ,EAAE,OAAO;UACjBzC,UAAU,EAAEX,KAAK,CAACW,UAAU;UAC5B0C,UAAU,EAAE;QACd,CAAC;QACD,SAAS,EAAE;UACTE,QAAQ,EAAE,UAAU;UACpBrD,OAAO,EAAE,aAAa;UACtBsD,UAAU,EAAE,QAAQ;UACpBC,QAAQ,EAAE,MAAM;UAChBvC,MAAM,EAAEyB,WAAW;UACnBpC,KAAK,EAAEkC,UAAU;UACjBhC,QAAQ,EAAEiC,aAAa;UACvB,CAAE,KAAIJ,OAAQ,EAAC,GAAG;YAChB7B,QAAQ,EAAET,KAAK,CAACS,QAAQ;YACxBsC,aAAa,EAAE;UACjB,CAAC;UACD;UACA,CAAE,IAAGpB,WAAY,iBAAgBA,WAAY,kCAAiC,GAAG;YAC/EzB,OAAO,EAAE,cAAc;YACvBwD,eAAe,EAAE1D,KAAK,CAAC2D,SAAS;YAChCpD,KAAK,EAAEiC,sBAAsB;YAC7B/B,QAAQ,EAAET,KAAK,CAACS,QAAQ;YACxBmD,UAAU,EAAE,oBAAoB;YAChCjD,UAAU,EAAE,CAAC;YACbkD,OAAO,EAAE,KAAK;YACd,CAAE,GAAE/B,YAAa,uBAAsB,GAAG;cACxC5B,OAAO,EAAE;YACX;UACF,CAAC;UACD;UACA,CAAE,GAAEyB,WAAY,WAAU,GAAG;YAC3BzB,OAAO,EAAE,cAAc;YACvB4D,iBAAiB,EAAE9D,KAAK,CAAC2D,SAAS;YAClCpD,KAAK,EAAEP,KAAK,CAACQ,oBAAoB;YACjC,CAAE,GAAEsB,YAAa,uBAAsB,GAAG;cACxC5B,OAAO,EAAE;YACX;UACF,CAAC;UACD;UACA,CAAE,GAAEyB,WAAY,UAAS,GAAG;YAC1BpB,KAAK,EAAEP,KAAK,CAACQ,oBAAoB;YACjCuD,MAAM,EAAE,MAAM;YACdC,WAAW,EAAE,eAAe;YAC5BF,iBAAiB,EAAE9D,KAAK,CAAC2D;UAC3B,CAAC;UACD,UAAU,EAAE;YACVE,OAAO,EAAE,KAAK;YACdN,QAAQ,EAAE,UAAU;YACpBU,WAAW,EAAE,CAAC;YACdH,iBAAiB,EAAElB,2BAA2B;YAC9Cc,eAAe,EAAEb;UACnB,CAAC;UACD,CAAE,IAAGlB,WAAY,kBAAiB,GAAG;YACnCkC,OAAO,EAAE;UACX;QACF;MACF,CAAC;MACD;MACA;MACA;MACA,CAAE,GAAElC,WAAY,UAAS,GAAG;QAC1B,CAAC,eAAe,GAAG,MAAM;QACzBuC,aAAa,EAAE,QAAQ;QACvBf,QAAQ,EAAE,CAAC;QACX,CAAE,+BAA8BZ,aAAc,4BAA2BA,aAAc,WAAU,GAAG;UAClGpC,KAAK,EAAE;QACT,CAAC;QACD,SAAS,EAAE;UACToD,QAAQ,EAAE,UAAU;UACpBrD,OAAO,EAAE,MAAM;UACfsD,UAAU,EAAE,QAAQ;UACpB5B,SAAS,EAAE5B,KAAK,CAACmE,aAAa;UAC9B,WAAW,EAAE;YACXC,IAAI,EAAE,MAAM;YACZX,QAAQ,EAAE;UACZ;QACF;MACF,CAAC;MACD;MACA;MACA;MACA,CAAC9B,WAAW,GAAG;QACb,oBAAoB,EAAE;UACpB0C,KAAK,EAAE,MAAM;UACb9D,KAAK,EAAEP,KAAK,CAACQ,oBAAoB;UACjCC,QAAQ,EAAET,KAAK,CAACS,QAAQ;UACxBE,UAAU,EAAEX,KAAK,CAACW;QACpB,CAAC;QACD,qBAAqB,EAAE;UACrBR,KAAK,EAAE;QACT,CAAC;QACD,SAAS,EAAE;UACTyB,SAAS,EAAE5B,KAAK,CAACmC,eAAe;UAChCa,UAAU,EAAG,SAAQhD,KAAK,CAACsE,iBAAkB,IAAGtE,KAAK,CAACuE,aAAc,EAAC,CAAC;QACxE,CAAC;QACD,WAAW,EAAE;UACX,SAAS,EAAE;YACThE,KAAK,EAAEP,KAAK,CAACiD;UACf,CAAC;UACD,WAAW,EAAE;YACX1C,KAAK,EAAEP,KAAK,CAACkD;UACf;QACF;MACF,CAAC;MACD,CAAE,eAAcvB,WAAY,UAAS,GAAG;QACtCT,MAAM,EAAE,MAAM;QACdsD,OAAO,EAAE;MACX,CAAC;MACD;MACA;MACA;MACA,CAAE,GAAE7C,WAAY,gBAAe,GAAG;QAChClB,QAAQ,EAAET,KAAK,CAACS,QAAQ;QACxB6C,SAAS,EAAE,QAAQ;QACnBmB,UAAU,EAAE,SAAS;QACrBC,aAAa,EAAE/E,MAAM;QACrBgF,iBAAiB,EAAE3E,KAAK,CAACsE,iBAAiB;QAC1CM,uBAAuB,EAAE5E,KAAK,CAAC6E,iBAAiB;QAChDC,aAAa,EAAE,MAAM;QACrB,WAAW,EAAE;UACXvE,KAAK,EAAEP,KAAK,CAAC+E;QACf,CAAC;QACD,SAAS,EAAE;UACTxE,KAAK,EAAEP,KAAK,CAACiD;QACf,CAAC;QACD,WAAW,EAAE;UACX1C,KAAK,EAAEP,KAAK,CAACkD;QACf,CAAC;QACD,cAAc,EAAE;UACd3C,KAAK,EAAEP,KAAK,CAACgF;QACf;MACF;IACF,CAAC;EACH,CAAC;AACH,CAAC;AACD,MAAMC,kBAAkB,GAAGjF,KAAK,IAAI;EAClC,MAAM;IACJ8B,YAAY;IACZH;EACF,CAAC,GAAG3B,KAAK;EACT,OAAO;IACL,CAAE,GAAE8B,YAAa,aAAY,GAAG;MAC9B,CAAE,GAAEH,WAAY,QAAO,GAAG;QACxBwB,QAAQ,EAAE;MACZ,CAAC;MACD,CAAE,GAAExB,WAAY,UAAS,GAAG;QAC1ByC,IAAI,EAAE,OAAO;QACb;QACA;QACAc,QAAQ,EAAE;MACZ,CAAC;MACD;MACA;MACA;MACA;MACA,CAAE,GAAEvD,WAAY,yBAAwBA,WAAY,uBAAsB,GAAG;QAC3E,CAAE,OAAMA,WAAY,UAAS,GAAG;UAC9BuD,QAAQ,EAAE;QACZ;MACF;IACF;EACF,CAAC;AACH,CAAC;AACD,MAAMC,cAAc,GAAGnF,KAAK,IAAI;EAC9B,MAAM;IACJ8B,YAAY;IACZH;EACF,CAAC,GAAG3B,KAAK;EACT,OAAO;IACL,CAAE,GAAE8B,YAAa,SAAQ,GAAG;MAC1B5B,OAAO,EAAE,MAAM;MACfkF,QAAQ,EAAE,MAAM;MAChB,CAACzD,WAAW,GAAG;QACbyC,IAAI,EAAE,MAAM;QACZV,eAAe,EAAE1D,KAAK,CAACqF,MAAM;QAC7BjF,YAAY,EAAE,CAAC;QACf,OAAO,EAAE;UACPgF,QAAQ,EAAE;QACZ,CAAC;QACD,CAAE,KAAIzD,WAAY;AAC1B,YAAYA,WAAY,UAAS,GAAG;UAC1BzB,OAAO,EAAE,cAAc;UACvB6C,aAAa,EAAE;QACjB,CAAC;QACD,CAAE,KAAIpB,WAAY,QAAO,GAAG;UAC1ByC,IAAI,EAAE;QACR,CAAC;QACD,CAAE,GAAEtC,YAAa,OAAM,GAAG;UACxB5B,OAAO,EAAE;QACX,CAAC;QACD,CAAE,GAAEyB,WAAY,eAAc,GAAG;UAC/BzB,OAAO,EAAE;QACX;MACF;IACF;EACF,CAAC;AACH,CAAC;AACD,MAAMoF,uBAAuB,GAAGtF,KAAK,KAAK;EACxCM,OAAO,EAAEN,KAAK,CAACuF,oBAAoB;EACnCF,MAAM,EAAErF,KAAK,CAACwF,mBAAmB;EACjCnC,UAAU,EAAE,SAAS;EACrBC,SAAS,EAAE,OAAO;EAClB,SAAS,EAAE;IACT+B,MAAM,EAAE,CAAC;IACT,UAAU,EAAE;MACV;MACAZ,UAAU,EAAE;IACd;EACF;AACF,CAAC,CAAC;AACF,MAAMgB,kBAAkB,GAAGzF,KAAK,IAAI;EAClC,MAAM;IACJ8B,YAAY;IACZH,WAAW;IACXY;EACF,CAAC,GAAGvC,KAAK;EACT,OAAO;IACL,CAAE,GAAE2B,WAAY,IAAGA,WAAY,QAAO,GAAG2D,uBAAuB,CAACtF,KAAK,CAAC;IACvE;IACA,CAAE,GAAE8B,YAAa,QAAOA,YAAa,UAAS,GAAG;MAC/C,CAACH,WAAW,GAAG;QACbyD,QAAQ,EAAE,MAAM;QAChB,CAAE,GAAEzD,WAAY,WAAUA,WAAY,UAAS,GAAG;UAChD;UACA;UACA;UACA,CAAE,mBAAkBY,aAAc,YAAW,GAAG;YAC9C6B,IAAI,EAAE,UAAU;YAChBX,QAAQ,EAAE;UACZ;QACF;MACF;IACF;EACF,CAAC;AACH,CAAC;AACD,MAAMiC,gBAAgB,GAAG1F,KAAK,IAAI;EAChC,MAAM;IACJ8B,YAAY;IACZH,WAAW;IACXY;EACF,CAAC,GAAGvC,KAAK;EACT,OAAO;IACL,CAAE,GAAE8B,YAAa,WAAU,GAAG;MAC5B,CAACH,WAAW,GAAG;QACb,OAAO,EAAE;UACPuC,aAAa,EAAE;QACjB,CAAC;QACD,iBAAiB,EAAE;UACjBhD,MAAM,EAAE;QACV,CAAC;QACD,CAAE,GAAEY,YAAa,eAAc,GAAG;UAChC3B,KAAK,EAAE;QACT;MACF;IACF,CAAC;IACD,CAAE,GAAE2B,YAAa,aAAYH,WAAY;AAC7C,SAASY,aAAc,UAASZ,WAAY;AAC5C,SAASY,aAAc,aAAYZ,WAAY,QAAO,GAAG2D,uBAAuB,CAACtF,KAAK,CAAC;IACnF,CAAE,sBAAqBR,IAAI,CAACQ,KAAK,CAAC2F,WAAW,CAAE,GAAE,GAAG,CAACF,kBAAkB,CAACzF,KAAK,CAAC,EAAE;MAC9E,CAAC8B,YAAY,GAAG;QACd,CAAE,IAAGS,aAAc,aAAYZ,WAAY,QAAO,GAAG2D,uBAAuB,CAACtF,KAAK;MACpF;IACF,CAAC,CAAC;IACF,CAAE,sBAAqBR,IAAI,CAACQ,KAAK,CAAC4F,WAAW,CAAE,GAAE,GAAG;MAClD,CAAC9D,YAAY,GAAG;QACd,CAAE,IAAGS,aAAc,aAAYZ,WAAY,QAAO,GAAG2D,uBAAuB,CAACtF,KAAK;MACpF;IACF,CAAC;IACD,CAAE,sBAAqBR,IAAI,CAACQ,KAAK,CAAC6F,WAAW,CAAE,GAAE,GAAG;MAClD,CAAC/D,YAAY,GAAG;QACd,CAAE,IAAGS,aAAc,aAAYZ,WAAY,QAAO,GAAG2D,uBAAuB,CAACtF,KAAK;MACpF;IACF,CAAC;IACD,CAAE,sBAAqBR,IAAI,CAACQ,KAAK,CAAC8F,WAAW,CAAE,GAAE,GAAG;MAClD,CAAChE,YAAY,GAAG;QACd,CAAE,IAAGS,aAAc,aAAYZ,WAAY,QAAO,GAAG2D,uBAAuB,CAACtF,KAAK;MACpF;IACF;EACF,CAAC;AACH,CAAC;AACD;AACA,OAAO,MAAM+F,qBAAqB,GAAG/F,KAAK,KAAK;EAC7CwC,sBAAsB,EAAExC,KAAK,CAACiD,UAAU;EACxCR,UAAU,EAAEzC,KAAK,CAACgG,gBAAgB;EAClCtD,aAAa,EAAE1C,KAAK,CAACS,QAAQ;EAC7BkC,WAAW,EAAE3C,KAAK,CAACmE,aAAa;EAChCvB,2BAA2B,EAAE5C,KAAK,CAAC2D,SAAS,GAAG,CAAC;EAChDd,yBAAyB,EAAE7C,KAAK,CAACiG,QAAQ;EACzCnD,gBAAgB,EAAE9C,KAAK,CAACK,QAAQ;EAChCkF,oBAAoB,EAAG,OAAMvF,KAAK,CAACkG,SAAU,IAAG;EAChDV,mBAAmB,EAAE;AACvB,CAAC,CAAC;AACF,OAAO,MAAMW,YAAY,GAAGA,CAACnG,KAAK,EAAEuC,aAAa,KAAK;EACpD,MAAM6D,SAAS,GAAGvG,UAAU,CAACG,KAAK,EAAE;IAClC2B,WAAW,EAAG,GAAE3B,KAAK,CAAC8B,YAAa,OAAM;IACzCS;EACF,CAAC,CAAC;EACF,OAAO6D,SAAS;AAClB,CAAC;AACD,eAAexG,aAAa,CAAC,MAAM,EAAE,CAACI,KAAK,EAAEqG,IAAI,KAAK;EACpD,IAAI;IACF9D;EACF,CAAC,GAAG8D,IAAI;EACR,MAAMD,SAAS,GAAGD,YAAY,CAACnG,KAAK,EAAEuC,aAAa,CAAC;EACpD,OAAO,CAACV,YAAY,CAACuE,SAAS,CAAC,EAAE/D,gBAAgB,CAAC+D,SAAS,CAAC,EAAEtG,0BAA0B,CAACsG,SAAS,CAAC,EAAEnB,kBAAkB,CAACmB,SAAS,CAAC,EAAEjB,cAAc,CAACiB,SAAS,CAAC,EAAEV,gBAAgB,CAACU,SAAS,CAAC,EAAE1G,iBAAiB,CAAC0G,SAAS,CAAC,EAAEzG,MAAM,CAAC;AACnO,CAAC,EAAEoG,qBAAqB,EAAE;EACxB;EACA;EACAO,KAAK,EAAE,CAAC;AACV,CAAC,CAAC","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}