1 line
38 KiB
JSON
1 line
38 KiB
JSON
{"ast":null,"code":"import { unit } from '@ant-design/cssinjs';\nimport { genFocusStyle } from '../../style';\nimport { genStyleHooks, mergeToken } from '../../theme/internal';\nimport genGroupStyle from './group';\nimport { prepareComponentToken, prepareToken } from './token';\n// ============================== Shared ==============================\nconst genSharedButtonStyle = token => {\n const {\n componentCls,\n iconCls,\n fontWeight\n } = token;\n return {\n [componentCls]: {\n outline: 'none',\n position: 'relative',\n display: 'inline-flex',\n gap: token.marginXS,\n alignItems: 'center',\n justifyContent: 'center',\n fontWeight,\n whiteSpace: 'nowrap',\n textAlign: 'center',\n backgroundImage: 'none',\n background: 'transparent',\n border: `${unit(token.lineWidth)} ${token.lineType} transparent`,\n cursor: 'pointer',\n transition: `all ${token.motionDurationMid} ${token.motionEaseInOut}`,\n userSelect: 'none',\n touchAction: 'manipulation',\n color: token.colorText,\n '&:disabled > *': {\n pointerEvents: 'none'\n },\n '> span': {\n display: 'inline-block'\n },\n [`${componentCls}-icon`]: {\n lineHeight: 1\n },\n '> a': {\n color: 'currentColor'\n },\n '&:not(:disabled)': Object.assign({}, genFocusStyle(token)),\n [`&${componentCls}-two-chinese-chars::first-letter`]: {\n letterSpacing: '0.34em'\n },\n [`&${componentCls}-two-chinese-chars > *:not(${iconCls})`]: {\n marginInlineEnd: '-0.34em',\n letterSpacing: '0.34em'\n },\n // iconPosition=\"end\"\n '&-icon-end': {\n flexDirection: 'row-reverse'\n }\n }\n };\n};\nconst genHoverActiveButtonStyle = (btnCls, hoverStyle, activeStyle) => ({\n [`&:not(:disabled):not(${btnCls}-disabled)`]: {\n '&:hover': hoverStyle,\n '&:active': activeStyle\n }\n});\n// ============================== Shape ===============================\nconst genCircleButtonStyle = token => ({\n minWidth: token.controlHeight,\n paddingInlineStart: 0,\n paddingInlineEnd: 0,\n borderRadius: '50%'\n});\nconst genRoundButtonStyle = token => ({\n borderRadius: token.controlHeight,\n paddingInlineStart: token.calc(token.controlHeight).div(2).equal(),\n paddingInlineEnd: token.calc(token.controlHeight).div(2).equal()\n});\n// =============================== Type ===============================\nconst genDisabledStyle = token => ({\n cursor: 'not-allowed',\n borderColor: token.borderColorDisabled,\n color: token.colorTextDisabled,\n background: token.colorBgContainerDisabled,\n boxShadow: 'none'\n});\nconst genGhostButtonStyle = (btnCls, background, textColor, borderColor, textColorDisabled, borderColorDisabled, hoverStyle, activeStyle) => ({\n [`&${btnCls}-background-ghost`]: Object.assign(Object.assign({\n color: textColor || undefined,\n background,\n borderColor: borderColor || undefined,\n boxShadow: 'none'\n }, genHoverActiveButtonStyle(btnCls, Object.assign({\n background\n }, hoverStyle), Object.assign({\n background\n }, activeStyle))), {\n '&:disabled': {\n cursor: 'not-allowed',\n color: textColorDisabled || undefined,\n borderColor: borderColorDisabled || undefined\n }\n })\n});\nconst genSolidDisabledButtonStyle = token => ({\n [`&:disabled, &${token.componentCls}-disabled`]: Object.assign({}, genDisabledStyle(token))\n});\nconst genSolidButtonStyle = token => Object.assign({}, genSolidDisabledButtonStyle(token));\nconst genPureDisabledButtonStyle = token => ({\n [`&:disabled, &${token.componentCls}-disabled`]: {\n cursor: 'not-allowed',\n color: token.colorTextDisabled\n }\n});\n// Type: Default\nconst genDefaultButtonStyle = token => Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({}, genSolidButtonStyle(token)), {\n background: token.defaultBg,\n borderColor: token.defaultBorderColor,\n color: token.defaultColor,\n boxShadow: token.defaultShadow\n}), genHoverActiveButtonStyle(token.componentCls, {\n color: token.defaultHoverColor,\n borderColor: token.defaultHoverBorderColor,\n background: token.defaultHoverBg\n}, {\n color: token.defaultActiveColor,\n borderColor: token.defaultActiveBorderColor,\n background: token.defaultActiveBg\n})), genGhostButtonStyle(token.componentCls, token.ghostBg, token.defaultGhostColor, token.defaultGhostBorderColor, token.colorTextDisabled, token.colorBorder)), {\n [`&${token.componentCls}-dangerous`]: Object.assign(Object.assign(Object.assign({\n color: token.colorError,\n borderColor: token.colorError\n }, genHoverActiveButtonStyle(token.componentCls, {\n color: token.colorErrorHover,\n borderColor: token.colorErrorBorderHover\n }, {\n color: token.colorErrorActive,\n borderColor: token.colorErrorActive\n })), genGhostButtonStyle(token.componentCls, token.ghostBg, token.colorError, token.colorError, token.colorTextDisabled, token.colorBorder)), genSolidDisabledButtonStyle(token))\n});\n// Type: Primary\nconst genPrimaryButtonStyle = token => Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({}, genSolidButtonStyle(token)), {\n color: token.primaryColor,\n background: token.colorPrimary,\n boxShadow: token.primaryShadow\n}), genHoverActiveButtonStyle(token.componentCls, {\n color: token.colorTextLightSolid,\n background: token.colorPrimaryHover\n}, {\n color: token.colorTextLightSolid,\n background: token.colorPrimaryActive\n})), genGhostButtonStyle(token.componentCls, token.ghostBg, token.colorPrimary, token.colorPrimary, token.colorTextDisabled, token.colorBorder, {\n color: token.colorPrimaryHover,\n borderColor: token.colorPrimaryHover\n}, {\n color: token.colorPrimaryActive,\n borderColor: token.colorPrimaryActive\n})), {\n [`&${token.componentCls}-dangerous`]: Object.assign(Object.assign(Object.assign({\n background: token.colorError,\n boxShadow: token.dangerShadow,\n color: token.dangerColor\n }, genHoverActiveButtonStyle(token.componentCls, {\n background: token.colorErrorHover\n }, {\n background: token.colorErrorActive\n })), genGhostButtonStyle(token.componentCls, token.ghostBg, token.colorError, token.colorError, token.colorTextDisabled, token.colorBorder, {\n color: token.colorErrorHover,\n borderColor: token.colorErrorHover\n }, {\n color: token.colorErrorActive,\n borderColor: token.colorErrorActive\n })), genSolidDisabledButtonStyle(token))\n});\n// Type: Dashed\nconst genDashedButtonStyle = token => Object.assign(Object.assign({}, genDefaultButtonStyle(token)), {\n borderStyle: 'dashed'\n});\n// Type: Link\nconst genLinkButtonStyle = token => Object.assign(Object.assign(Object.assign({\n color: token.colorLink\n}, genHoverActiveButtonStyle(token.componentCls, {\n color: token.colorLinkHover,\n background: token.linkHoverBg\n}, {\n color: token.colorLinkActive\n})), genPureDisabledButtonStyle(token)), {\n [`&${token.componentCls}-dangerous`]: Object.assign(Object.assign({\n color: token.colorError\n }, genHoverActiveButtonStyle(token.componentCls, {\n color: token.colorErrorHover\n }, {\n color: token.colorErrorActive\n })), genPureDisabledButtonStyle(token))\n});\n// Type: Text\nconst genTextButtonStyle = token => Object.assign(Object.assign(Object.assign({}, genHoverActiveButtonStyle(token.componentCls, {\n color: token.colorText,\n background: token.textHoverBg\n}, {\n color: token.colorText,\n background: token.colorBgTextActive\n})), genPureDisabledButtonStyle(token)), {\n [`&${token.componentCls}-dangerous`]: Object.assign(Object.assign({\n color: token.colorError\n }, genPureDisabledButtonStyle(token)), genHoverActiveButtonStyle(token.componentCls, {\n color: token.colorErrorHover,\n background: token.colorErrorBg\n }, {\n color: token.colorErrorHover,\n background: token.colorErrorBgActive\n }))\n});\nconst genTypeButtonStyle = token => {\n const {\n componentCls\n } = token;\n return {\n [`${componentCls}-default`]: genDefaultButtonStyle(token),\n [`${componentCls}-primary`]: genPrimaryButtonStyle(token),\n [`${componentCls}-dashed`]: genDashedButtonStyle(token),\n [`${componentCls}-link`]: genLinkButtonStyle(token),\n [`${componentCls}-text`]: genTextButtonStyle(token),\n [`${componentCls}-ghost`]: genGhostButtonStyle(token.componentCls, token.ghostBg, token.colorBgContainer, token.colorBgContainer, token.colorTextDisabled, token.colorBorder)\n };\n};\n// =============================== Size ===============================\nconst genButtonStyle = function (token) {\n let prefixCls = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';\n const {\n componentCls,\n controlHeight,\n fontSize,\n lineHeight,\n borderRadius,\n buttonPaddingHorizontal,\n iconCls,\n buttonPaddingVertical\n } = token;\n const iconOnlyCls = `${componentCls}-icon-only`;\n return [{\n [prefixCls]: {\n fontSize,\n lineHeight,\n height: controlHeight,\n padding: `${unit(buttonPaddingVertical)} ${unit(buttonPaddingHorizontal)}`,\n borderRadius,\n [`&${iconOnlyCls}`]: {\n width: controlHeight,\n paddingInline: 0,\n // make `btn-icon-only` not too narrow\n [`&${componentCls}-compact-item`]: {\n flex: 'none'\n },\n [`&${componentCls}-round`]: {\n width: 'auto'\n },\n [iconCls]: {\n fontSize: token.buttonIconOnlyFontSize\n }\n },\n // Loading\n [`&${componentCls}-loading`]: {\n opacity: token.opacityLoading,\n cursor: 'default'\n },\n [`${componentCls}-loading-icon`]: {\n transition: `width ${token.motionDurationSlow} ${token.motionEaseInOut}, opacity ${token.motionDurationSlow} ${token.motionEaseInOut}`\n }\n }\n },\n // Shape - patch prefixCls again to override solid border radius style\n {\n [`${componentCls}${componentCls}-circle${prefixCls}`]: genCircleButtonStyle(token)\n }, {\n [`${componentCls}${componentCls}-round${prefixCls}`]: genRoundButtonStyle(token)\n }];\n};\nconst genSizeBaseButtonStyle = token => {\n const baseToken = mergeToken(token, {\n fontSize: token.contentFontSize,\n lineHeight: token.contentLineHeight\n });\n return genButtonStyle(baseToken, token.componentCls);\n};\nconst genSizeSmallButtonStyle = token => {\n const smallToken = mergeToken(token, {\n controlHeight: token.controlHeightSM,\n fontSize: token.contentFontSizeSM,\n lineHeight: token.contentLineHeightSM,\n padding: token.paddingXS,\n buttonPaddingHorizontal: token.paddingInlineSM,\n buttonPaddingVertical: token.paddingBlockSM,\n borderRadius: token.borderRadiusSM,\n buttonIconOnlyFontSize: token.onlyIconSizeSM\n });\n return genButtonStyle(smallToken, `${token.componentCls}-sm`);\n};\nconst genSizeLargeButtonStyle = token => {\n const largeToken = mergeToken(token, {\n controlHeight: token.controlHeightLG,\n fontSize: token.contentFontSizeLG,\n lineHeight: token.contentLineHeightLG,\n buttonPaddingHorizontal: token.paddingInlineLG,\n buttonPaddingVertical: token.paddingBlockLG,\n borderRadius: token.borderRadiusLG,\n buttonIconOnlyFontSize: token.onlyIconSizeLG\n });\n return genButtonStyle(largeToken, `${token.componentCls}-lg`);\n};\nconst genBlockButtonStyle = token => {\n const {\n componentCls\n } = token;\n return {\n [componentCls]: {\n [`&${componentCls}-block`]: {\n width: '100%'\n }\n }\n };\n};\n// ============================== Export ==============================\nexport default genStyleHooks('Button', token => {\n const buttonToken = prepareToken(token);\n return [\n // Shared\n genSharedButtonStyle(buttonToken),\n // Size\n genSizeBaseButtonStyle(buttonToken), genSizeSmallButtonStyle(buttonToken), genSizeLargeButtonStyle(buttonToken),\n // Block\n genBlockButtonStyle(buttonToken),\n // Group (type, ghost, danger, loading)\n genTypeButtonStyle(buttonToken),\n // Button Group\n genGroupStyle(buttonToken)];\n}, prepareComponentToken, {\n unitless: {\n fontWeight: true,\n contentLineHeight: true,\n contentLineHeightSM: true,\n contentLineHeightLG: true\n }\n});","map":{"version":3,"names":["unit","genFocusStyle","genStyleHooks","mergeToken","genGroupStyle","prepareComponentToken","prepareToken","genSharedButtonStyle","token","componentCls","iconCls","fontWeight","outline","position","display","gap","marginXS","alignItems","justifyContent","whiteSpace","textAlign","backgroundImage","background","border","lineWidth","lineType","cursor","transition","motionDurationMid","motionEaseInOut","userSelect","touchAction","color","colorText","pointerEvents","lineHeight","Object","assign","letterSpacing","marginInlineEnd","flexDirection","genHoverActiveButtonStyle","btnCls","hoverStyle","activeStyle","genCircleButtonStyle","minWidth","controlHeight","paddingInlineStart","paddingInlineEnd","borderRadius","genRoundButtonStyle","calc","div","equal","genDisabledStyle","borderColor","borderColorDisabled","colorTextDisabled","colorBgContainerDisabled","boxShadow","genGhostButtonStyle","textColor","textColorDisabled","undefined","genSolidDisabledButtonStyle","genSolidButtonStyle","genPureDisabledButtonStyle","genDefaultButtonStyle","defaultBg","defaultBorderColor","defaultColor","defaultShadow","defaultHoverColor","defaultHoverBorderColor","defaultHoverBg","defaultActiveColor","defaultActiveBorderColor","defaultActiveBg","ghostBg","defaultGhostColor","defaultGhostBorderColor","colorBorder","colorError","colorErrorHover","colorErrorBorderHover","colorErrorActive","genPrimaryButtonStyle","primaryColor","colorPrimary","primaryShadow","colorTextLightSolid","colorPrimaryHover","colorPrimaryActive","dangerShadow","dangerColor","genDashedButtonStyle","borderStyle","genLinkButtonStyle","colorLink","colorLinkHover","linkHoverBg","colorLinkActive","genTextButtonStyle","textHoverBg","colorBgTextActive","colorErrorBg","colorErrorBgActive","genTypeButtonStyle","colorBgContainer","genButtonStyle","prefixCls","arguments","length","fontSize","buttonPaddingHorizontal","buttonPaddingVertical","iconOnlyCls","height","padding","width","paddingInline","flex","buttonIconOnlyFontSize","opacity","opacityLoading","motionDurationSlow","genSizeBaseButtonStyle","baseToken","contentFontSize","contentLineHeight","genSizeSmallButtonStyle","smallToken","controlHeightSM","contentFontSizeSM","contentLineHeightSM","paddingXS","paddingInlineSM","paddingBlockSM","borderRadiusSM","onlyIconSizeSM","genSizeLargeButtonStyle","largeToken","controlHeightLG","contentFontSizeLG","contentLineHeightLG","paddingInlineLG","paddingBlockLG","borderRadiusLG","onlyIconSizeLG","genBlockButtonStyle","buttonToken","unitless"],"sources":["C:/Users/Аришина)/Desktop/promo/node_modules/antd/es/button/style/index.js"],"sourcesContent":["import { unit } from '@ant-design/cssinjs';\nimport { genFocusStyle } from '../../style';\nimport { genStyleHooks, mergeToken } from '../../theme/internal';\nimport genGroupStyle from './group';\nimport { prepareComponentToken, prepareToken } from './token';\n// ============================== Shared ==============================\nconst genSharedButtonStyle = token => {\n const {\n componentCls,\n iconCls,\n fontWeight\n } = token;\n return {\n [componentCls]: {\n outline: 'none',\n position: 'relative',\n display: 'inline-flex',\n gap: token.marginXS,\n alignItems: 'center',\n justifyContent: 'center',\n fontWeight,\n whiteSpace: 'nowrap',\n textAlign: 'center',\n backgroundImage: 'none',\n background: 'transparent',\n border: `${unit(token.lineWidth)} ${token.lineType} transparent`,\n cursor: 'pointer',\n transition: `all ${token.motionDurationMid} ${token.motionEaseInOut}`,\n userSelect: 'none',\n touchAction: 'manipulation',\n color: token.colorText,\n '&:disabled > *': {\n pointerEvents: 'none'\n },\n '> span': {\n display: 'inline-block'\n },\n [`${componentCls}-icon`]: {\n lineHeight: 1\n },\n '> a': {\n color: 'currentColor'\n },\n '&:not(:disabled)': Object.assign({}, genFocusStyle(token)),\n [`&${componentCls}-two-chinese-chars::first-letter`]: {\n letterSpacing: '0.34em'\n },\n [`&${componentCls}-two-chinese-chars > *:not(${iconCls})`]: {\n marginInlineEnd: '-0.34em',\n letterSpacing: '0.34em'\n },\n // iconPosition=\"end\"\n '&-icon-end': {\n flexDirection: 'row-reverse'\n }\n }\n };\n};\nconst genHoverActiveButtonStyle = (btnCls, hoverStyle, activeStyle) => ({\n [`&:not(:disabled):not(${btnCls}-disabled)`]: {\n '&:hover': hoverStyle,\n '&:active': activeStyle\n }\n});\n// ============================== Shape ===============================\nconst genCircleButtonStyle = token => ({\n minWidth: token.controlHeight,\n paddingInlineStart: 0,\n paddingInlineEnd: 0,\n borderRadius: '50%'\n});\nconst genRoundButtonStyle = token => ({\n borderRadius: token.controlHeight,\n paddingInlineStart: token.calc(token.controlHeight).div(2).equal(),\n paddingInlineEnd: token.calc(token.controlHeight).div(2).equal()\n});\n// =============================== Type ===============================\nconst genDisabledStyle = token => ({\n cursor: 'not-allowed',\n borderColor: token.borderColorDisabled,\n color: token.colorTextDisabled,\n background: token.colorBgContainerDisabled,\n boxShadow: 'none'\n});\nconst genGhostButtonStyle = (btnCls, background, textColor, borderColor, textColorDisabled, borderColorDisabled, hoverStyle, activeStyle) => ({\n [`&${btnCls}-background-ghost`]: Object.assign(Object.assign({\n color: textColor || undefined,\n background,\n borderColor: borderColor || undefined,\n boxShadow: 'none'\n }, genHoverActiveButtonStyle(btnCls, Object.assign({\n background\n }, hoverStyle), Object.assign({\n background\n }, activeStyle))), {\n '&:disabled': {\n cursor: 'not-allowed',\n color: textColorDisabled || undefined,\n borderColor: borderColorDisabled || undefined\n }\n })\n});\nconst genSolidDisabledButtonStyle = token => ({\n [`&:disabled, &${token.componentCls}-disabled`]: Object.assign({}, genDisabledStyle(token))\n});\nconst genSolidButtonStyle = token => Object.assign({}, genSolidDisabledButtonStyle(token));\nconst genPureDisabledButtonStyle = token => ({\n [`&:disabled, &${token.componentCls}-disabled`]: {\n cursor: 'not-allowed',\n color: token.colorTextDisabled\n }\n});\n// Type: Default\nconst genDefaultButtonStyle = token => Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({}, genSolidButtonStyle(token)), {\n background: token.defaultBg,\n borderColor: token.defaultBorderColor,\n color: token.defaultColor,\n boxShadow: token.defaultShadow\n}), genHoverActiveButtonStyle(token.componentCls, {\n color: token.defaultHoverColor,\n borderColor: token.defaultHoverBorderColor,\n background: token.defaultHoverBg\n}, {\n color: token.defaultActiveColor,\n borderColor: token.defaultActiveBorderColor,\n background: token.defaultActiveBg\n})), genGhostButtonStyle(token.componentCls, token.ghostBg, token.defaultGhostColor, token.defaultGhostBorderColor, token.colorTextDisabled, token.colorBorder)), {\n [`&${token.componentCls}-dangerous`]: Object.assign(Object.assign(Object.assign({\n color: token.colorError,\n borderColor: token.colorError\n }, genHoverActiveButtonStyle(token.componentCls, {\n color: token.colorErrorHover,\n borderColor: token.colorErrorBorderHover\n }, {\n color: token.colorErrorActive,\n borderColor: token.colorErrorActive\n })), genGhostButtonStyle(token.componentCls, token.ghostBg, token.colorError, token.colorError, token.colorTextDisabled, token.colorBorder)), genSolidDisabledButtonStyle(token))\n});\n// Type: Primary\nconst genPrimaryButtonStyle = token => Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({}, genSolidButtonStyle(token)), {\n color: token.primaryColor,\n background: token.colorPrimary,\n boxShadow: token.primaryShadow\n}), genHoverActiveButtonStyle(token.componentCls, {\n color: token.colorTextLightSolid,\n background: token.colorPrimaryHover\n}, {\n color: token.colorTextLightSolid,\n background: token.colorPrimaryActive\n})), genGhostButtonStyle(token.componentCls, token.ghostBg, token.colorPrimary, token.colorPrimary, token.colorTextDisabled, token.colorBorder, {\n color: token.colorPrimaryHover,\n borderColor: token.colorPrimaryHover\n}, {\n color: token.colorPrimaryActive,\n borderColor: token.colorPrimaryActive\n})), {\n [`&${token.componentCls}-dangerous`]: Object.assign(Object.assign(Object.assign({\n background: token.colorError,\n boxShadow: token.dangerShadow,\n color: token.dangerColor\n }, genHoverActiveButtonStyle(token.componentCls, {\n background: token.colorErrorHover\n }, {\n background: token.colorErrorActive\n })), genGhostButtonStyle(token.componentCls, token.ghostBg, token.colorError, token.colorError, token.colorTextDisabled, token.colorBorder, {\n color: token.colorErrorHover,\n borderColor: token.colorErrorHover\n }, {\n color: token.colorErrorActive,\n borderColor: token.colorErrorActive\n })), genSolidDisabledButtonStyle(token))\n});\n// Type: Dashed\nconst genDashedButtonStyle = token => Object.assign(Object.assign({}, genDefaultButtonStyle(token)), {\n borderStyle: 'dashed'\n});\n// Type: Link\nconst genLinkButtonStyle = token => Object.assign(Object.assign(Object.assign({\n color: token.colorLink\n}, genHoverActiveButtonStyle(token.componentCls, {\n color: token.colorLinkHover,\n background: token.linkHoverBg\n}, {\n color: token.colorLinkActive\n})), genPureDisabledButtonStyle(token)), {\n [`&${token.componentCls}-dangerous`]: Object.assign(Object.assign({\n color: token.colorError\n }, genHoverActiveButtonStyle(token.componentCls, {\n color: token.colorErrorHover\n }, {\n color: token.colorErrorActive\n })), genPureDisabledButtonStyle(token))\n});\n// Type: Text\nconst genTextButtonStyle = token => Object.assign(Object.assign(Object.assign({}, genHoverActiveButtonStyle(token.componentCls, {\n color: token.colorText,\n background: token.textHoverBg\n}, {\n color: token.colorText,\n background: token.colorBgTextActive\n})), genPureDisabledButtonStyle(token)), {\n [`&${token.componentCls}-dangerous`]: Object.assign(Object.assign({\n color: token.colorError\n }, genPureDisabledButtonStyle(token)), genHoverActiveButtonStyle(token.componentCls, {\n color: token.colorErrorHover,\n background: token.colorErrorBg\n }, {\n color: token.colorErrorHover,\n background: token.colorErrorBgActive\n }))\n});\nconst genTypeButtonStyle = token => {\n const {\n componentCls\n } = token;\n return {\n [`${componentCls}-default`]: genDefaultButtonStyle(token),\n [`${componentCls}-primary`]: genPrimaryButtonStyle(token),\n [`${componentCls}-dashed`]: genDashedButtonStyle(token),\n [`${componentCls}-link`]: genLinkButtonStyle(token),\n [`${componentCls}-text`]: genTextButtonStyle(token),\n [`${componentCls}-ghost`]: genGhostButtonStyle(token.componentCls, token.ghostBg, token.colorBgContainer, token.colorBgContainer, token.colorTextDisabled, token.colorBorder)\n };\n};\n// =============================== Size ===============================\nconst genButtonStyle = function (token) {\n let prefixCls = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';\n const {\n componentCls,\n controlHeight,\n fontSize,\n lineHeight,\n borderRadius,\n buttonPaddingHorizontal,\n iconCls,\n buttonPaddingVertical\n } = token;\n const iconOnlyCls = `${componentCls}-icon-only`;\n return [{\n [prefixCls]: {\n fontSize,\n lineHeight,\n height: controlHeight,\n padding: `${unit(buttonPaddingVertical)} ${unit(buttonPaddingHorizontal)}`,\n borderRadius,\n [`&${iconOnlyCls}`]: {\n width: controlHeight,\n paddingInline: 0,\n // make `btn-icon-only` not too narrow\n [`&${componentCls}-compact-item`]: {\n flex: 'none'\n },\n [`&${componentCls}-round`]: {\n width: 'auto'\n },\n [iconCls]: {\n fontSize: token.buttonIconOnlyFontSize\n }\n },\n // Loading\n [`&${componentCls}-loading`]: {\n opacity: token.opacityLoading,\n cursor: 'default'\n },\n [`${componentCls}-loading-icon`]: {\n transition: `width ${token.motionDurationSlow} ${token.motionEaseInOut}, opacity ${token.motionDurationSlow} ${token.motionEaseInOut}`\n }\n }\n },\n // Shape - patch prefixCls again to override solid border radius style\n {\n [`${componentCls}${componentCls}-circle${prefixCls}`]: genCircleButtonStyle(token)\n }, {\n [`${componentCls}${componentCls}-round${prefixCls}`]: genRoundButtonStyle(token)\n }];\n};\nconst genSizeBaseButtonStyle = token => {\n const baseToken = mergeToken(token, {\n fontSize: token.contentFontSize,\n lineHeight: token.contentLineHeight\n });\n return genButtonStyle(baseToken, token.componentCls);\n};\nconst genSizeSmallButtonStyle = token => {\n const smallToken = mergeToken(token, {\n controlHeight: token.controlHeightSM,\n fontSize: token.contentFontSizeSM,\n lineHeight: token.contentLineHeightSM,\n padding: token.paddingXS,\n buttonPaddingHorizontal: token.paddingInlineSM,\n buttonPaddingVertical: token.paddingBlockSM,\n borderRadius: token.borderRadiusSM,\n buttonIconOnlyFontSize: token.onlyIconSizeSM\n });\n return genButtonStyle(smallToken, `${token.componentCls}-sm`);\n};\nconst genSizeLargeButtonStyle = token => {\n const largeToken = mergeToken(token, {\n controlHeight: token.controlHeightLG,\n fontSize: token.contentFontSizeLG,\n lineHeight: token.contentLineHeightLG,\n buttonPaddingHorizontal: token.paddingInlineLG,\n buttonPaddingVertical: token.paddingBlockLG,\n borderRadius: token.borderRadiusLG,\n buttonIconOnlyFontSize: token.onlyIconSizeLG\n });\n return genButtonStyle(largeToken, `${token.componentCls}-lg`);\n};\nconst genBlockButtonStyle = token => {\n const {\n componentCls\n } = token;\n return {\n [componentCls]: {\n [`&${componentCls}-block`]: {\n width: '100%'\n }\n }\n };\n};\n// ============================== Export ==============================\nexport default genStyleHooks('Button', token => {\n const buttonToken = prepareToken(token);\n return [\n // Shared\n genSharedButtonStyle(buttonToken),\n // Size\n genSizeBaseButtonStyle(buttonToken), genSizeSmallButtonStyle(buttonToken), genSizeLargeButtonStyle(buttonToken),\n // Block\n genBlockButtonStyle(buttonToken),\n // Group (type, ghost, danger, loading)\n genTypeButtonStyle(buttonToken),\n // Button Group\n genGroupStyle(buttonToken)];\n}, prepareComponentToken, {\n unitless: {\n fontWeight: true,\n contentLineHeight: true,\n contentLineHeightSM: true,\n contentLineHeightLG: true\n }\n});"],"mappings":"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","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]} |