PromoCursed/node_modules/.cache/babel-loader/4361447b00d08313686584b16b9ae050f7a8bb6a8776065bf252034779f88974.json
2024-08-20 23:25:37 +04:00

1 line
17 KiB
JSON

{"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 overflow: 'hidden',\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 '&:last-child': {\n borderBottom: 'none'\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.colorTextTertiary,\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: 0\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 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","overflow","border","lineWidth","lineType","colorSplit","tableLayout","borderBottom","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","borderRadiusLG","table","borderCollapse","paddingBottom","paddingInlineEnd","colorTextTertiary","textAlign","content","position","top","marginInline","margin","contentColor","wordBreak","overflowWrap","verticalAlign","minWidth","prepareComponentToken","colorFillAlter","colorText","fontSizeSM","lineHeightSM","marginXS","marginXXS","descriptionToken"],"sources":["C:/Users/Аришина)/source/repos/PromoCursed/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 overflow: 'hidden',\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 '&:last-child': {\n borderBottom: 'none'\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.colorTextTertiary,\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: 0\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 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":[]}