{"ast":null,"code":"\"use client\";\n\n/* eslint-disable import/prefer-default-export */\nimport { unit } from '@ant-design/cssinjs';\nexport { operationUnit } from './operationUnit';\nexport const textEllipsis = {\n  overflow: 'hidden',\n  whiteSpace: 'nowrap',\n  textOverflow: 'ellipsis'\n};\nexport const resetComponent = function (token) {\n  let needInheritFontFamily = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n  return {\n    boxSizing: 'border-box',\n    margin: 0,\n    padding: 0,\n    color: token.colorText,\n    fontSize: token.fontSize,\n    // font-variant: @font-variant-base;\n    lineHeight: token.lineHeight,\n    listStyle: 'none',\n    // font-feature-settings: @font-feature-settings-base;\n    fontFamily: needInheritFontFamily ? 'inherit' : token.fontFamily\n  };\n};\nexport const resetIcon = () => ({\n  display: 'inline-flex',\n  alignItems: 'center',\n  color: 'inherit',\n  fontStyle: 'normal',\n  lineHeight: 0,\n  textAlign: 'center',\n  textTransform: 'none',\n  // for SVG icon, see https://blog.prototypr.io/align-svg-icons-to-text-and-say-goodbye-to-font-icons-d44b3d7b26b4\n  verticalAlign: '-0.125em',\n  textRendering: 'optimizeLegibility',\n  '-webkit-font-smoothing': 'antialiased',\n  '-moz-osx-font-smoothing': 'grayscale',\n  '> *': {\n    lineHeight: 1\n  },\n  svg: {\n    display: 'inline-block'\n  }\n});\nexport const clearFix = () => ({\n  // https://github.com/ant-design/ant-design/issues/21301#issuecomment-583955229\n  '&::before': {\n    display: 'table',\n    content: '\"\"'\n  },\n  '&::after': {\n    // https://github.com/ant-design/ant-design/issues/21864\n    display: 'table',\n    clear: 'both',\n    content: '\"\"'\n  }\n});\nexport const genLinkStyle = token => ({\n  a: {\n    color: token.colorLink,\n    textDecoration: token.linkDecoration,\n    backgroundColor: 'transparent',\n    // remove the gray background on active links in IE 10.\n    outline: 'none',\n    cursor: 'pointer',\n    transition: `color ${token.motionDurationSlow}`,\n    '-webkit-text-decoration-skip': 'objects',\n    // remove gaps in links underline in iOS 8+ and Safari 8+.\n    '&:hover': {\n      color: token.colorLinkHover\n    },\n    '&:active': {\n      color: token.colorLinkActive\n    },\n    [`&:active,\n  &:hover`]: {\n      textDecoration: token.linkHoverDecoration,\n      outline: 0\n    },\n    // https://github.com/ant-design/ant-design/issues/22503\n    '&:focus': {\n      textDecoration: token.linkFocusDecoration,\n      outline: 0\n    },\n    '&[disabled]': {\n      color: token.colorTextDisabled,\n      cursor: 'not-allowed'\n    }\n  }\n});\nexport const genCommonStyle = (token, componentPrefixCls, rootCls) => {\n  const {\n    fontFamily,\n    fontSize\n  } = token;\n  const prefixSelector = `[class^=\"${componentPrefixCls}\"], [class*=\" ${componentPrefixCls}\"]`;\n  const rootPrefixSelector = rootCls ? `.${rootCls}` : prefixSelector;\n  return {\n    [rootPrefixSelector]: {\n      fontFamily,\n      fontSize,\n      boxSizing: 'border-box',\n      '&::before, &::after': {\n        boxSizing: 'border-box'\n      },\n      [prefixSelector]: {\n        boxSizing: 'border-box',\n        '&::before, &::after': {\n          boxSizing: 'border-box'\n        }\n      }\n    }\n  };\n};\nexport const genFocusOutline = token => ({\n  outline: `${unit(token.lineWidthFocus)} solid ${token.colorPrimaryBorder}`,\n  outlineOffset: 1,\n  transition: 'outline-offset 0s, outline 0s'\n});\nexport const genFocusStyle = token => ({\n  '&:focus-visible': Object.assign({}, genFocusOutline(token))\n});","map":{"version":3,"names":["unit","operationUnit","textEllipsis","overflow","whiteSpace","textOverflow","resetComponent","token","needInheritFontFamily","arguments","length","undefined","boxSizing","margin","padding","color","colorText","fontSize","lineHeight","listStyle","fontFamily","resetIcon","display","alignItems","fontStyle","textAlign","textTransform","verticalAlign","textRendering","svg","clearFix","content","clear","genLinkStyle","a","colorLink","textDecoration","linkDecoration","backgroundColor","outline","cursor","transition","motionDurationSlow","colorLinkHover","colorLinkActive","linkHoverDecoration","linkFocusDecoration","colorTextDisabled","genCommonStyle","componentPrefixCls","rootCls","prefixSelector","rootPrefixSelector","genFocusOutline","lineWidthFocus","colorPrimaryBorder","outlineOffset","genFocusStyle","Object","assign"],"sources":["/var/www/gavt/react-demo/node_modules/antd/es/style/index.js"],"sourcesContent":["\"use client\";\n\n/* eslint-disable import/prefer-default-export */\nimport { unit } from '@ant-design/cssinjs';\nexport { operationUnit } from './operationUnit';\nexport const textEllipsis = {\n  overflow: 'hidden',\n  whiteSpace: 'nowrap',\n  textOverflow: 'ellipsis'\n};\nexport const resetComponent = function (token) {\n  let needInheritFontFamily = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n  return {\n    boxSizing: 'border-box',\n    margin: 0,\n    padding: 0,\n    color: token.colorText,\n    fontSize: token.fontSize,\n    // font-variant: @font-variant-base;\n    lineHeight: token.lineHeight,\n    listStyle: 'none',\n    // font-feature-settings: @font-feature-settings-base;\n    fontFamily: needInheritFontFamily ? 'inherit' : token.fontFamily\n  };\n};\nexport const resetIcon = () => ({\n  display: 'inline-flex',\n  alignItems: 'center',\n  color: 'inherit',\n  fontStyle: 'normal',\n  lineHeight: 0,\n  textAlign: 'center',\n  textTransform: 'none',\n  // for SVG icon, see https://blog.prototypr.io/align-svg-icons-to-text-and-say-goodbye-to-font-icons-d44b3d7b26b4\n  verticalAlign: '-0.125em',\n  textRendering: 'optimizeLegibility',\n  '-webkit-font-smoothing': 'antialiased',\n  '-moz-osx-font-smoothing': 'grayscale',\n  '> *': {\n    lineHeight: 1\n  },\n  svg: {\n    display: 'inline-block'\n  }\n});\nexport const clearFix = () => ({\n  // https://github.com/ant-design/ant-design/issues/21301#issuecomment-583955229\n  '&::before': {\n    display: 'table',\n    content: '\"\"'\n  },\n  '&::after': {\n    // https://github.com/ant-design/ant-design/issues/21864\n    display: 'table',\n    clear: 'both',\n    content: '\"\"'\n  }\n});\nexport const genLinkStyle = token => ({\n  a: {\n    color: token.colorLink,\n    textDecoration: token.linkDecoration,\n    backgroundColor: 'transparent',\n    // remove the gray background on active links in IE 10.\n    outline: 'none',\n    cursor: 'pointer',\n    transition: `color ${token.motionDurationSlow}`,\n    '-webkit-text-decoration-skip': 'objects',\n    // remove gaps in links underline in iOS 8+ and Safari 8+.\n    '&:hover': {\n      color: token.colorLinkHover\n    },\n    '&:active': {\n      color: token.colorLinkActive\n    },\n    [`&:active,\n  &:hover`]: {\n      textDecoration: token.linkHoverDecoration,\n      outline: 0\n    },\n    // https://github.com/ant-design/ant-design/issues/22503\n    '&:focus': {\n      textDecoration: token.linkFocusDecoration,\n      outline: 0\n    },\n    '&[disabled]': {\n      color: token.colorTextDisabled,\n      cursor: 'not-allowed'\n    }\n  }\n});\nexport const genCommonStyle = (token, componentPrefixCls, rootCls) => {\n  const {\n    fontFamily,\n    fontSize\n  } = token;\n  const prefixSelector = `[class^=\"${componentPrefixCls}\"], [class*=\" ${componentPrefixCls}\"]`;\n  const rootPrefixSelector = rootCls ? `.${rootCls}` : prefixSelector;\n  return {\n    [rootPrefixSelector]: {\n      fontFamily,\n      fontSize,\n      boxSizing: 'border-box',\n      '&::before, &::after': {\n        boxSizing: 'border-box'\n      },\n      [prefixSelector]: {\n        boxSizing: 'border-box',\n        '&::before, &::after': {\n          boxSizing: 'border-box'\n        }\n      }\n    }\n  };\n};\nexport const genFocusOutline = token => ({\n  outline: `${unit(token.lineWidthFocus)} solid ${token.colorPrimaryBorder}`,\n  outlineOffset: 1,\n  transition: 'outline-offset 0s, outline 0s'\n});\nexport const genFocusStyle = token => ({\n  '&:focus-visible': Object.assign({}, genFocusOutline(token))\n});"],"mappings":"AAAA,YAAY;;AAEZ;AACA,SAASA,IAAI,QAAQ,qBAAqB;AAC1C,SAASC,aAAa,QAAQ,iBAAiB;AAC/C,OAAO,MAAMC,YAAY,GAAG;EAC1BC,QAAQ,EAAE,QAAQ;EAClBC,UAAU,EAAE,QAAQ;EACpBC,YAAY,EAAE;AAChB,CAAC;AACD,OAAO,MAAMC,cAAc,GAAG,SAAAA,CAAUC,KAAK,EAAE;EAC7C,IAAIC,qBAAqB,GAAGC,SAAS,CAACC,MAAM,GAAG,CAAC,IAAID,SAAS,CAAC,CAAC,CAAC,KAAKE,SAAS,GAAGF,SAAS,CAAC,CAAC,CAAC,GAAG,KAAK;EACrG,OAAO;IACLG,SAAS,EAAE,YAAY;IACvBC,MAAM,EAAE,CAAC;IACTC,OAAO,EAAE,CAAC;IACVC,KAAK,EAAER,KAAK,CAACS,SAAS;IACtBC,QAAQ,EAAEV,KAAK,CAACU,QAAQ;IACxB;IACAC,UAAU,EAAEX,KAAK,CAACW,UAAU;IAC5BC,SAAS,EAAE,MAAM;IACjB;IACAC,UAAU,EAAEZ,qBAAqB,GAAG,SAAS,GAAGD,KAAK,CAACa;EACxD,CAAC;AACH,CAAC;AACD,OAAO,MAAMC,SAAS,GAAGA,CAAA,MAAO;EAC9BC,OAAO,EAAE,aAAa;EACtBC,UAAU,EAAE,QAAQ;EACpBR,KAAK,EAAE,SAAS;EAChBS,SAAS,EAAE,QAAQ;EACnBN,UAAU,EAAE,CAAC;EACbO,SAAS,EAAE,QAAQ;EACnBC,aAAa,EAAE,MAAM;EACrB;EACAC,aAAa,EAAE,UAAU;EACzBC,aAAa,EAAE,oBAAoB;EACnC,wBAAwB,EAAE,aAAa;EACvC,yBAAyB,EAAE,WAAW;EACtC,KAAK,EAAE;IACLV,UAAU,EAAE;EACd,CAAC;EACDW,GAAG,EAAE;IACHP,OAAO,EAAE;EACX;AACF,CAAC,CAAC;AACF,OAAO,MAAMQ,QAAQ,GAAGA,CAAA,MAAO;EAC7B;EACA,WAAW,EAAE;IACXR,OAAO,EAAE,OAAO;IAChBS,OAAO,EAAE;EACX,CAAC;EACD,UAAU,EAAE;IACV;IACAT,OAAO,EAAE,OAAO;IAChBU,KAAK,EAAE,MAAM;IACbD,OAAO,EAAE;EACX;AACF,CAAC,CAAC;AACF,OAAO,MAAME,YAAY,GAAG1B,KAAK,KAAK;EACpC2B,CAAC,EAAE;IACDnB,KAAK,EAAER,KAAK,CAAC4B,SAAS;IACtBC,cAAc,EAAE7B,KAAK,CAAC8B,cAAc;IACpCC,eAAe,EAAE,aAAa;IAC9B;IACAC,OAAO,EAAE,MAAM;IACfC,MAAM,EAAE,SAAS;IACjBC,UAAU,EAAG,SAAQlC,KAAK,CAACmC,kBAAmB,EAAC;IAC/C,8BAA8B,EAAE,SAAS;IACzC;IACA,SAAS,EAAE;MACT3B,KAAK,EAAER,KAAK,CAACoC;IACf,CAAC;IACD,UAAU,EAAE;MACV5B,KAAK,EAAER,KAAK,CAACqC;IACf,CAAC;IACD,CAAE;AACN,UAAU,GAAG;MACPR,cAAc,EAAE7B,KAAK,CAACsC,mBAAmB;MACzCN,OAAO,EAAE;IACX,CAAC;IACD;IACA,SAAS,EAAE;MACTH,cAAc,EAAE7B,KAAK,CAACuC,mBAAmB;MACzCP,OAAO,EAAE;IACX,CAAC;IACD,aAAa,EAAE;MACbxB,KAAK,EAAER,KAAK,CAACwC,iBAAiB;MAC9BP,MAAM,EAAE;IACV;EACF;AACF,CAAC,CAAC;AACF,OAAO,MAAMQ,cAAc,GAAGA,CAACzC,KAAK,EAAE0C,kBAAkB,EAAEC,OAAO,KAAK;EACpE,MAAM;IACJ9B,UAAU;IACVH;EACF,CAAC,GAAGV,KAAK;EACT,MAAM4C,cAAc,GAAI,YAAWF,kBAAmB,iBAAgBA,kBAAmB,IAAG;EAC5F,MAAMG,kBAAkB,GAAGF,OAAO,GAAI,IAAGA,OAAQ,EAAC,GAAGC,cAAc;EACnE,OAAO;IACL,CAACC,kBAAkB,GAAG;MACpBhC,UAAU;MACVH,QAAQ;MACRL,SAAS,EAAE,YAAY;MACvB,qBAAqB,EAAE;QACrBA,SAAS,EAAE;MACb,CAAC;MACD,CAACuC,cAAc,GAAG;QAChBvC,SAAS,EAAE,YAAY;QACvB,qBAAqB,EAAE;UACrBA,SAAS,EAAE;QACb;MACF;IACF;EACF,CAAC;AACH,CAAC;AACD,OAAO,MAAMyC,eAAe,GAAG9C,KAAK,KAAK;EACvCgC,OAAO,EAAG,GAAEvC,IAAI,CAACO,KAAK,CAAC+C,cAAc,CAAE,UAAS/C,KAAK,CAACgD,kBAAmB,EAAC;EAC1EC,aAAa,EAAE,CAAC;EAChBf,UAAU,EAAE;AACd,CAAC,CAAC;AACF,OAAO,MAAMgB,aAAa,GAAGlD,KAAK,KAAK;EACrC,iBAAiB,EAAEmD,MAAM,CAACC,MAAM,CAAC,CAAC,CAAC,EAAEN,eAAe,CAAC9C,KAAK,CAAC;AAC7D,CAAC,CAAC","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}