| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- "use strict";
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.default = void 0;
- var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
- var _style = require("../../checkbox/style");
- var _internal = require("../../theme/internal");
- var _style2 = require("../../style");
- var _compactItem = require("../../style/compact-item");
- // =============================== Base ===============================
- const genBaseStyle = token => {
- const {
- prefixCls,
- componentCls,
- antCls
- } = token;
- const cascaderMenuItemCls = `${componentCls}-menu-item`;
- const iconCls = `
- &${cascaderMenuItemCls}-expand ${cascaderMenuItemCls}-expand-icon,
- ${cascaderMenuItemCls}-loading-icon
- `;
- const itemPaddingVertical = Math.round((token.controlHeight - token.fontSize * token.lineHeight) / 2);
- return [
- // =====================================================
- // == Control ==
- // =====================================================
- {
- [componentCls]: {
- width: token.controlWidth
- }
- },
- // =====================================================
- // == Popup ==
- // =====================================================
- {
- [`${componentCls}-dropdown`]: [
- // ==================== Checkbox ====================
- (0, _style.getStyle)(`${prefixCls}-checkbox`, token), {
- [`&${antCls}-select-dropdown`]: {
- padding: 0
- }
- }, {
- [componentCls]: {
- // ================== Checkbox ==================
- '&-checkbox': {
- top: 0,
- marginInlineEnd: token.paddingXS
- },
- // ==================== Menu ====================
- // >>> Menus
- '&-menus': {
- display: 'flex',
- flexWrap: 'nowrap',
- alignItems: 'flex-start',
- [`&${componentCls}-menu-empty`]: {
- [`${componentCls}-menu`]: {
- width: '100%',
- height: 'auto',
- [cascaderMenuItemCls]: {
- color: token.colorTextDisabled
- }
- }
- }
- },
- // >>> Menu
- '&-menu': {
- flexGrow: 1,
- minWidth: token.controlItemWidth,
- height: token.dropdownHeight,
- margin: 0,
- padding: token.paddingXXS,
- overflow: 'auto',
- verticalAlign: 'top',
- listStyle: 'none',
- '-ms-overflow-style': '-ms-autohiding-scrollbar',
- '&:not(:last-child)': {
- borderInlineEnd: `${token.lineWidth}px ${token.lineType} ${token.colorSplit}`
- },
- '&-item': (0, _extends2.default)((0, _extends2.default)({}, _style2.textEllipsis), {
- display: 'flex',
- flexWrap: 'nowrap',
- alignItems: 'center',
- padding: `${itemPaddingVertical}px ${token.paddingSM}px`,
- lineHeight: token.lineHeight,
- cursor: 'pointer',
- transition: `all ${token.motionDurationMid}`,
- borderRadius: token.borderRadiusSM,
- '&:hover': {
- background: token.controlItemBgHover
- },
- '&-disabled': {
- color: token.colorTextDisabled,
- cursor: 'not-allowed',
- '&:hover': {
- background: 'transparent'
- },
- [iconCls]: {
- color: token.colorTextDisabled
- }
- },
- [`&-active:not(${cascaderMenuItemCls}-disabled)`]: {
- [`&, &:hover`]: {
- fontWeight: token.fontWeightStrong,
- backgroundColor: token.controlItemBgActive
- }
- },
- '&-content': {
- flex: 'auto'
- },
- [iconCls]: {
- marginInlineStart: token.paddingXXS,
- color: token.colorTextDescription,
- fontSize: token.fontSizeIcon
- },
- '&-keyword': {
- color: token.colorHighlight
- }
- })
- }
- }
- }]
- },
- // =====================================================
- // == RTL ==
- // =====================================================
- {
- [`${componentCls}-dropdown-rtl`]: {
- direction: 'rtl'
- }
- },
- // =====================================================
- // == Space Compact ==
- // =====================================================
- (0, _compactItem.genCompactItemStyle)(token)];
- };
- // ============================== Export ==============================
- var _default = exports.default = (0, _internal.genComponentStyleHook)('Cascader', token => [genBaseStyle(token)], {
- controlWidth: 184,
- controlItemWidth: 111,
- dropdownHeight: 180
- });
|