{"ast":null,"code":"import { unit } from '@ant-design/cssinjs';\nimport { resetComponent, textEllipsis } from '../../style';\nimport { genStyleHooks, mergeToken } from '../../theme/internal';\nconst genBorderedStyle = token => {\n  const {\n    componentCls,\n    labelBg\n  } = token;\n  return {\n    [`&${componentCls}-bordered`]: {\n      [`> ${componentCls}-view`]: {\n        border: `${unit(token.lineWidth)} ${token.lineType} ${token.colorSplit}`,\n        '> table': {\n          tableLayout: 'auto'\n        },\n        [`${componentCls}-row`]: {\n          borderBottom: `${unit(token.lineWidth)} ${token.lineType} ${token.colorSplit}`,\n          '&:first-child': {\n            '> th:first-child, > td:first-child': {\n              borderStartStartRadius: token.borderRadiusLG\n            }\n          },\n          '&:last-child': {\n            borderBottom: 'none',\n            '> th:first-child, > td:first-child': {\n              borderEndStartRadius: token.borderRadiusLG\n            }\n          },\n          [`> ${componentCls}-item-label, > ${componentCls}-item-content`]: {\n            padding: `${unit(token.padding)} ${unit(token.paddingLG)}`,\n            borderInlineEnd: `${unit(token.lineWidth)} ${token.lineType} ${token.colorSplit}`,\n            '&:last-child': {\n              borderInlineEnd: 'none'\n            }\n          },\n          [`> ${componentCls}-item-label`]: {\n            color: token.colorTextSecondary,\n            backgroundColor: labelBg,\n            '&::after': {\n              display: 'none'\n            }\n          }\n        }\n      },\n      [`&${componentCls}-middle`]: {\n        [`${componentCls}-row`]: {\n          [`> ${componentCls}-item-label, > ${componentCls}-item-content`]: {\n            padding: `${unit(token.paddingSM)} ${unit(token.paddingLG)}`\n          }\n        }\n      },\n      [`&${componentCls}-small`]: {\n        [`${componentCls}-row`]: {\n          [`> ${componentCls}-item-label, > ${componentCls}-item-content`]: {\n            padding: `${unit(token.paddingXS)} ${unit(token.padding)}`\n          }\n        }\n      }\n    }\n  };\n};\nconst genDescriptionStyles = token => {\n  const {\n    componentCls,\n    extraColor,\n    itemPaddingBottom,\n    itemPaddingEnd,\n    colonMarginRight,\n    colonMarginLeft,\n    titleMarginBottom\n  } = token;\n  return {\n    [componentCls]: Object.assign(Object.assign(Object.assign({}, resetComponent(token)), genBorderedStyle(token)), {\n      '&-rtl': {\n        direction: 'rtl'\n      },\n      [`${componentCls}-header`]: {\n        display: 'flex',\n        alignItems: 'center',\n        marginBottom: titleMarginBottom\n      },\n      [`${componentCls}-title`]: Object.assign(Object.assign({}, textEllipsis), {\n        flex: 'auto',\n        color: token.titleColor,\n        fontWeight: token.fontWeightStrong,\n        fontSize: token.fontSizeLG,\n        lineHeight: token.lineHeightLG\n      }),\n      [`${componentCls}-extra`]: {\n        marginInlineStart: 'auto',\n        color: extraColor,\n        fontSize: token.fontSize\n      },\n      [`${componentCls}-view`]: {\n        width: '100%',\n        borderRadius: token.borderRadiusLG,\n        table: {\n          width: '100%',\n          tableLayout: 'fixed',\n          borderCollapse: 'collapse'\n        }\n      },\n      [`${componentCls}-row`]: {\n        '> th, > td': {\n          paddingBottom: itemPaddingBottom,\n          paddingInlineEnd: itemPaddingEnd\n        },\n        '> th:last-child, > td:last-child': {\n          paddingInlineEnd: 0\n        },\n        '&:last-child': {\n          borderBottom: 'none',\n          '> th, > td': {\n            paddingBottom: 0\n          }\n        }\n      },\n      [`${componentCls}-item-label`]: {\n        color: token.labelColor,\n        fontWeight: 'normal',\n        fontSize: token.fontSize,\n        lineHeight: token.lineHeight,\n        textAlign: 'start',\n        '&::after': {\n          content: '\":\"',\n          position: 'relative',\n          top: -0.5,\n          // magic for position\n          marginInline: `${unit(colonMarginLeft)} ${unit(colonMarginRight)}`\n        },\n        [`&${componentCls}-item-no-colon::after`]: {\n          content: '\"\"'\n        }\n      },\n      [`${componentCls}-item-no-label`]: {\n        '&::after': {\n          margin: 0,\n          content: '\"\"'\n        }\n      },\n      [`${componentCls}-item-content`]: {\n        display: 'table-cell',\n        flex: 1,\n        color: token.contentColor,\n        fontSize: token.fontSize,\n        lineHeight: token.lineHeight,\n        wordBreak: 'break-word',\n        overflowWrap: 'break-word'\n      },\n      [`${componentCls}-item`]: {\n        paddingBottom: 0,\n        verticalAlign: 'top',\n        '&-container': {\n          display: 'flex',\n          [`${componentCls}-item-label`]: {\n            display: 'inline-flex',\n            alignItems: 'baseline'\n          },\n          [`${componentCls}-item-content`]: {\n            display: 'inline-flex',\n            alignItems: 'baseline',\n            minWidth: '1em'\n          }\n        }\n      },\n      '&-middle': {\n        [`${componentCls}-row`]: {\n          '> th, > td': {\n            paddingBottom: token.paddingSM\n          }\n        }\n      },\n      '&-small': {\n        [`${componentCls}-row`]: {\n          '> th, > td': {\n            paddingBottom: token.paddingXS\n          }\n        }\n      }\n    })\n  };\n};\nexport const prepareComponentToken = token => ({\n  labelBg: token.colorFillAlter,\n  labelColor: token.colorTextTertiary,\n  titleColor: token.colorText,\n  titleMarginBottom: token.fontSizeSM * token.lineHeightSM,\n  itemPaddingBottom: token.padding,\n  itemPaddingEnd: token.padding,\n  colonMarginRight: token.marginXS,\n  colonMarginLeft: token.marginXXS / 2,\n  contentColor: token.colorText,\n  extraColor: token.colorText\n});\n// ============================== Export ==============================\nexport default genStyleHooks('Descriptions', token => {\n  const descriptionToken = mergeToken(token, {});\n  return genDescriptionStyles(descriptionToken);\n}, prepareComponentToken);","map":{"version":3,"names":["unit","resetComponent","textEllipsis","genStyleHooks","mergeToken","genBorderedStyle","token","componentCls","labelBg","border","lineWidth","lineType","colorSplit","tableLayout","borderBottom","borderStartStartRadius","borderRadiusLG","borderEndStartRadius","padding","paddingLG","borderInlineEnd","color","colorTextSecondary","backgroundColor","display","paddingSM","paddingXS","genDescriptionStyles","extraColor","itemPaddingBottom","itemPaddingEnd","colonMarginRight","colonMarginLeft","titleMarginBottom","Object","assign","direction","alignItems","marginBottom","flex","titleColor","fontWeight","fontWeightStrong","fontSize","fontSizeLG","lineHeight","lineHeightLG","marginInlineStart","width","borderRadius","table","borderCollapse","paddingBottom","paddingInlineEnd","labelColor","textAlign","content","position","top","marginInline","margin","contentColor","wordBreak","overflowWrap","verticalAlign","minWidth","prepareComponentToken","colorFillAlter","colorTextTertiary","colorText","fontSizeSM","lineHeightSM","marginXS","marginXXS","descriptionToken"],"sources":["/Users/nili/Documents/trae_projects/client/node_modules/antd/es/descriptions/style/index.js"],"sourcesContent":["import { unit } from '@ant-design/cssinjs';\nimport { resetComponent, textEllipsis } from '../../style';\nimport { genStyleHooks, mergeToken } from '../../theme/internal';\nconst genBorderedStyle = token => {\n  const {\n    componentCls,\n    labelBg\n  } = token;\n  return {\n    [`&${componentCls}-bordered`]: {\n      [`> ${componentCls}-view`]: {\n        border: `${unit(token.lineWidth)} ${token.lineType} ${token.colorSplit}`,\n        '> table': {\n          tableLayout: 'auto'\n        },\n        [`${componentCls}-row`]: {\n          borderBottom: `${unit(token.lineWidth)} ${token.lineType} ${token.colorSplit}`,\n          '&:first-child': {\n            '> th:first-child, > td:first-child': {\n              borderStartStartRadius: token.borderRadiusLG\n            }\n          },\n          '&:last-child': {\n            borderBottom: 'none',\n            '> th:first-child, > td:first-child': {\n              borderEndStartRadius: token.borderRadiusLG\n            }\n          },\n          [`> ${componentCls}-item-label, > ${componentCls}-item-content`]: {\n            padding: `${unit(token.padding)} ${unit(token.paddingLG)}`,\n            borderInlineEnd: `${unit(token.lineWidth)} ${token.lineType} ${token.colorSplit}`,\n            '&:last-child': {\n              borderInlineEnd: 'none'\n            }\n          },\n          [`> ${componentCls}-item-label`]: {\n            color: token.colorTextSecondary,\n            backgroundColor: labelBg,\n            '&::after': {\n              display: 'none'\n            }\n          }\n        }\n      },\n      [`&${componentCls}-middle`]: {\n        [`${componentCls}-row`]: {\n          [`> ${componentCls}-item-label, > ${componentCls}-item-content`]: {\n            padding: `${unit(token.paddingSM)} ${unit(token.paddingLG)}`\n          }\n        }\n      },\n      [`&${componentCls}-small`]: {\n        [`${componentCls}-row`]: {\n          [`> ${componentCls}-item-label, > ${componentCls}-item-content`]: {\n            padding: `${unit(token.paddingXS)} ${unit(token.padding)}`\n          }\n        }\n      }\n    }\n  };\n};\nconst genDescriptionStyles = token => {\n  const {\n    componentCls,\n    extraColor,\n    itemPaddingBottom,\n    itemPaddingEnd,\n    colonMarginRight,\n    colonMarginLeft,\n    titleMarginBottom\n  } = token;\n  return {\n    [componentCls]: Object.assign(Object.assign(Object.assign({}, resetComponent(token)), genBorderedStyle(token)), {\n      '&-rtl': {\n        direction: 'rtl'\n      },\n      [`${componentCls}-header`]: {\n        display: 'flex',\n        alignItems: 'center',\n        marginBottom: titleMarginBottom\n      },\n      [`${componentCls}-title`]: Object.assign(Object.assign({}, textEllipsis), {\n        flex: 'auto',\n        color: token.titleColor,\n        fontWeight: token.fontWeightStrong,\n        fontSize: token.fontSizeLG,\n        lineHeight: token.lineHeightLG\n      }),\n      [`${componentCls}-extra`]: {\n        marginInlineStart: 'auto',\n        color: extraColor,\n        fontSize: token.fontSize\n      },\n      [`${componentCls}-view`]: {\n        width: '100%',\n        borderRadius: token.borderRadiusLG,\n        table: {\n          width: '100%',\n          tableLayout: 'fixed',\n          borderCollapse: 'collapse'\n        }\n      },\n      [`${componentCls}-row`]: {\n        '> th, > td': {\n          paddingBottom: itemPaddingBottom,\n          paddingInlineEnd: itemPaddingEnd\n        },\n        '> th:last-child, > td:last-child': {\n          paddingInlineEnd: 0\n        },\n        '&:last-child': {\n          borderBottom: 'none',\n          '> th, > td': {\n            paddingBottom: 0\n          }\n        }\n      },\n      [`${componentCls}-item-label`]: {\n        color: token.labelColor,\n        fontWeight: 'normal',\n        fontSize: token.fontSize,\n        lineHeight: token.lineHeight,\n        textAlign: 'start',\n        '&::after': {\n          content: '\":\"',\n          position: 'relative',\n          top: -0.5,\n          // magic for position\n          marginInline: `${unit(colonMarginLeft)} ${unit(colonMarginRight)}`\n        },\n        [`&${componentCls}-item-no-colon::after`]: {\n          content: '\"\"'\n        }\n      },\n      [`${componentCls}-item-no-label`]: {\n        '&::after': {\n          margin: 0,\n          content: '\"\"'\n        }\n      },\n      [`${componentCls}-item-content`]: {\n        display: 'table-cell',\n        flex: 1,\n        color: token.contentColor,\n        fontSize: token.fontSize,\n        lineHeight: token.lineHeight,\n        wordBreak: 'break-word',\n        overflowWrap: 'break-word'\n      },\n      [`${componentCls}-item`]: {\n        paddingBottom: 0,\n        verticalAlign: 'top',\n        '&-container': {\n          display: 'flex',\n          [`${componentCls}-item-label`]: {\n            display: 'inline-flex',\n            alignItems: 'baseline'\n          },\n          [`${componentCls}-item-content`]: {\n            display: 'inline-flex',\n            alignItems: 'baseline',\n            minWidth: '1em'\n          }\n        }\n      },\n      '&-middle': {\n        [`${componentCls}-row`]: {\n          '> th, > td': {\n            paddingBottom: token.paddingSM\n          }\n        }\n      },\n      '&-small': {\n        [`${componentCls}-row`]: {\n          '> th, > td': {\n            paddingBottom: token.paddingXS\n          }\n        }\n      }\n    })\n  };\n};\nexport const prepareComponentToken = token => ({\n  labelBg: token.colorFillAlter,\n  labelColor: token.colorTextTertiary,\n  titleColor: token.colorText,\n  titleMarginBottom: token.fontSizeSM * token.lineHeightSM,\n  itemPaddingBottom: token.padding,\n  itemPaddingEnd: token.padding,\n  colonMarginRight: token.marginXS,\n  colonMarginLeft: token.marginXXS / 2,\n  contentColor: token.colorText,\n  extraColor: token.colorText\n});\n// ============================== Export ==============================\nexport default genStyleHooks('Descriptions', token => {\n  const descriptionToken = mergeToken(token, {});\n  return genDescriptionStyles(descriptionToken);\n}, prepareComponentToken);"],"mappings":"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","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}