{"ast":null,"code":"import { unit } from '@ant-design/cssinjs';\nimport { genFocusStyle, resetComponent, textEllipsis } from '../../style';\nimport { genStyleHooks, mergeToken } from '../../theme/internal';\nimport genMotionStyle from './motion';\nconst genCardStyle = token => {\n  const {\n    componentCls,\n    tabsCardPadding,\n    cardBg,\n    cardGutter,\n    colorBorderSecondary,\n    itemSelectedColor\n  } = token;\n  return {\n    [`${componentCls}-card`]: {\n      [`> ${componentCls}-nav, > div > ${componentCls}-nav`]: {\n        [`${componentCls}-tab`]: {\n          margin: 0,\n          padding: tabsCardPadding,\n          background: cardBg,\n          border: `${unit(token.lineWidth)} ${token.lineType} ${colorBorderSecondary}`,\n          transition: `all ${token.motionDurationSlow} ${token.motionEaseInOut}`\n        },\n        [`${componentCls}-tab-active`]: {\n          color: itemSelectedColor,\n          background: token.colorBgContainer\n        },\n        [`${componentCls}-ink-bar`]: {\n          visibility: 'hidden'\n        }\n      },\n      // ========================== Top & Bottom ==========================\n      [`&${componentCls}-top, &${componentCls}-bottom`]: {\n        [`> ${componentCls}-nav, > div > ${componentCls}-nav`]: {\n          [`${componentCls}-tab + ${componentCls}-tab`]: {\n            marginLeft: {\n              _skip_check_: true,\n              value: unit(cardGutter)\n            }\n          }\n        }\n      },\n      [`&${componentCls}-top`]: {\n        [`> ${componentCls}-nav, > div > ${componentCls}-nav`]: {\n          [`${componentCls}-tab`]: {\n            borderRadius: `${unit(token.borderRadiusLG)} ${unit(token.borderRadiusLG)} 0 0`\n          },\n          [`${componentCls}-tab-active`]: {\n            borderBottomColor: token.colorBgContainer\n          }\n        }\n      },\n      [`&${componentCls}-bottom`]: {\n        [`> ${componentCls}-nav, > div > ${componentCls}-nav`]: {\n          [`${componentCls}-tab`]: {\n            borderRadius: `0 0 ${unit(token.borderRadiusLG)} ${unit(token.borderRadiusLG)}`\n          },\n          [`${componentCls}-tab-active`]: {\n            borderTopColor: token.colorBgContainer\n          }\n        }\n      },\n      // ========================== Left & Right ==========================\n      [`&${componentCls}-left, &${componentCls}-right`]: {\n        [`> ${componentCls}-nav, > div > ${componentCls}-nav`]: {\n          [`${componentCls}-tab + ${componentCls}-tab`]: {\n            marginTop: unit(cardGutter)\n          }\n        }\n      },\n      [`&${componentCls}-left`]: {\n        [`> ${componentCls}-nav, > div > ${componentCls}-nav`]: {\n          [`${componentCls}-tab`]: {\n            borderRadius: {\n              _skip_check_: true,\n              value: `${unit(token.borderRadiusLG)} 0 0 ${unit(token.borderRadiusLG)}`\n            }\n          },\n          [`${componentCls}-tab-active`]: {\n            borderRightColor: {\n              _skip_check_: true,\n              value: token.colorBgContainer\n            }\n          }\n        }\n      },\n      [`&${componentCls}-right`]: {\n        [`> ${componentCls}-nav, > div > ${componentCls}-nav`]: {\n          [`${componentCls}-tab`]: {\n            borderRadius: {\n              _skip_check_: true,\n              value: `0 ${unit(token.borderRadiusLG)} ${unit(token.borderRadiusLG)} 0`\n            }\n          },\n          [`${componentCls}-tab-active`]: {\n            borderLeftColor: {\n              _skip_check_: true,\n              value: token.colorBgContainer\n            }\n          }\n        }\n      }\n    }\n  };\n};\nconst genDropdownStyle = token => {\n  const {\n    componentCls,\n    itemHoverColor,\n    dropdownEdgeChildVerticalPadding\n  } = token;\n  return {\n    [`${componentCls}-dropdown`]: Object.assign(Object.assign({}, resetComponent(token)), {\n      position: 'absolute',\n      top: -9999,\n      left: {\n        _skip_check_: true,\n        value: -9999\n      },\n      zIndex: token.zIndexPopup,\n      display: 'block',\n      '&-hidden': {\n        display: 'none'\n      },\n      [`${componentCls}-dropdown-menu`]: {\n        maxHeight: token.tabsDropdownHeight,\n        margin: 0,\n        padding: `${unit(dropdownEdgeChildVerticalPadding)} 0`,\n        overflowX: 'hidden',\n        overflowY: 'auto',\n        textAlign: {\n          _skip_check_: true,\n          value: 'left'\n        },\n        listStyleType: 'none',\n        backgroundColor: token.colorBgContainer,\n        backgroundClip: 'padding-box',\n        borderRadius: token.borderRadiusLG,\n        outline: 'none',\n        boxShadow: token.boxShadowSecondary,\n        '&-item': Object.assign(Object.assign({}, textEllipsis), {\n          display: 'flex',\n          alignItems: 'center',\n          minWidth: token.tabsDropdownWidth,\n          margin: 0,\n          padding: `${unit(token.paddingXXS)} ${unit(token.paddingSM)}`,\n          color: token.colorText,\n          fontWeight: 'normal',\n          fontSize: token.fontSize,\n          lineHeight: token.lineHeight,\n          cursor: 'pointer',\n          transition: `all ${token.motionDurationSlow}`,\n          '> span': {\n            flex: 1,\n            whiteSpace: 'nowrap'\n          },\n          '&-remove': {\n            flex: 'none',\n            marginLeft: {\n              _skip_check_: true,\n              value: token.marginSM\n            },\n            color: token.colorTextDescription,\n            fontSize: token.fontSizeSM,\n            background: 'transparent',\n            border: 0,\n            cursor: 'pointer',\n            '&:hover': {\n              color: itemHoverColor\n            }\n          },\n          '&:hover': {\n            background: token.controlItemBgHover\n          },\n          '&-disabled': {\n            '&, &:hover': {\n              color: token.colorTextDisabled,\n              background: 'transparent',\n              cursor: 'not-allowed'\n            }\n          }\n        })\n      }\n    })\n  };\n};\nconst genPositionStyle = token => {\n  const {\n    componentCls,\n    margin,\n    colorBorderSecondary,\n    horizontalMargin,\n    verticalItemPadding,\n    verticalItemMargin,\n    calc\n  } = token;\n  return {\n    // ========================== Top & Bottom ==========================\n    [`${componentCls}-top, ${componentCls}-bottom`]: {\n      flexDirection: 'column',\n      [`> ${componentCls}-nav, > div > ${componentCls}-nav`]: {\n        margin: horizontalMargin,\n        '&::before': {\n          position: 'absolute',\n          right: {\n            _skip_check_: true,\n            value: 0\n          },\n          left: {\n            _skip_check_: true,\n            value: 0\n          },\n          borderBottom: `${unit(token.lineWidth)} ${token.lineType} ${colorBorderSecondary}`,\n          content: \"''\"\n        },\n        [`${componentCls}-ink-bar`]: {\n          height: token.lineWidthBold,\n          '&-animated': {\n            transition: `width ${token.motionDurationSlow}, left ${token.motionDurationSlow},\n            right ${token.motionDurationSlow}`\n          }\n        },\n        [`${componentCls}-nav-wrap`]: {\n          '&::before, &::after': {\n            top: 0,\n            bottom: 0,\n            width: token.controlHeight\n          },\n          '&::before': {\n            left: {\n              _skip_check_: true,\n              value: 0\n            },\n            boxShadow: token.boxShadowTabsOverflowLeft\n          },\n          '&::after': {\n            right: {\n              _skip_check_: true,\n              value: 0\n            },\n            boxShadow: token.boxShadowTabsOverflowRight\n          },\n          [`&${componentCls}-nav-wrap-ping-left::before`]: {\n            opacity: 1\n          },\n          [`&${componentCls}-nav-wrap-ping-right::after`]: {\n            opacity: 1\n          }\n        }\n      }\n    },\n    [`${componentCls}-top`]: {\n      [`> ${componentCls}-nav,\n        > div > ${componentCls}-nav`]: {\n        '&::before': {\n          bottom: 0\n        },\n        [`${componentCls}-ink-bar`]: {\n          bottom: 0\n        }\n      }\n    },\n    [`${componentCls}-bottom`]: {\n      [`> ${componentCls}-nav, > div > ${componentCls}-nav`]: {\n        order: 1,\n        marginTop: margin,\n        marginBottom: 0,\n        '&::before': {\n          top: 0\n        },\n        [`${componentCls}-ink-bar`]: {\n          top: 0\n        }\n      },\n      [`> ${componentCls}-content-holder, > div > ${componentCls}-content-holder`]: {\n        order: 0\n      }\n    },\n    // ========================== Left & Right ==========================\n    [`${componentCls}-left, ${componentCls}-right`]: {\n      [`> ${componentCls}-nav, > div > ${componentCls}-nav`]: {\n        flexDirection: 'column',\n        minWidth: calc(token.controlHeight).mul(1.25).equal(),\n        // >>>>>>>>>>> Tab\n        [`${componentCls}-tab`]: {\n          padding: verticalItemPadding,\n          textAlign: 'center'\n        },\n        [`${componentCls}-tab + ${componentCls}-tab`]: {\n          margin: verticalItemMargin\n        },\n        // >>>>>>>>>>> Nav\n        [`${componentCls}-nav-wrap`]: {\n          flexDirection: 'column',\n          '&::before, &::after': {\n            right: {\n              _skip_check_: true,\n              value: 0\n            },\n            left: {\n              _skip_check_: true,\n              value: 0\n            },\n            height: token.controlHeight\n          },\n          '&::before': {\n            top: 0,\n            boxShadow: token.boxShadowTabsOverflowTop\n          },\n          '&::after': {\n            bottom: 0,\n            boxShadow: token.boxShadowTabsOverflowBottom\n          },\n          [`&${componentCls}-nav-wrap-ping-top::before`]: {\n            opacity: 1\n          },\n          [`&${componentCls}-nav-wrap-ping-bottom::after`]: {\n            opacity: 1\n          }\n        },\n        // >>>>>>>>>>> Ink Bar\n        [`${componentCls}-ink-bar`]: {\n          width: token.lineWidthBold,\n          '&-animated': {\n            transition: `height ${token.motionDurationSlow}, top ${token.motionDurationSlow}`\n          }\n        },\n        [`${componentCls}-nav-list, ${componentCls}-nav-operations`]: {\n          flex: '1 0 auto',\n          // fix safari scroll problem\n          flexDirection: 'column'\n        }\n      }\n    },\n    [`${componentCls}-left`]: {\n      [`> ${componentCls}-nav, > div > ${componentCls}-nav`]: {\n        [`${componentCls}-ink-bar`]: {\n          right: {\n            _skip_check_: true,\n            value: 0\n          }\n        }\n      },\n      [`> ${componentCls}-content-holder, > div > ${componentCls}-content-holder`]: {\n        marginLeft: {\n          _skip_check_: true,\n          value: unit(calc(token.lineWidth).mul(-1).equal())\n        },\n        borderLeft: {\n          _skip_check_: true,\n          value: `${unit(token.lineWidth)} ${token.lineType} ${token.colorBorder}`\n        },\n        [`> ${componentCls}-content > ${componentCls}-tabpane`]: {\n          paddingLeft: {\n            _skip_check_: true,\n            value: token.paddingLG\n          }\n        }\n      }\n    },\n    [`${componentCls}-right`]: {\n      [`> ${componentCls}-nav, > div > ${componentCls}-nav`]: {\n        order: 1,\n        [`${componentCls}-ink-bar`]: {\n          left: {\n            _skip_check_: true,\n            value: 0\n          }\n        }\n      },\n      [`> ${componentCls}-content-holder, > div > ${componentCls}-content-holder`]: {\n        order: 0,\n        marginRight: {\n          _skip_check_: true,\n          value: calc(token.lineWidth).mul(-1).equal()\n        },\n        borderRight: {\n          _skip_check_: true,\n          value: `${unit(token.lineWidth)} ${token.lineType} ${token.colorBorder}`\n        },\n        [`> ${componentCls}-content > ${componentCls}-tabpane`]: {\n          paddingRight: {\n            _skip_check_: true,\n            value: token.paddingLG\n          }\n        }\n      }\n    }\n  };\n};\nconst genSizeStyle = token => {\n  const {\n    componentCls,\n    cardPaddingSM,\n    cardPaddingLG,\n    horizontalItemPaddingSM,\n    horizontalItemPaddingLG\n  } = token;\n  return {\n    [componentCls]: {\n      '&-small': {\n        [`> ${componentCls}-nav`]: {\n          [`${componentCls}-tab`]: {\n            padding: horizontalItemPaddingSM,\n            fontSize: token.titleFontSizeSM\n          }\n        }\n      },\n      '&-large': {\n        [`> ${componentCls}-nav`]: {\n          [`${componentCls}-tab`]: {\n            padding: horizontalItemPaddingLG,\n            fontSize: token.titleFontSizeLG\n          }\n        }\n      }\n    },\n    [`${componentCls}-card`]: {\n      [`&${componentCls}-small`]: {\n        [`> ${componentCls}-nav`]: {\n          [`${componentCls}-tab`]: {\n            padding: cardPaddingSM\n          }\n        },\n        [`&${componentCls}-bottom`]: {\n          [`> ${componentCls}-nav ${componentCls}-tab`]: {\n            borderRadius: `0 0 ${unit(token.borderRadius)} ${unit(token.borderRadius)}`\n          }\n        },\n        [`&${componentCls}-top`]: {\n          [`> ${componentCls}-nav ${componentCls}-tab`]: {\n            borderRadius: `${unit(token.borderRadius)} ${unit(token.borderRadius)} 0 0`\n          }\n        },\n        [`&${componentCls}-right`]: {\n          [`> ${componentCls}-nav ${componentCls}-tab`]: {\n            borderRadius: {\n              _skip_check_: true,\n              value: `0 ${unit(token.borderRadius)} ${unit(token.borderRadius)} 0`\n            }\n          }\n        },\n        [`&${componentCls}-left`]: {\n          [`> ${componentCls}-nav ${componentCls}-tab`]: {\n            borderRadius: {\n              _skip_check_: true,\n              value: `${unit(token.borderRadius)} 0 0 ${unit(token.borderRadius)}`\n            }\n          }\n        }\n      },\n      [`&${componentCls}-large`]: {\n        [`> ${componentCls}-nav`]: {\n          [`${componentCls}-tab`]: {\n            padding: cardPaddingLG\n          }\n        }\n      }\n    }\n  };\n};\nconst genTabStyle = token => {\n  const {\n    componentCls,\n    itemActiveColor,\n    itemHoverColor,\n    iconCls,\n    tabsHorizontalItemMargin,\n    horizontalItemPadding,\n    itemSelectedColor,\n    itemColor\n  } = token;\n  const tabCls = `${componentCls}-tab`;\n  return {\n    [tabCls]: {\n      position: 'relative',\n      WebkitTouchCallout: 'none',\n      WebkitTapHighlightColor: 'transparent',\n      display: 'inline-flex',\n      alignItems: 'center',\n      padding: horizontalItemPadding,\n      fontSize: token.titleFontSize,\n      background: 'transparent',\n      border: 0,\n      outline: 'none',\n      cursor: 'pointer',\n      color: itemColor,\n      '&-btn, &-remove': Object.assign({\n        '&:focus:not(:focus-visible), &:active': {\n          color: itemActiveColor\n        }\n      }, genFocusStyle(token)),\n      '&-btn': {\n        outline: 'none',\n        transition: `all ${token.motionDurationSlow}`,\n        [`${tabCls}-icon:not(:last-child)`]: {\n          marginInlineEnd: token.marginSM\n        }\n      },\n      '&-remove': {\n        flex: 'none',\n        marginRight: {\n          _skip_check_: true,\n          value: token.calc(token.marginXXS).mul(-1).equal()\n        },\n        marginLeft: {\n          _skip_check_: true,\n          value: token.marginXS\n        },\n        color: token.colorTextDescription,\n        fontSize: token.fontSizeSM,\n        background: 'transparent',\n        border: 'none',\n        outline: 'none',\n        cursor: 'pointer',\n        transition: `all ${token.motionDurationSlow}`,\n        '&:hover': {\n          color: token.colorTextHeading\n        }\n      },\n      '&:hover': {\n        color: itemHoverColor\n      },\n      [`&${tabCls}-active ${tabCls}-btn`]: {\n        color: itemSelectedColor,\n        textShadow: token.tabsActiveTextShadow\n      },\n      [`&${tabCls}-disabled`]: {\n        color: token.colorTextDisabled,\n        cursor: 'not-allowed'\n      },\n      [`&${tabCls}-disabled ${tabCls}-btn, &${tabCls}-disabled ${componentCls}-remove`]: {\n        '&:focus, &:active': {\n          color: token.colorTextDisabled\n        }\n      },\n      [`& ${tabCls}-remove ${iconCls}`]: {\n        margin: 0\n      },\n      [`${iconCls}:not(:last-child)`]: {\n        marginRight: {\n          _skip_check_: true,\n          value: token.marginSM\n        }\n      }\n    },\n    [`${tabCls} + ${tabCls}`]: {\n      margin: {\n        _skip_check_: true,\n        value: tabsHorizontalItemMargin\n      }\n    }\n  };\n};\nconst genRtlStyle = token => {\n  const {\n    componentCls,\n    tabsHorizontalItemMarginRTL,\n    iconCls,\n    cardGutter,\n    calc\n  } = token;\n  const rtlCls = `${componentCls}-rtl`;\n  return {\n    [rtlCls]: {\n      direction: 'rtl',\n      [`${componentCls}-nav`]: {\n        [`${componentCls}-tab`]: {\n          margin: {\n            _skip_check_: true,\n            value: tabsHorizontalItemMarginRTL\n          },\n          [`${componentCls}-tab:last-of-type`]: {\n            marginLeft: {\n              _skip_check_: true,\n              value: 0\n            }\n          },\n          [iconCls]: {\n            marginRight: {\n              _skip_check_: true,\n              value: 0\n            },\n            marginLeft: {\n              _skip_check_: true,\n              value: unit(token.marginSM)\n            }\n          },\n          [`${componentCls}-tab-remove`]: {\n            marginRight: {\n              _skip_check_: true,\n              value: unit(token.marginXS)\n            },\n            marginLeft: {\n              _skip_check_: true,\n              value: unit(calc(token.marginXXS).mul(-1).equal())\n            },\n            [iconCls]: {\n              margin: 0\n            }\n          }\n        }\n      },\n      [`&${componentCls}-left`]: {\n        [`> ${componentCls}-nav`]: {\n          order: 1\n        },\n        [`> ${componentCls}-content-holder`]: {\n          order: 0\n        }\n      },\n      [`&${componentCls}-right`]: {\n        [`> ${componentCls}-nav`]: {\n          order: 0\n        },\n        [`> ${componentCls}-content-holder`]: {\n          order: 1\n        }\n      },\n      // ====================== Card ======================\n      [`&${componentCls}-card${componentCls}-top, &${componentCls}-card${componentCls}-bottom`]: {\n        [`> ${componentCls}-nav, > div > ${componentCls}-nav`]: {\n          [`${componentCls}-tab + ${componentCls}-tab`]: {\n            marginRight: {\n              _skip_check_: true,\n              value: cardGutter\n            },\n            marginLeft: {\n              _skip_check_: true,\n              value: 0\n            }\n          }\n        }\n      }\n    },\n    [`${componentCls}-dropdown-rtl`]: {\n      direction: 'rtl'\n    },\n    [`${componentCls}-menu-item`]: {\n      [`${componentCls}-dropdown-rtl`]: {\n        textAlign: {\n          _skip_check_: true,\n          value: 'right'\n        }\n      }\n    }\n  };\n};\nconst genTabsStyle = token => {\n  const {\n    componentCls,\n    tabsCardPadding,\n    cardHeight,\n    cardGutter,\n    itemHoverColor,\n    itemActiveColor,\n    colorBorderSecondary\n  } = token;\n  return {\n    [componentCls]: Object.assign(Object.assign(Object.assign(Object.assign({}, resetComponent(token)), {\n      display: 'flex',\n      // ========================== Navigation ==========================\n      [`> ${componentCls}-nav, > div > ${componentCls}-nav`]: {\n        position: 'relative',\n        display: 'flex',\n        flex: 'none',\n        alignItems: 'center',\n        [`${componentCls}-nav-wrap`]: {\n          position: 'relative',\n          display: 'flex',\n          flex: 'auto',\n          alignSelf: 'stretch',\n          overflow: 'hidden',\n          whiteSpace: 'nowrap',\n          transform: 'translate(0)',\n          // Fix chrome render bug\n          // >>>>> Ping shadow\n          '&::before, &::after': {\n            position: 'absolute',\n            zIndex: 1,\n            opacity: 0,\n            transition: `opacity ${token.motionDurationSlow}`,\n            content: \"''\",\n            pointerEvents: 'none'\n          }\n        },\n        [`${componentCls}-nav-list`]: {\n          position: 'relative',\n          display: 'flex',\n          transition: `opacity ${token.motionDurationSlow}`\n        },\n        // >>>>>>>> Operations\n        [`${componentCls}-nav-operations`]: {\n          display: 'flex',\n          alignSelf: 'stretch'\n        },\n        [`${componentCls}-nav-operations-hidden`]: {\n          position: 'absolute',\n          visibility: 'hidden',\n          pointerEvents: 'none'\n        },\n        [`${componentCls}-nav-more`]: {\n          position: 'relative',\n          padding: tabsCardPadding,\n          background: 'transparent',\n          border: 0,\n          color: token.colorText,\n          '&::after': {\n            position: 'absolute',\n            right: {\n              _skip_check_: true,\n              value: 0\n            },\n            bottom: 0,\n            left: {\n              _skip_check_: true,\n              value: 0\n            },\n            height: token.calc(token.controlHeightLG).div(8).equal(),\n            transform: 'translateY(100%)',\n            content: \"''\"\n          }\n        },\n        [`${componentCls}-nav-add`]: Object.assign({\n          minWidth: cardHeight,\n          minHeight: cardHeight,\n          marginLeft: {\n            _skip_check_: true,\n            value: cardGutter\n          },\n          padding: `0 ${unit(token.paddingXS)}`,\n          background: 'transparent',\n          border: `${unit(token.lineWidth)} ${token.lineType} ${colorBorderSecondary}`,\n          borderRadius: `${unit(token.borderRadiusLG)} ${unit(token.borderRadiusLG)} 0 0`,\n          outline: 'none',\n          cursor: 'pointer',\n          color: token.colorText,\n          transition: `all ${token.motionDurationSlow} ${token.motionEaseInOut}`,\n          '&:hover': {\n            color: itemHoverColor\n          },\n          '&:active, &:focus:not(:focus-visible)': {\n            color: itemActiveColor\n          }\n        }, genFocusStyle(token))\n      },\n      [`${componentCls}-extra-content`]: {\n        flex: 'none'\n      },\n      // ============================ InkBar ============================\n      [`${componentCls}-ink-bar`]: {\n        position: 'absolute',\n        background: token.inkBarColor,\n        pointerEvents: 'none'\n      }\n    }), genTabStyle(token)), {\n      // =========================== TabPanes ===========================\n      [`${componentCls}-content`]: {\n        position: 'relative',\n        width: '100%'\n      },\n      [`${componentCls}-content-holder`]: {\n        flex: 'auto',\n        minWidth: 0,\n        minHeight: 0\n      },\n      [`${componentCls}-tabpane`]: {\n        outline: 'none',\n        '&-hidden': {\n          display: 'none'\n        }\n      }\n    }),\n    [`${componentCls}-centered`]: {\n      [`> ${componentCls}-nav, > div > ${componentCls}-nav`]: {\n        [`${componentCls}-nav-wrap`]: {\n          [`&:not([class*='${componentCls}-nav-wrap-ping'])`]: {\n            justifyContent: 'center'\n          }\n        }\n      }\n    }\n  };\n};\nexport const prepareComponentToken = token => {\n  const cardHeight = token.controlHeightLG;\n  return {\n    zIndexPopup: token.zIndexPopupBase + 50,\n    cardBg: token.colorFillAlter,\n    cardHeight,\n    // Initialize with empty string, because cardPadding will be calculated with cardHeight by default.\n    cardPadding: `${(cardHeight - Math.round(token.fontSize * token.lineHeight)) / 2 - token.lineWidth}px ${token.padding}px`,\n    cardPaddingSM: `${token.paddingXXS * 1.5}px ${token.padding}px`,\n    cardPaddingLG: `${token.paddingXS}px ${token.padding}px ${token.paddingXXS * 1.5}px`,\n    titleFontSize: token.fontSize,\n    titleFontSizeLG: token.fontSizeLG,\n    titleFontSizeSM: token.fontSize,\n    inkBarColor: token.colorPrimary,\n    horizontalMargin: `0 0 ${token.margin}px 0`,\n    horizontalItemGutter: 32,\n    // Fixed Value\n    // Initialize with empty string, because horizontalItemMargin will be calculated with horizontalItemGutter by default.\n    horizontalItemMargin: ``,\n    horizontalItemMarginRTL: ``,\n    horizontalItemPadding: `${token.paddingSM}px 0`,\n    horizontalItemPaddingSM: `${token.paddingXS}px 0`,\n    horizontalItemPaddingLG: `${token.padding}px 0`,\n    verticalItemPadding: `${token.paddingXS}px ${token.paddingLG}px`,\n    verticalItemMargin: `${token.margin}px 0 0 0`,\n    itemColor: token.colorText,\n    itemSelectedColor: token.colorPrimary,\n    itemHoverColor: token.colorPrimaryHover,\n    itemActiveColor: token.colorPrimaryActive,\n    cardGutter: token.marginXXS / 2\n  };\n};\n// ============================== Export ==============================\nexport default genStyleHooks('Tabs', token => {\n  const tabsToken = mergeToken(token, {\n    // `cardPadding` is empty by default, so we could calculate with dynamic `cardHeight`\n    tabsCardPadding: token.cardPadding,\n    dropdownEdgeChildVerticalPadding: token.paddingXXS,\n    tabsActiveTextShadow: '0 0 0.25px currentcolor',\n    tabsDropdownHeight: 200,\n    tabsDropdownWidth: 120,\n    tabsHorizontalItemMargin: `0 0 0 ${unit(token.horizontalItemGutter)}`,\n    tabsHorizontalItemMarginRTL: `0 0 0 ${unit(token.horizontalItemGutter)}`\n  });\n  return [genSizeStyle(tabsToken), genRtlStyle(tabsToken), genPositionStyle(tabsToken), genDropdownStyle(tabsToken), genCardStyle(tabsToken), genTabsStyle(tabsToken), genMotionStyle(tabsToken)];\n}, prepareComponentToken);","map":{"version":3,"names":["unit","genFocusStyle","resetComponent","textEllipsis","genStyleHooks","mergeToken","genMotionStyle","genCardStyle","token","componentCls","tabsCardPadding","cardBg","cardGutter","colorBorderSecondary","itemSelectedColor","margin","padding","background","border","lineWidth","lineType","transition","motionDurationSlow","motionEaseInOut","color","colorBgContainer","visibility","marginLeft","_skip_check_","value","borderRadius","borderRadiusLG","borderBottomColor","borderTopColor","marginTop","borderRightColor","borderLeftColor","genDropdownStyle","itemHoverColor","dropdownEdgeChildVerticalPadding","Object","assign","position","top","left","zIndex","zIndexPopup","display","maxHeight","tabsDropdownHeight","overflowX","overflowY","textAlign","listStyleType","backgroundColor","backgroundClip","outline","boxShadow","boxShadowSecondary","alignItems","minWidth","tabsDropdownWidth","paddingXXS","paddingSM","colorText","fontWeight","fontSize","lineHeight","cursor","flex","whiteSpace","marginSM","colorTextDescription","fontSizeSM","controlItemBgHover","colorTextDisabled","genPositionStyle","horizontalMargin","verticalItemPadding","verticalItemMargin","calc","flexDirection","right","borderBottom","content","height","lineWidthBold","bottom","width","controlHeight","boxShadowTabsOverflowLeft","boxShadowTabsOverflowRight","opacity","order","marginBottom","mul","equal","boxShadowTabsOverflowTop","boxShadowTabsOverflowBottom","borderLeft","colorBorder","paddingLeft","paddingLG","marginRight","borderRight","paddingRight","genSizeStyle","cardPaddingSM","cardPaddingLG","horizontalItemPaddingSM","horizontalItemPaddingLG","titleFontSizeSM","titleFontSizeLG","genTabStyle","itemActiveColor","iconCls","tabsHorizontalItemMargin","horizontalItemPadding","itemColor","tabCls","WebkitTouchCallout","WebkitTapHighlightColor","titleFontSize","marginInlineEnd","marginXXS","marginXS","colorTextHeading","textShadow","tabsActiveTextShadow","genRtlStyle","tabsHorizontalItemMarginRTL","rtlCls","direction","genTabsStyle","cardHeight","alignSelf","overflow","transform","pointerEvents","controlHeightLG","div","minHeight","paddingXS","inkBarColor","justifyContent","prepareComponentToken","zIndexPopupBase","colorFillAlter","cardPadding","Math","round","fontSizeLG","colorPrimary","horizontalItemGutter","horizontalItemMargin","horizontalItemMarginRTL","colorPrimaryHover","colorPrimaryActive","tabsToken"],"sources":["/Users/shanyi/Desktop/Projects/UC_Trains_Voice/react-demo/node_modules/antd/es/tabs/style/index.js"],"sourcesContent":["import { unit } from '@ant-design/cssinjs';\nimport { genFocusStyle, resetComponent, textEllipsis } from '../../style';\nimport { genStyleHooks, mergeToken } from '../../theme/internal';\nimport genMotionStyle from './motion';\nconst genCardStyle = token => {\n  const {\n    componentCls,\n    tabsCardPadding,\n    cardBg,\n    cardGutter,\n    colorBorderSecondary,\n    itemSelectedColor\n  } = token;\n  return {\n    [`${componentCls}-card`]: {\n      [`> ${componentCls}-nav, > div > ${componentCls}-nav`]: {\n        [`${componentCls}-tab`]: {\n          margin: 0,\n          padding: tabsCardPadding,\n          background: cardBg,\n          border: `${unit(token.lineWidth)} ${token.lineType} ${colorBorderSecondary}`,\n          transition: `all ${token.motionDurationSlow} ${token.motionEaseInOut}`\n        },\n        [`${componentCls}-tab-active`]: {\n          color: itemSelectedColor,\n          background: token.colorBgContainer\n        },\n        [`${componentCls}-ink-bar`]: {\n          visibility: 'hidden'\n        }\n      },\n      // ========================== Top & Bottom ==========================\n      [`&${componentCls}-top, &${componentCls}-bottom`]: {\n        [`> ${componentCls}-nav, > div > ${componentCls}-nav`]: {\n          [`${componentCls}-tab + ${componentCls}-tab`]: {\n            marginLeft: {\n              _skip_check_: true,\n              value: unit(cardGutter)\n            }\n          }\n        }\n      },\n      [`&${componentCls}-top`]: {\n        [`> ${componentCls}-nav, > div > ${componentCls}-nav`]: {\n          [`${componentCls}-tab`]: {\n            borderRadius: `${unit(token.borderRadiusLG)} ${unit(token.borderRadiusLG)} 0 0`\n          },\n          [`${componentCls}-tab-active`]: {\n            borderBottomColor: token.colorBgContainer\n          }\n        }\n      },\n      [`&${componentCls}-bottom`]: {\n        [`> ${componentCls}-nav, > div > ${componentCls}-nav`]: {\n          [`${componentCls}-tab`]: {\n            borderRadius: `0 0 ${unit(token.borderRadiusLG)} ${unit(token.borderRadiusLG)}`\n          },\n          [`${componentCls}-tab-active`]: {\n            borderTopColor: token.colorBgContainer\n          }\n        }\n      },\n      // ========================== Left & Right ==========================\n      [`&${componentCls}-left, &${componentCls}-right`]: {\n        [`> ${componentCls}-nav, > div > ${componentCls}-nav`]: {\n          [`${componentCls}-tab + ${componentCls}-tab`]: {\n            marginTop: unit(cardGutter)\n          }\n        }\n      },\n      [`&${componentCls}-left`]: {\n        [`> ${componentCls}-nav, > div > ${componentCls}-nav`]: {\n          [`${componentCls}-tab`]: {\n            borderRadius: {\n              _skip_check_: true,\n              value: `${unit(token.borderRadiusLG)} 0 0 ${unit(token.borderRadiusLG)}`\n            }\n          },\n          [`${componentCls}-tab-active`]: {\n            borderRightColor: {\n              _skip_check_: true,\n              value: token.colorBgContainer\n            }\n          }\n        }\n      },\n      [`&${componentCls}-right`]: {\n        [`> ${componentCls}-nav, > div > ${componentCls}-nav`]: {\n          [`${componentCls}-tab`]: {\n            borderRadius: {\n              _skip_check_: true,\n              value: `0 ${unit(token.borderRadiusLG)} ${unit(token.borderRadiusLG)} 0`\n            }\n          },\n          [`${componentCls}-tab-active`]: {\n            borderLeftColor: {\n              _skip_check_: true,\n              value: token.colorBgContainer\n            }\n          }\n        }\n      }\n    }\n  };\n};\nconst genDropdownStyle = token => {\n  const {\n    componentCls,\n    itemHoverColor,\n    dropdownEdgeChildVerticalPadding\n  } = token;\n  return {\n    [`${componentCls}-dropdown`]: Object.assign(Object.assign({}, resetComponent(token)), {\n      position: 'absolute',\n      top: -9999,\n      left: {\n        _skip_check_: true,\n        value: -9999\n      },\n      zIndex: token.zIndexPopup,\n      display: 'block',\n      '&-hidden': {\n        display: 'none'\n      },\n      [`${componentCls}-dropdown-menu`]: {\n        maxHeight: token.tabsDropdownHeight,\n        margin: 0,\n        padding: `${unit(dropdownEdgeChildVerticalPadding)} 0`,\n        overflowX: 'hidden',\n        overflowY: 'auto',\n        textAlign: {\n          _skip_check_: true,\n          value: 'left'\n        },\n        listStyleType: 'none',\n        backgroundColor: token.colorBgContainer,\n        backgroundClip: 'padding-box',\n        borderRadius: token.borderRadiusLG,\n        outline: 'none',\n        boxShadow: token.boxShadowSecondary,\n        '&-item': Object.assign(Object.assign({}, textEllipsis), {\n          display: 'flex',\n          alignItems: 'center',\n          minWidth: token.tabsDropdownWidth,\n          margin: 0,\n          padding: `${unit(token.paddingXXS)} ${unit(token.paddingSM)}`,\n          color: token.colorText,\n          fontWeight: 'normal',\n          fontSize: token.fontSize,\n          lineHeight: token.lineHeight,\n          cursor: 'pointer',\n          transition: `all ${token.motionDurationSlow}`,\n          '> span': {\n            flex: 1,\n            whiteSpace: 'nowrap'\n          },\n          '&-remove': {\n            flex: 'none',\n            marginLeft: {\n              _skip_check_: true,\n              value: token.marginSM\n            },\n            color: token.colorTextDescription,\n            fontSize: token.fontSizeSM,\n            background: 'transparent',\n            border: 0,\n            cursor: 'pointer',\n            '&:hover': {\n              color: itemHoverColor\n            }\n          },\n          '&:hover': {\n            background: token.controlItemBgHover\n          },\n          '&-disabled': {\n            '&, &:hover': {\n              color: token.colorTextDisabled,\n              background: 'transparent',\n              cursor: 'not-allowed'\n            }\n          }\n        })\n      }\n    })\n  };\n};\nconst genPositionStyle = token => {\n  const {\n    componentCls,\n    margin,\n    colorBorderSecondary,\n    horizontalMargin,\n    verticalItemPadding,\n    verticalItemMargin,\n    calc\n  } = token;\n  return {\n    // ========================== Top & Bottom ==========================\n    [`${componentCls}-top, ${componentCls}-bottom`]: {\n      flexDirection: 'column',\n      [`> ${componentCls}-nav, > div > ${componentCls}-nav`]: {\n        margin: horizontalMargin,\n        '&::before': {\n          position: 'absolute',\n          right: {\n            _skip_check_: true,\n            value: 0\n          },\n          left: {\n            _skip_check_: true,\n            value: 0\n          },\n          borderBottom: `${unit(token.lineWidth)} ${token.lineType} ${colorBorderSecondary}`,\n          content: \"''\"\n        },\n        [`${componentCls}-ink-bar`]: {\n          height: token.lineWidthBold,\n          '&-animated': {\n            transition: `width ${token.motionDurationSlow}, left ${token.motionDurationSlow},\n            right ${token.motionDurationSlow}`\n          }\n        },\n        [`${componentCls}-nav-wrap`]: {\n          '&::before, &::after': {\n            top: 0,\n            bottom: 0,\n            width: token.controlHeight\n          },\n          '&::before': {\n            left: {\n              _skip_check_: true,\n              value: 0\n            },\n            boxShadow: token.boxShadowTabsOverflowLeft\n          },\n          '&::after': {\n            right: {\n              _skip_check_: true,\n              value: 0\n            },\n            boxShadow: token.boxShadowTabsOverflowRight\n          },\n          [`&${componentCls}-nav-wrap-ping-left::before`]: {\n            opacity: 1\n          },\n          [`&${componentCls}-nav-wrap-ping-right::after`]: {\n            opacity: 1\n          }\n        }\n      }\n    },\n    [`${componentCls}-top`]: {\n      [`> ${componentCls}-nav,\n        > div > ${componentCls}-nav`]: {\n        '&::before': {\n          bottom: 0\n        },\n        [`${componentCls}-ink-bar`]: {\n          bottom: 0\n        }\n      }\n    },\n    [`${componentCls}-bottom`]: {\n      [`> ${componentCls}-nav, > div > ${componentCls}-nav`]: {\n        order: 1,\n        marginTop: margin,\n        marginBottom: 0,\n        '&::before': {\n          top: 0\n        },\n        [`${componentCls}-ink-bar`]: {\n          top: 0\n        }\n      },\n      [`> ${componentCls}-content-holder, > div > ${componentCls}-content-holder`]: {\n        order: 0\n      }\n    },\n    // ========================== Left & Right ==========================\n    [`${componentCls}-left, ${componentCls}-right`]: {\n      [`> ${componentCls}-nav, > div > ${componentCls}-nav`]: {\n        flexDirection: 'column',\n        minWidth: calc(token.controlHeight).mul(1.25).equal(),\n        // >>>>>>>>>>> Tab\n        [`${componentCls}-tab`]: {\n          padding: verticalItemPadding,\n          textAlign: 'center'\n        },\n        [`${componentCls}-tab + ${componentCls}-tab`]: {\n          margin: verticalItemMargin\n        },\n        // >>>>>>>>>>> Nav\n        [`${componentCls}-nav-wrap`]: {\n          flexDirection: 'column',\n          '&::before, &::after': {\n            right: {\n              _skip_check_: true,\n              value: 0\n            },\n            left: {\n              _skip_check_: true,\n              value: 0\n            },\n            height: token.controlHeight\n          },\n          '&::before': {\n            top: 0,\n            boxShadow: token.boxShadowTabsOverflowTop\n          },\n          '&::after': {\n            bottom: 0,\n            boxShadow: token.boxShadowTabsOverflowBottom\n          },\n          [`&${componentCls}-nav-wrap-ping-top::before`]: {\n            opacity: 1\n          },\n          [`&${componentCls}-nav-wrap-ping-bottom::after`]: {\n            opacity: 1\n          }\n        },\n        // >>>>>>>>>>> Ink Bar\n        [`${componentCls}-ink-bar`]: {\n          width: token.lineWidthBold,\n          '&-animated': {\n            transition: `height ${token.motionDurationSlow}, top ${token.motionDurationSlow}`\n          }\n        },\n        [`${componentCls}-nav-list, ${componentCls}-nav-operations`]: {\n          flex: '1 0 auto',\n          // fix safari scroll problem\n          flexDirection: 'column'\n        }\n      }\n    },\n    [`${componentCls}-left`]: {\n      [`> ${componentCls}-nav, > div > ${componentCls}-nav`]: {\n        [`${componentCls}-ink-bar`]: {\n          right: {\n            _skip_check_: true,\n            value: 0\n          }\n        }\n      },\n      [`> ${componentCls}-content-holder, > div > ${componentCls}-content-holder`]: {\n        marginLeft: {\n          _skip_check_: true,\n          value: unit(calc(token.lineWidth).mul(-1).equal())\n        },\n        borderLeft: {\n          _skip_check_: true,\n          value: `${unit(token.lineWidth)} ${token.lineType} ${token.colorBorder}`\n        },\n        [`> ${componentCls}-content > ${componentCls}-tabpane`]: {\n          paddingLeft: {\n            _skip_check_: true,\n            value: token.paddingLG\n          }\n        }\n      }\n    },\n    [`${componentCls}-right`]: {\n      [`> ${componentCls}-nav, > div > ${componentCls}-nav`]: {\n        order: 1,\n        [`${componentCls}-ink-bar`]: {\n          left: {\n            _skip_check_: true,\n            value: 0\n          }\n        }\n      },\n      [`> ${componentCls}-content-holder, > div > ${componentCls}-content-holder`]: {\n        order: 0,\n        marginRight: {\n          _skip_check_: true,\n          value: calc(token.lineWidth).mul(-1).equal()\n        },\n        borderRight: {\n          _skip_check_: true,\n          value: `${unit(token.lineWidth)} ${token.lineType} ${token.colorBorder}`\n        },\n        [`> ${componentCls}-content > ${componentCls}-tabpane`]: {\n          paddingRight: {\n            _skip_check_: true,\n            value: token.paddingLG\n          }\n        }\n      }\n    }\n  };\n};\nconst genSizeStyle = token => {\n  const {\n    componentCls,\n    cardPaddingSM,\n    cardPaddingLG,\n    horizontalItemPaddingSM,\n    horizontalItemPaddingLG\n  } = token;\n  return {\n    [componentCls]: {\n      '&-small': {\n        [`> ${componentCls}-nav`]: {\n          [`${componentCls}-tab`]: {\n            padding: horizontalItemPaddingSM,\n            fontSize: token.titleFontSizeSM\n          }\n        }\n      },\n      '&-large': {\n        [`> ${componentCls}-nav`]: {\n          [`${componentCls}-tab`]: {\n            padding: horizontalItemPaddingLG,\n            fontSize: token.titleFontSizeLG\n          }\n        }\n      }\n    },\n    [`${componentCls}-card`]: {\n      [`&${componentCls}-small`]: {\n        [`> ${componentCls}-nav`]: {\n          [`${componentCls}-tab`]: {\n            padding: cardPaddingSM\n          }\n        },\n        [`&${componentCls}-bottom`]: {\n          [`> ${componentCls}-nav ${componentCls}-tab`]: {\n            borderRadius: `0 0 ${unit(token.borderRadius)} ${unit(token.borderRadius)}`\n          }\n        },\n        [`&${componentCls}-top`]: {\n          [`> ${componentCls}-nav ${componentCls}-tab`]: {\n            borderRadius: `${unit(token.borderRadius)} ${unit(token.borderRadius)} 0 0`\n          }\n        },\n        [`&${componentCls}-right`]: {\n          [`> ${componentCls}-nav ${componentCls}-tab`]: {\n            borderRadius: {\n              _skip_check_: true,\n              value: `0 ${unit(token.borderRadius)} ${unit(token.borderRadius)} 0`\n            }\n          }\n        },\n        [`&${componentCls}-left`]: {\n          [`> ${componentCls}-nav ${componentCls}-tab`]: {\n            borderRadius: {\n              _skip_check_: true,\n              value: `${unit(token.borderRadius)} 0 0 ${unit(token.borderRadius)}`\n            }\n          }\n        }\n      },\n      [`&${componentCls}-large`]: {\n        [`> ${componentCls}-nav`]: {\n          [`${componentCls}-tab`]: {\n            padding: cardPaddingLG\n          }\n        }\n      }\n    }\n  };\n};\nconst genTabStyle = token => {\n  const {\n    componentCls,\n    itemActiveColor,\n    itemHoverColor,\n    iconCls,\n    tabsHorizontalItemMargin,\n    horizontalItemPadding,\n    itemSelectedColor,\n    itemColor\n  } = token;\n  const tabCls = `${componentCls}-tab`;\n  return {\n    [tabCls]: {\n      position: 'relative',\n      WebkitTouchCallout: 'none',\n      WebkitTapHighlightColor: 'transparent',\n      display: 'inline-flex',\n      alignItems: 'center',\n      padding: horizontalItemPadding,\n      fontSize: token.titleFontSize,\n      background: 'transparent',\n      border: 0,\n      outline: 'none',\n      cursor: 'pointer',\n      color: itemColor,\n      '&-btn, &-remove': Object.assign({\n        '&:focus:not(:focus-visible), &:active': {\n          color: itemActiveColor\n        }\n      }, genFocusStyle(token)),\n      '&-btn': {\n        outline: 'none',\n        transition: `all ${token.motionDurationSlow}`,\n        [`${tabCls}-icon:not(:last-child)`]: {\n          marginInlineEnd: token.marginSM\n        }\n      },\n      '&-remove': {\n        flex: 'none',\n        marginRight: {\n          _skip_check_: true,\n          value: token.calc(token.marginXXS).mul(-1).equal()\n        },\n        marginLeft: {\n          _skip_check_: true,\n          value: token.marginXS\n        },\n        color: token.colorTextDescription,\n        fontSize: token.fontSizeSM,\n        background: 'transparent',\n        border: 'none',\n        outline: 'none',\n        cursor: 'pointer',\n        transition: `all ${token.motionDurationSlow}`,\n        '&:hover': {\n          color: token.colorTextHeading\n        }\n      },\n      '&:hover': {\n        color: itemHoverColor\n      },\n      [`&${tabCls}-active ${tabCls}-btn`]: {\n        color: itemSelectedColor,\n        textShadow: token.tabsActiveTextShadow\n      },\n      [`&${tabCls}-disabled`]: {\n        color: token.colorTextDisabled,\n        cursor: 'not-allowed'\n      },\n      [`&${tabCls}-disabled ${tabCls}-btn, &${tabCls}-disabled ${componentCls}-remove`]: {\n        '&:focus, &:active': {\n          color: token.colorTextDisabled\n        }\n      },\n      [`& ${tabCls}-remove ${iconCls}`]: {\n        margin: 0\n      },\n      [`${iconCls}:not(:last-child)`]: {\n        marginRight: {\n          _skip_check_: true,\n          value: token.marginSM\n        }\n      }\n    },\n    [`${tabCls} + ${tabCls}`]: {\n      margin: {\n        _skip_check_: true,\n        value: tabsHorizontalItemMargin\n      }\n    }\n  };\n};\nconst genRtlStyle = token => {\n  const {\n    componentCls,\n    tabsHorizontalItemMarginRTL,\n    iconCls,\n    cardGutter,\n    calc\n  } = token;\n  const rtlCls = `${componentCls}-rtl`;\n  return {\n    [rtlCls]: {\n      direction: 'rtl',\n      [`${componentCls}-nav`]: {\n        [`${componentCls}-tab`]: {\n          margin: {\n            _skip_check_: true,\n            value: tabsHorizontalItemMarginRTL\n          },\n          [`${componentCls}-tab:last-of-type`]: {\n            marginLeft: {\n              _skip_check_: true,\n              value: 0\n            }\n          },\n          [iconCls]: {\n            marginRight: {\n              _skip_check_: true,\n              value: 0\n            },\n            marginLeft: {\n              _skip_check_: true,\n              value: unit(token.marginSM)\n            }\n          },\n          [`${componentCls}-tab-remove`]: {\n            marginRight: {\n              _skip_check_: true,\n              value: unit(token.marginXS)\n            },\n            marginLeft: {\n              _skip_check_: true,\n              value: unit(calc(token.marginXXS).mul(-1).equal())\n            },\n            [iconCls]: {\n              margin: 0\n            }\n          }\n        }\n      },\n      [`&${componentCls}-left`]: {\n        [`> ${componentCls}-nav`]: {\n          order: 1\n        },\n        [`> ${componentCls}-content-holder`]: {\n          order: 0\n        }\n      },\n      [`&${componentCls}-right`]: {\n        [`> ${componentCls}-nav`]: {\n          order: 0\n        },\n        [`> ${componentCls}-content-holder`]: {\n          order: 1\n        }\n      },\n      // ====================== Card ======================\n      [`&${componentCls}-card${componentCls}-top, &${componentCls}-card${componentCls}-bottom`]: {\n        [`> ${componentCls}-nav, > div > ${componentCls}-nav`]: {\n          [`${componentCls}-tab + ${componentCls}-tab`]: {\n            marginRight: {\n              _skip_check_: true,\n              value: cardGutter\n            },\n            marginLeft: {\n              _skip_check_: true,\n              value: 0\n            }\n          }\n        }\n      }\n    },\n    [`${componentCls}-dropdown-rtl`]: {\n      direction: 'rtl'\n    },\n    [`${componentCls}-menu-item`]: {\n      [`${componentCls}-dropdown-rtl`]: {\n        textAlign: {\n          _skip_check_: true,\n          value: 'right'\n        }\n      }\n    }\n  };\n};\nconst genTabsStyle = token => {\n  const {\n    componentCls,\n    tabsCardPadding,\n    cardHeight,\n    cardGutter,\n    itemHoverColor,\n    itemActiveColor,\n    colorBorderSecondary\n  } = token;\n  return {\n    [componentCls]: Object.assign(Object.assign(Object.assign(Object.assign({}, resetComponent(token)), {\n      display: 'flex',\n      // ========================== Navigation ==========================\n      [`> ${componentCls}-nav, > div > ${componentCls}-nav`]: {\n        position: 'relative',\n        display: 'flex',\n        flex: 'none',\n        alignItems: 'center',\n        [`${componentCls}-nav-wrap`]: {\n          position: 'relative',\n          display: 'flex',\n          flex: 'auto',\n          alignSelf: 'stretch',\n          overflow: 'hidden',\n          whiteSpace: 'nowrap',\n          transform: 'translate(0)',\n          // Fix chrome render bug\n          // >>>>> Ping shadow\n          '&::before, &::after': {\n            position: 'absolute',\n            zIndex: 1,\n            opacity: 0,\n            transition: `opacity ${token.motionDurationSlow}`,\n            content: \"''\",\n            pointerEvents: 'none'\n          }\n        },\n        [`${componentCls}-nav-list`]: {\n          position: 'relative',\n          display: 'flex',\n          transition: `opacity ${token.motionDurationSlow}`\n        },\n        // >>>>>>>> Operations\n        [`${componentCls}-nav-operations`]: {\n          display: 'flex',\n          alignSelf: 'stretch'\n        },\n        [`${componentCls}-nav-operations-hidden`]: {\n          position: 'absolute',\n          visibility: 'hidden',\n          pointerEvents: 'none'\n        },\n        [`${componentCls}-nav-more`]: {\n          position: 'relative',\n          padding: tabsCardPadding,\n          background: 'transparent',\n          border: 0,\n          color: token.colorText,\n          '&::after': {\n            position: 'absolute',\n            right: {\n              _skip_check_: true,\n              value: 0\n            },\n            bottom: 0,\n            left: {\n              _skip_check_: true,\n              value: 0\n            },\n            height: token.calc(token.controlHeightLG).div(8).equal(),\n            transform: 'translateY(100%)',\n            content: \"''\"\n          }\n        },\n        [`${componentCls}-nav-add`]: Object.assign({\n          minWidth: cardHeight,\n          minHeight: cardHeight,\n          marginLeft: {\n            _skip_check_: true,\n            value: cardGutter\n          },\n          padding: `0 ${unit(token.paddingXS)}`,\n          background: 'transparent',\n          border: `${unit(token.lineWidth)} ${token.lineType} ${colorBorderSecondary}`,\n          borderRadius: `${unit(token.borderRadiusLG)} ${unit(token.borderRadiusLG)} 0 0`,\n          outline: 'none',\n          cursor: 'pointer',\n          color: token.colorText,\n          transition: `all ${token.motionDurationSlow} ${token.motionEaseInOut}`,\n          '&:hover': {\n            color: itemHoverColor\n          },\n          '&:active, &:focus:not(:focus-visible)': {\n            color: itemActiveColor\n          }\n        }, genFocusStyle(token))\n      },\n      [`${componentCls}-extra-content`]: {\n        flex: 'none'\n      },\n      // ============================ InkBar ============================\n      [`${componentCls}-ink-bar`]: {\n        position: 'absolute',\n        background: token.inkBarColor,\n        pointerEvents: 'none'\n      }\n    }), genTabStyle(token)), {\n      // =========================== TabPanes ===========================\n      [`${componentCls}-content`]: {\n        position: 'relative',\n        width: '100%'\n      },\n      [`${componentCls}-content-holder`]: {\n        flex: 'auto',\n        minWidth: 0,\n        minHeight: 0\n      },\n      [`${componentCls}-tabpane`]: {\n        outline: 'none',\n        '&-hidden': {\n          display: 'none'\n        }\n      }\n    }),\n    [`${componentCls}-centered`]: {\n      [`> ${componentCls}-nav, > div > ${componentCls}-nav`]: {\n        [`${componentCls}-nav-wrap`]: {\n          [`&:not([class*='${componentCls}-nav-wrap-ping'])`]: {\n            justifyContent: 'center'\n          }\n        }\n      }\n    }\n  };\n};\nexport const prepareComponentToken = token => {\n  const cardHeight = token.controlHeightLG;\n  return {\n    zIndexPopup: token.zIndexPopupBase + 50,\n    cardBg: token.colorFillAlter,\n    cardHeight,\n    // Initialize with empty string, because cardPadding will be calculated with cardHeight by default.\n    cardPadding: `${(cardHeight - Math.round(token.fontSize * token.lineHeight)) / 2 - token.lineWidth}px ${token.padding}px`,\n    cardPaddingSM: `${token.paddingXXS * 1.5}px ${token.padding}px`,\n    cardPaddingLG: `${token.paddingXS}px ${token.padding}px ${token.paddingXXS * 1.5}px`,\n    titleFontSize: token.fontSize,\n    titleFontSizeLG: token.fontSizeLG,\n    titleFontSizeSM: token.fontSize,\n    inkBarColor: token.colorPrimary,\n    horizontalMargin: `0 0 ${token.margin}px 0`,\n    horizontalItemGutter: 32,\n    // Fixed Value\n    // Initialize with empty string, because horizontalItemMargin will be calculated with horizontalItemGutter by default.\n    horizontalItemMargin: ``,\n    horizontalItemMarginRTL: ``,\n    horizontalItemPadding: `${token.paddingSM}px 0`,\n    horizontalItemPaddingSM: `${token.paddingXS}px 0`,\n    horizontalItemPaddingLG: `${token.padding}px 0`,\n    verticalItemPadding: `${token.paddingXS}px ${token.paddingLG}px`,\n    verticalItemMargin: `${token.margin}px 0 0 0`,\n    itemColor: token.colorText,\n    itemSelectedColor: token.colorPrimary,\n    itemHoverColor: token.colorPrimaryHover,\n    itemActiveColor: token.colorPrimaryActive,\n    cardGutter: token.marginXXS / 2\n  };\n};\n// ============================== Export ==============================\nexport default genStyleHooks('Tabs', token => {\n  const tabsToken = mergeToken(token, {\n    // `cardPadding` is empty by default, so we could calculate with dynamic `cardHeight`\n    tabsCardPadding: token.cardPadding,\n    dropdownEdgeChildVerticalPadding: token.paddingXXS,\n    tabsActiveTextShadow: '0 0 0.25px currentcolor',\n    tabsDropdownHeight: 200,\n    tabsDropdownWidth: 120,\n    tabsHorizontalItemMargin: `0 0 0 ${unit(token.horizontalItemGutter)}`,\n    tabsHorizontalItemMarginRTL: `0 0 0 ${unit(token.horizontalItemGutter)}`\n  });\n  return [genSizeStyle(tabsToken), genRtlStyle(tabsToken), genPositionStyle(tabsToken), genDropdownStyle(tabsToken), genCardStyle(tabsToken), genTabsStyle(tabsToken), genMotionStyle(tabsToken)];\n}, prepareComponentToken);"],"mappings":"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","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}