Comparing version 5.20.0 to 5.20.1
@@ -9,3 +9,3 @@ /*! | ||
* | ||
* antd v5.20.0 | ||
* antd v5.20.1 | ||
* | ||
@@ -12,0 +12,0 @@ * Copyright 2015-present, Alipay, Inc. |
@@ -9,3 +9,3 @@ /*! | ||
* | ||
* antd v5.20.0 | ||
* antd v5.20.1 | ||
* | ||
@@ -12,0 +12,0 @@ * Copyright 2015-present, Alipay, Inc. |
@@ -36,2 +36,3 @@ import { defaultPrefixCls } from '../config-provider'; | ||
}; | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
const SelectPlacements = ['bottomLeft', 'bottomRight', 'topLeft', 'topRight']; | ||
@@ -38,0 +39,0 @@ const getTransitionName = (rootPrefixCls, motion, transitionName) => { |
import classNames from 'classnames'; | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
const InputStatuses = ['warning', 'error', '']; | ||
@@ -3,0 +4,0 @@ export function getStatusClassNames(prefixCls, status, hasFeedback) { |
@@ -79,3 +79,3 @@ import { unit } from '@ant-design/cssinjs'; | ||
display: 'inline-flex', | ||
[`${componentCls}`]: { | ||
[componentCls]: { | ||
borderColor: groupBorderColor | ||
@@ -82,0 +82,0 @@ }, |
@@ -253,3 +253,3 @@ import { Keyframes, unit } from '@ant-design/cssinjs'; | ||
}, | ||
[`${numberPrefixCls}`]: { | ||
[numberPrefixCls]: { | ||
overflow: 'hidden', | ||
@@ -256,0 +256,0 @@ [`${numberPrefixCls}-only`]: { |
@@ -28,6 +28,6 @@ import { unit } from '@ant-design/cssinjs'; | ||
return { | ||
[`${ribbonWrapperPrefixCls}`]: { | ||
[ribbonWrapperPrefixCls]: { | ||
position: 'relative' | ||
}, | ||
[`${ribbonPrefixCls}`]: Object.assign(Object.assign(Object.assign(Object.assign({}, resetComponent(token)), { | ||
[ribbonPrefixCls]: Object.assign(Object.assign(Object.assign(Object.assign({}, resetComponent(token)), { | ||
position: 'absolute', | ||
@@ -34,0 +34,0 @@ top: marginXS, |
@@ -58,4 +58,7 @@ "use client"; | ||
} | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
const ButtonTypes = ['default', 'primary', 'dashed', 'link', 'text']; | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
const ButtonShapes = ['default', 'circle', 'round']; | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
const ButtonHTMLTypes = ['submit', 'button', 'reset']; |
@@ -240,3 +240,3 @@ import { unit } from '@ant-design/cssinjs'; | ||
return [{ | ||
[`${prefixCls}`]: { | ||
[prefixCls]: { | ||
fontSize, | ||
@@ -243,0 +243,0 @@ lineHeight, |
@@ -112,11 +112,2 @@ "use client"; | ||
}; | ||
// ====================== Locale ====================== | ||
const getDefaultLocale = () => { | ||
const { | ||
locale | ||
} = props; | ||
const result = Object.assign(Object.assign({}, enUS), locale); | ||
result.lang = Object.assign(Object.assign({}, result.lang), locale === null || locale === void 0 ? void 0 : locale.lang); | ||
return result; | ||
}; | ||
// ====================== Render ====================== | ||
@@ -158,3 +149,4 @@ const dateRender = React.useCallback((date, info) => { | ||
}, [monthFullCellRender, monthCellRender, cellRender, fullCellRender]); | ||
const [contextLocale] = useLocale('Calendar', getDefaultLocale); | ||
const [contextLocale] = useLocale('Calendar', enUS); | ||
const locale = Object.assign(Object.assign({}, contextLocale), props.locale); | ||
const mergedCellRender = (current, info) => { | ||
@@ -166,3 +158,3 @@ if (info.type === 'date') { | ||
return monthRender(current, Object.assign(Object.assign({}, info), { | ||
locale: contextLocale === null || contextLocale === void 0 ? void 0 : contextLocale.lang | ||
locale: locale === null || locale === void 0 ? void 0 : locale.lang | ||
})); | ||
@@ -191,3 +183,3 @@ } | ||
fullscreen: fullscreen, | ||
locale: contextLocale === null || contextLocale === void 0 ? void 0 : contextLocale.lang, | ||
locale: locale === null || locale === void 0 ? void 0 : locale.lang, | ||
validRange: validRange, | ||
@@ -199,3 +191,3 @@ onChange: onInternalSelect, | ||
prefixCls: prefixCls, | ||
locale: contextLocale === null || contextLocale === void 0 ? void 0 : contextLocale.lang, | ||
locale: locale === null || locale === void 0 ? void 0 : locale.lang, | ||
generateConfig: generateConfig, | ||
@@ -202,0 +194,0 @@ cellRender: mergedCellRender, |
@@ -64,3 +64,3 @@ import { unit } from '@ant-design/cssinjs'; | ||
padding: 0, | ||
lineHeight: `${unit(token.weekHeight)}` | ||
lineHeight: unit(token.weekHeight) | ||
} | ||
@@ -87,3 +87,3 @@ }, | ||
paddingBottom: token.paddingXXS, | ||
lineHeight: `${unit(token.weekHeight)}` | ||
lineHeight: unit(token.weekHeight) | ||
} | ||
@@ -129,3 +129,3 @@ } | ||
'&-value': { | ||
lineHeight: `${unit(token.dateValueHeight)}`, | ||
lineHeight: unit(token.dateValueHeight), | ||
transition: `color ${token.motionDurationSlow}` | ||
@@ -151,3 +151,3 @@ }, | ||
[`@media only screen and (max-width: ${unit(token.screenXS)}) `]: { | ||
[`${calendarCls}`]: { | ||
[calendarCls]: { | ||
[`${calendarCls}-header`]: { | ||
@@ -154,0 +154,0 @@ display: 'block', |
@@ -24,2 +24,3 @@ "use client"; | ||
import Popover from '../popover'; | ||
import { useCompactItemContext } from '../space/Compact'; | ||
import { AggregationColor } from './color'; | ||
@@ -143,4 +144,12 @@ import ColorPickerPanel from './ColorPickerPanel'; | ||
} = React.useContext(FormItemInputContext); | ||
// ==================== Compact ==================== | ||
const { | ||
compactSize, | ||
compactItemClassnames | ||
} = useCompactItemContext(prefixCls, direction); | ||
// ===================== Style ===================== | ||
const mergedSize = useSize(customizeSize); | ||
const mergedSize = useSize(ctx => { | ||
var _a; | ||
return (_a = customizeSize !== null && customizeSize !== void 0 ? customizeSize : compactSize) !== null && _a !== void 0 ? _a : ctx; | ||
}); | ||
const rootCls = useCSSVarCls(prefixCls); | ||
@@ -155,3 +164,3 @@ const [wrapCSSVar, hashId, cssVarCls] = useStyle(prefixCls, rootCls); | ||
[`${prefixCls}-lg`]: mergedSize === 'large' | ||
}, colorPicker === null || colorPicker === void 0 ? void 0 : colorPicker.className, mergedRootCls, className, hashId); | ||
}, compactItemClassnames, colorPicker === null || colorPicker === void 0 ? void 0 : colorPicker.className, mergedRootCls, className, hashId); | ||
const mergedPopupCls = classNames(prefixCls, mergedRootCls); | ||
@@ -158,0 +167,0 @@ // ===================== Warning ====================== |
@@ -46,6 +46,2 @@ "use client"; | ||
if (color.isGradient()) { | ||
// return color | ||
// .getColors() | ||
// .map((c) => `${c.color.toRgbString()} ${c.percent}%`) | ||
// .join(', '); | ||
return color.getColors().map((c, index) => { | ||
@@ -52,0 +48,0 @@ const inactive = activeIndex !== -1 && activeIndex !== index; |
import { unit } from '@ant-design/cssinjs'; | ||
import { genCompactItemStyle } from '../../style/compact-item'; | ||
import { genStyleHooks, mergeToken } from '../../theme/internal'; | ||
@@ -234,3 +235,5 @@ import genColorBlockStyle from './color-block'; | ||
}, genRtlStyle(token)) | ||
}]; | ||
}, genCompactItemStyle(token, { | ||
focusElCls: `${componentCls}-trigger-active` | ||
})]; | ||
}; | ||
@@ -237,0 +240,0 @@ export default genStyleHooks('ColorPicker', token => { |
@@ -51,3 +51,3 @@ import { unit } from '@ant-design/cssinjs'; | ||
fontSize: fontSizeSM, | ||
lineHeight: `${unit(controlHeightSM)}` | ||
lineHeight: unit(controlHeightSM) | ||
}, | ||
@@ -54,0 +54,0 @@ [`${antCls}-select-item-option-content`]: { |
@@ -25,3 +25,3 @@ import { unit } from '@ant-design/cssinjs'; | ||
// ======================== Slider ======================== | ||
[`${componentCls}-slider`]: [getTransBg(`${unit(colorPickerSliderHeight)}`, token.colorFillSecondary), { | ||
[`${componentCls}-slider`]: [getTransBg(unit(colorPickerSliderHeight), token.colorFillSecondary), { | ||
margin: 0, | ||
@@ -28,0 +28,0 @@ padding: 0, |
@@ -0,2 +1,3 @@ | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
const DataPickerPlacements = ['bottomLeft', 'bottomRight', 'topLeft', 'topRight']; | ||
export {}; |
@@ -11,2 +11,6 @@ import * as React from 'react'; | ||
dashed?: boolean; | ||
/** | ||
* @since 5.20.0 | ||
* @default solid | ||
*/ | ||
variant?: 'dashed' | 'dotted' | 'solid'; | ||
@@ -13,0 +17,0 @@ style?: React.CSSProperties; |
@@ -23,2 +23,3 @@ "use client"; | ||
import useStyle from './style'; | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
const SizeTypes = ['default', 'large']; | ||
@@ -25,0 +26,0 @@ const defaultPushState = { |
@@ -22,2 +22,3 @@ "use client"; | ||
import useStyle from './style'; | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
const Placements = ['topLeft', 'topCenter', 'topRight', 'bottomLeft', 'bottomCenter', 'bottomRight', 'top', 'bottom']; | ||
@@ -24,0 +25,0 @@ const Dropdown = props => { |
@@ -72,3 +72,3 @@ import { Keyframes, unit } from '@ant-design/cssinjs'; | ||
[groupPrefixCls]: Object.assign(Object.assign({}, resetComponent(token)), { | ||
zIndex: 99, | ||
zIndex: token.zIndexPopupBase, | ||
display: 'block', | ||
@@ -192,3 +192,3 @@ border: 'none', | ||
cursor: 'pointer', | ||
zIndex: 99, | ||
zIndex: token.zIndexPopupBase, | ||
// Do not remove the 'display: block' here. | ||
@@ -195,0 +195,0 @@ // Deleting it will cause marginBottom to become ineffective. |
@@ -23,2 +23,3 @@ "use client"; | ||
const NAME_SPLIT = '__SPLIT__'; | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
const ValidateStatuses = ['success', 'warning', 'error', 'validating', '']; | ||
@@ -25,0 +26,0 @@ // https://github.com/ant-design/ant-design/issues/46417 |
@@ -17,3 +17,5 @@ "use client"; | ||
import { useRowStyle } from './style'; | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
const RowAligns = ['top', 'middle', 'bottom', 'stretch']; | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
const RowJustify = ['start', 'end', 'center', 'space-around', 'space-between', 'space-evenly']; | ||
@@ -20,0 +22,0 @@ function useMergedPropByScreen(oriProp, screen) { |
@@ -162,3 +162,3 @@ import { unit } from '@ant-design/cssinjs'; | ||
}, | ||
[`${componentCls}`]: { | ||
[componentCls]: { | ||
width: '100%', | ||
@@ -253,3 +253,3 @@ marginBottom: 0, | ||
// Undo float for .ant-input-group .ant-input | ||
[`${componentCls}`]: { | ||
[componentCls]: { | ||
float: 'none' | ||
@@ -420,3 +420,3 @@ }, | ||
}, | ||
[`${componentCls}`]: { | ||
[componentCls]: { | ||
'&-prefix, &-suffix': { | ||
@@ -532,3 +532,3 @@ display: 'flex', | ||
[searchPrefixCls]: { | ||
[`${componentCls}`]: { | ||
[componentCls]: { | ||
'&:hover, &:focus': { | ||
@@ -535,0 +535,0 @@ borderColor: token.colorPrimaryHover, |
@@ -10,3 +10,3 @@ import { genStyleHooks, mergeToken } from '../../theme/internal'; | ||
return { | ||
[`${componentCls}`]: { | ||
[componentCls]: { | ||
display: 'inline-flex', | ||
@@ -13,0 +13,0 @@ alignItems: 'center', |
@@ -95,3 +95,3 @@ "use client"; | ||
mql.addEventListener('change', responsiveHandler); | ||
} catch (error) { | ||
} catch (_a) { | ||
mql.addListener(responsiveHandler); | ||
@@ -105,3 +105,3 @@ } | ||
mql === null || mql === void 0 ? void 0 : mql.removeEventListener('change', responsiveHandler); | ||
} catch (error) { | ||
} catch (_a) { | ||
mql === null || mql === void 0 ? void 0 : mql.removeListener(responsiveHandler); | ||
@@ -108,0 +108,0 @@ } |
@@ -16,3 +16,3 @@ import { unit } from '@ant-design/cssinjs'; | ||
return { | ||
[`${listBorderedCls}`]: { | ||
[listBorderedCls]: { | ||
border: `${unit(token.lineWidth)} ${token.lineType} ${token.colorBorder}`, | ||
@@ -50,3 +50,3 @@ borderRadius: borderRadiusLG, | ||
[`@media screen and (max-width:${screenMD}px)`]: { | ||
[`${componentCls}`]: { | ||
[componentCls]: { | ||
[`${componentCls}-item`]: { | ||
@@ -67,3 +67,3 @@ [`${componentCls}-item-action`]: { | ||
[`@media screen and (max-width: ${screenSM}px)`]: { | ||
[`${componentCls}`]: { | ||
[componentCls]: { | ||
[`${componentCls}-item`]: { | ||
@@ -119,3 +119,3 @@ flexWrap: 'wrap', | ||
return { | ||
[`${componentCls}`]: Object.assign(Object.assign({}, resetComponent(token)), { | ||
[componentCls]: Object.assign(Object.assign({}, resetComponent(token)), { | ||
position: 'relative', | ||
@@ -122,0 +122,0 @@ '*': { |
@@ -6,3 +6,3 @@ /* eslint-disable no-template-curly-in-string */ | ||
import TimePicker from '../time-picker/locale/az_AZ'; | ||
const typeTemplate = '${label}Hökmlü deyil${type}'; | ||
const typeTemplate = '${label} Hökmlü deyil ${type}'; | ||
const localeValues = { | ||
@@ -87,10 +87,10 @@ locale: 'az', | ||
defaultValidateMessages: { | ||
default: 'Sahə təsdiq xətası${label}', | ||
required: 'Xahiş edirik daxil olun${label}', | ||
enum: '${label}Onlardan biri olmalıdır[${enum}]', | ||
whitespace: '${label}Null xarakter ola bilməz', | ||
default: 'Sahə təsdiq xətası ${label}', | ||
required: 'Xahiş edirik daxil olun ${label}', | ||
enum: '${label} Onlardan biri olmalıdır[${enum}]', | ||
whitespace: '${label} Null xarakter ola bilməz', | ||
date: { | ||
format: '${label}Tarix formatı hökmlü deyil', | ||
parse: '${label}Tarixi döndərmək mümkün deyil', | ||
invalid: '${label}səhv tarixdir' | ||
format: '${label} Tarix formatı hökmlü deyil', | ||
parse: '${label} Tarixi döndərmək mümkün deyil', | ||
invalid: '${label} səhv tarixdir' | ||
}, | ||
@@ -113,21 +113,21 @@ types: { | ||
string: { | ||
len: '${label}Olmalıdır${len}işarələr', | ||
min: '${label}ən az${min}işarələr', | ||
max: '${label}ən çox${max}işarələr', | ||
range: '${label}Olmalıdır${min}-${max}hərflər arasında' | ||
len: '${label} Olmalıdır ${len} işarələr', | ||
min: '${label} ən az ${min} işarələr', | ||
max: '${label} ən çox ${max} işarələr', | ||
range: '${label} Olmalıdır ${min}-${max} hərflər arasında' | ||
}, | ||
number: { | ||
len: '${label}Bərabər olmalıdır${len}', | ||
min: '${label}Minimal dəyəri${min}', | ||
max: '${label}Maksimal qiymət:${max}', | ||
range: '${label}Olmalıdır${min}-${max}aralarında' | ||
len: '${label} Bərabər olmalıdır ${len}', | ||
min: '${label} Minimal dəyəri ${min}', | ||
max: '${label} Maksimal qiymət: ${max}', | ||
range: '${label} Olmalıdır ${min}-${max} aralarında' | ||
}, | ||
array: { | ||
len: 'Olmalıdır${len}parça${label}', | ||
min: 'ən az${min}parça${label}', | ||
max: 'ən çox${max}parça${label}', | ||
range: '${label}miqdarıOlmalıdır${min}-${max}aralarında' | ||
len: 'Olmalıdır ${len} parça ${label}', | ||
min: 'ən az ${min} parça ${label}', | ||
max: 'ən çox ${max} parça ${label}', | ||
range: '${label} miqdarıOlmalıdır ${min}-${max} aralarında' | ||
}, | ||
pattern: { | ||
mismatch: '${label}Şablona uyğun gəlmir${pattern}' | ||
mismatch: '${label} Şablona uyğun gəlmir ${pattern}' | ||
} | ||
@@ -134,0 +134,0 @@ } |
@@ -131,3 +131,3 @@ import { unit } from '@ant-design/cssinjs'; | ||
'': { | ||
[`${componentCls}`]: Object.assign(Object.assign({}, clearFix()), { | ||
[componentCls]: Object.assign(Object.assign({}, clearFix()), { | ||
// Hidden | ||
@@ -134,0 +134,0 @@ '&-hidden': { |
import type React from 'react'; | ||
import type { AliasToken, FullToken, GenerateStyle, GlobalToken, GenStyleFn, TokenWithCommonCls } from '../../theme/internal'; | ||
import type { AliasToken, FullToken, GenerateStyle, GenStyleFn, GlobalToken, TokenWithCommonCls } from '../../theme/internal'; | ||
/** Component only token. Which will handle additional calculation of alias token */ | ||
@@ -4,0 +4,0 @@ export interface ComponentToken { |
@@ -142,3 +142,3 @@ import { unit } from '@ant-design/cssinjs'; | ||
fontStyle: 'normal', | ||
lineHeight: `${unit(token.modalCloseBtnSize)}`, | ||
lineHeight: unit(token.modalCloseBtnSize), | ||
justifyContent: 'center', | ||
@@ -145,0 +145,0 @@ textTransform: 'none', |
import type { SharedComponentToken, SharedInputToken } from '../../input/style/token'; | ||
import type { FullToken, GetDefaultToken, GenStyleFn } from '../../theme/internal'; | ||
import type { FullToken, GenStyleFn, GetDefaultToken } from '../../theme/internal'; | ||
export interface ComponentToken { | ||
@@ -4,0 +4,0 @@ /** |
@@ -290,3 +290,3 @@ import { unit } from '@ant-design/cssinjs'; | ||
fontFamily: token.fontFamily, | ||
lineHeight: `${unit(token.itemSize)}`, | ||
lineHeight: unit(token.itemSize), | ||
textAlign: 'center', | ||
@@ -293,0 +293,0 @@ verticalAlign: 'middle', |
@@ -75,3 +75,3 @@ import { resetComponent, textEllipsis } from '../../style'; | ||
}, | ||
[`${selectItemCls}`]: Object.assign(Object.assign({}, genItemStyle(token)), { | ||
[selectItemCls]: Object.assign(Object.assign({}, genItemStyle(token)), { | ||
cursor: 'pointer', | ||
@@ -78,0 +78,0 @@ transition: `background ${token.motionDurationSlow} ease`, |
@@ -39,3 +39,3 @@ import { Keyframes, unit } from '@ant-design/cssinjs'; | ||
return { | ||
[`${skeletonAvatarCls}`]: Object.assign({ | ||
[skeletonAvatarCls]: Object.assign({ | ||
display: 'inline-block', | ||
@@ -63,3 +63,3 @@ verticalAlign: 'top', | ||
return { | ||
[`${skeletonInputCls}`]: Object.assign({ | ||
[skeletonInputCls]: Object.assign({ | ||
display: 'inline-block', | ||
@@ -86,3 +86,3 @@ verticalAlign: 'top', | ||
return { | ||
[`${skeletonImageCls}`]: Object.assign(Object.assign({ | ||
[skeletonImageCls]: Object.assign(Object.assign({ | ||
display: 'flex', | ||
@@ -141,3 +141,3 @@ alignItems: 'center', | ||
return Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({ | ||
[`${skeletonButtonCls}`]: Object.assign({ | ||
[skeletonButtonCls]: Object.assign({ | ||
display: 'inline-block', | ||
@@ -180,3 +180,3 @@ verticalAlign: 'top', | ||
return { | ||
[`${componentCls}`]: { | ||
[componentCls]: { | ||
display: 'table', | ||
@@ -189,3 +189,3 @@ width: '100%', | ||
// Avatar | ||
[`${skeletonAvatarCls}`]: Object.assign({ | ||
[skeletonAvatarCls]: Object.assign({ | ||
display: 'inline-block', | ||
@@ -206,3 +206,3 @@ verticalAlign: 'top', | ||
// Title | ||
[`${skeletonTitleCls}`]: { | ||
[skeletonTitleCls]: { | ||
width: '100%', | ||
@@ -217,3 +217,3 @@ height: titleHeight, | ||
// paragraph | ||
[`${skeletonParagraphCls}`]: { | ||
[skeletonParagraphCls]: { | ||
padding: 0, | ||
@@ -243,3 +243,3 @@ '> li': { | ||
// Title | ||
[`${skeletonTitleCls}`]: { | ||
[skeletonTitleCls]: { | ||
marginBlockStart: marginSM, | ||
@@ -259,6 +259,6 @@ [`+ ${skeletonParagraphCls}`]: { | ||
width: '100%', | ||
[`${skeletonButtonCls}`]: { | ||
[skeletonButtonCls]: { | ||
width: '100%' | ||
}, | ||
[`${skeletonInputCls}`]: { | ||
[skeletonInputCls]: { | ||
width: '100%' | ||
@@ -265,0 +265,0 @@ } |
@@ -19,2 +19,3 @@ "use client"; | ||
import usePercent from './usePercent'; | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
const SpinSizes = ['small', 'default', 'large']; | ||
@@ -21,0 +22,0 @@ // Render indicator |
@@ -6,2 +6,3 @@ import * as React from 'react'; | ||
} | ||
export default function Progress({ percent, prefixCls }: ProgressProps): React.JSX.Element | null; | ||
declare const Progress: React.FC<Readonly<ProgressProps>>; | ||
export default Progress; |
@@ -6,3 +6,25 @@ "use client"; | ||
import useLayoutEffect from "rc-util/es/hooks/useLayoutEffect"; | ||
export default function Progress(_ref) { | ||
const viewSize = 100; | ||
const borderWidth = viewSize / 5; | ||
const radius = viewSize / 2 - borderWidth / 2; | ||
const circumference = radius * 2 * Math.PI; | ||
const position = 50; | ||
const CustomCircle = props => { | ||
const { | ||
dotClassName, | ||
style, | ||
hasCircleCls | ||
} = props; | ||
return /*#__PURE__*/React.createElement("circle", { | ||
className: classNames(`${dotClassName}-circle`, { | ||
[`${dotClassName}-circle-bg`]: hasCircleCls | ||
}), | ||
r: radius, | ||
cx: position, | ||
cy: position, | ||
strokeWidth: borderWidth, | ||
style: style | ||
}); | ||
}; | ||
const Progress = _ref => { | ||
let { | ||
@@ -24,14 +46,2 @@ percent, | ||
const safePtg = Math.max(Math.min(percent, 100), 0); | ||
const viewSize = 100; | ||
const borderWidth = viewSize / 5; | ||
const radius = viewSize / 2 - borderWidth / 2; | ||
const circumference = radius * 2 * Math.PI; | ||
const renderCircle = (circleClassName, style) => ( /*#__PURE__*/React.createElement("circle", { | ||
className: classNames(circleClassName, `${dotClassName}-circle`), | ||
r: radius, | ||
cx: "50", | ||
cy: "50", | ||
strokeWidth: borderWidth, | ||
style: style | ||
})); | ||
// ===================== Render ===================== | ||
@@ -41,2 +51,6 @@ if (!render) { | ||
} | ||
const circleStyle = { | ||
strokeDashoffset: `${circumference / 4}`, | ||
strokeDasharray: `${circumference * safePtg / 100} ${circumference * (100 - safePtg) / 100}` | ||
}; | ||
return /*#__PURE__*/React.createElement("span", { | ||
@@ -51,6 +65,10 @@ className: classNames(holderClassName, `${dotClassName}-progress`, safePtg <= 0 && hideClassName) | ||
"aria-valuenow": safePtg | ||
}, renderCircle(`${dotClassName}-circle-bg`), renderCircle('', { | ||
strokeDasharray: `${circumference * safePtg / 100} ${circumference * (100 - safePtg) / 100}`, | ||
strokeDashoffset: `${circumference / 4}` | ||
}, /*#__PURE__*/React.createElement(CustomCircle, { | ||
dotClassName: dotClassName, | ||
hasCircleCls: true | ||
}), /*#__PURE__*/React.createElement(CustomCircle, { | ||
dotClassName: dotClassName, | ||
style: circleStyle | ||
}))); | ||
} | ||
}; | ||
export default Progress; |
@@ -20,3 +20,3 @@ import { Keyframes } from '@ant-design/cssinjs'; | ||
return { | ||
[`${componentCls}`]: Object.assign(Object.assign({}, resetComponent(token)), { | ||
[componentCls]: Object.assign(Object.assign({}, resetComponent(token)), { | ||
position: 'absolute', | ||
@@ -171,4 +171,4 @@ display: 'none', | ||
top: '50%', | ||
transform: 'translateY(-50%)', | ||
insetInlineStart: 0 | ||
transform: 'translate(-50%, -50%)', | ||
insetInlineStart: '50%' | ||
}, | ||
@@ -175,0 +175,0 @@ // dots |
@@ -15,3 +15,3 @@ import { resetComponent } from '../../style'; | ||
return { | ||
[`${componentCls}`]: Object.assign(Object.assign({}, resetComponent(token)), { | ||
[componentCls]: Object.assign(Object.assign({}, resetComponent(token)), { | ||
[`${componentCls}-title`]: { | ||
@@ -18,0 +18,0 @@ marginBottom: marginXXS, |
@@ -20,3 +20,3 @@ import { unit } from '@ant-design/cssinjs'; | ||
fontSize: customIconFontSize, | ||
lineHeight: `${unit(customIconSize)}` | ||
lineHeight: unit(customIconSize) | ||
} | ||
@@ -23,0 +23,0 @@ } |
@@ -97,3 +97,3 @@ import { unit } from '@ant-design/cssinjs'; | ||
fontFamily: token.fontFamily, | ||
lineHeight: `${unit(token.iconSize)}`, | ||
lineHeight: unit(token.iconSize), | ||
textAlign: 'center', | ||
@@ -131,3 +131,3 @@ borderRadius: token.iconSize, | ||
fontSize: token.fontSizeLG, | ||
lineHeight: `${unit(token.titleLineHeight)}`, | ||
lineHeight: unit(token.titleLineHeight), | ||
'&::after': { | ||
@@ -134,0 +134,0 @@ position: 'absolute', |
@@ -36,3 +36,3 @@ import { unit } from '@ant-design/cssinjs'; | ||
paddingInlineEnd: 0, | ||
lineHeight: `${unit(dotSize)}`, | ||
lineHeight: unit(dotSize), | ||
background: 'transparent', | ||
@@ -68,3 +68,3 @@ border: 0, | ||
height: dotCurrentSize, | ||
lineHeight: `${unit(dotCurrentSize)}`, | ||
lineHeight: unit(dotCurrentSize), | ||
background: 'none', | ||
@@ -71,0 +71,0 @@ marginInlineStart: token.calc(token.descriptionMaxWidth).sub(dotCurrentSize).div(2).equal() |
@@ -27,3 +27,3 @@ import { unit } from '@ant-design/cssinjs'; | ||
fontSize: fontSizeSM, | ||
lineHeight: `${unit(iconSizeSM)}`, | ||
lineHeight: unit(iconSizeSM), | ||
textAlign: 'center', | ||
@@ -35,3 +35,3 @@ borderRadius: iconSizeSM | ||
fontSize, | ||
lineHeight: `${unit(iconSizeSM)}`, | ||
lineHeight: unit(iconSizeSM), | ||
'&::after': { | ||
@@ -57,3 +57,3 @@ top: token.calc(iconSizeSM).div(2).equal() | ||
fontSize: iconSizeSM, | ||
lineHeight: `${unit(iconSizeSM)}`, | ||
lineHeight: unit(iconSizeSM), | ||
transform: 'none' | ||
@@ -60,0 +60,0 @@ } |
@@ -27,3 +27,3 @@ import { unit } from '@ant-design/cssinjs'; | ||
[`${componentCls}-item-title`]: { | ||
lineHeight: `${unit(iconSize)}` | ||
lineHeight: unit(iconSize) | ||
}, | ||
@@ -62,3 +62,3 @@ [`${componentCls}-item-description`]: { | ||
[`${componentCls}-item-title`]: { | ||
lineHeight: `${unit(iconSizeSM)}` | ||
lineHeight: unit(iconSizeSM) | ||
} | ||
@@ -65,0 +65,0 @@ } |
import type { CSSObject } from '@ant-design/cssinjs'; | ||
import type { AliasToken } from '../theme/interface'; | ||
import type { CSSUtil } from '../theme/internal'; | ||
import type { AliasToken } from '../theme/interface'; | ||
export interface ArrowToken { | ||
@@ -5,0 +5,0 @@ } |
@@ -235,3 +235,3 @@ import { unit } from '@ant-design/cssinjs'; | ||
height: trackHeight, | ||
lineHeight: `${unit(trackHeight)}`, | ||
lineHeight: unit(trackHeight), | ||
verticalAlign: 'middle', | ||
@@ -238,0 +238,0 @@ background: token.colorTextQuaternary, |
@@ -0,7 +1,8 @@ | ||
import type { AnyObject } from '../_util/type'; | ||
import type { ColumnType } from './interface'; | ||
export interface ColumnProps<RecordType> extends ColumnType<RecordType> { | ||
export interface ColumnProps<RecordType extends AnyObject = AnyObject> extends ColumnType<RecordType> { | ||
children?: null; | ||
} | ||
/** This is a syntactic sugar for `columns` prop. So HOC will not work on this. */ | ||
declare function Column<RecordType>(_: ColumnProps<RecordType>): null; | ||
declare const Column: <RecordType extends AnyObject>(_: ColumnProps<RecordType>) => null; | ||
export default Column; |
/* istanbul ignore next */ | ||
/** This is a syntactic sugar for `columns` prop. So HOC will not work on this. */ | ||
// eslint-disable-next-line no-unused-vars | ||
function Column(_) { | ||
return null; | ||
} | ||
const Column = _ => null; | ||
export default Column; |
import type * as React from 'react'; | ||
import type { AnyObject } from '../_util/type'; | ||
import type { ColumnProps } from './Column'; | ||
import type { ColumnType } from './interface'; | ||
export interface ColumnGroupProps<RecordType> extends Omit<ColumnType<RecordType>, 'children'> { | ||
export interface ColumnGroupProps<RecordType extends AnyObject = AnyObject> extends Omit<ColumnType<RecordType>, 'children'> { | ||
children: React.ReactElement<ColumnProps<RecordType>> | React.ReactElement<ColumnProps<RecordType>>[]; | ||
} | ||
/** This is a syntactic sugar for `columns` prop. So HOC will not work on this. */ | ||
declare function ColumnGroup<RecordType>(_: ColumnGroupProps<RecordType>): null; | ||
declare const ColumnGroup: <RecordType extends AnyObject>(_: ColumnGroupProps<RecordType>) => null; | ||
export default ColumnGroup; |
/* istanbul ignore next */ | ||
/** This is a syntactic sugar for `columns` prop. So HOC will not work on this. */ | ||
// eslint-disable-next-line no-unused-vars | ||
function ColumnGroup(_) { | ||
return null; | ||
} | ||
const ColumnGroup = _ => null; | ||
export default ColumnGroup; |
import * as React from 'react'; | ||
import type { AnyObject } from '../_util/type'; | ||
import type { TableLocale } from './interface'; | ||
interface DefaultExpandIconProps<RecordType> { | ||
interface DefaultExpandIconProps<RecordType extends AnyObject = AnyObject> { | ||
prefixCls: string; | ||
onExpand: (record: RecordType, e: React.MouseEvent<HTMLElement>) => void; | ||
record: RecordType; | ||
expanded: boolean; | ||
expandable: boolean; | ||
onExpand: (record: RecordType, e: React.MouseEvent<HTMLButtonElement, MouseEvent>) => void; | ||
} | ||
declare function renderExpandIcon(locale: TableLocale): <RecordType>({ prefixCls, onExpand, record, expanded, expandable, }: DefaultExpandIconProps<RecordType>) => React.JSX.Element; | ||
declare function renderExpandIcon(locale: TableLocale): <RecordType extends AnyObject = AnyObject>(props: DefaultExpandIconProps<RecordType>) => React.JSX.Element; | ||
export default renderExpandIcon; |
@@ -6,4 +6,4 @@ "use client"; | ||
function renderExpandIcon(locale) { | ||
return function expandIcon(_ref) { | ||
let { | ||
return props => { | ||
const { | ||
prefixCls, | ||
@@ -14,3 +14,3 @@ onExpand, | ||
expandable | ||
} = _ref; | ||
} = props; | ||
const iconPrefix = `${prefixCls}-row-expand-icon`; | ||
@@ -17,0 +17,0 @@ return /*#__PURE__*/React.createElement("button", { |
import * as React from 'react'; | ||
import type { AnyObject } from 'antd/es/_util/type'; | ||
import type { FieldDataNode } from 'rc-tree'; | ||
@@ -11,3 +12,3 @@ import type { FilterState } from '.'; | ||
export type TreeColumnFilterItem = ColumnFilterItem & FilterTreeDataNode; | ||
export interface FilterDropdownProps<RecordType> { | ||
export interface FilterDropdownProps<RecordType extends AnyObject = AnyObject> { | ||
tablePrefixCls: string; | ||
@@ -30,3 +31,3 @@ prefixCls: string; | ||
} | ||
declare function FilterDropdown<RecordType>(props: FilterDropdownProps<RecordType>): React.JSX.Element; | ||
declare const FilterDropdown: <RecordType extends AnyObject = AnyObject>(props: FilterDropdownProps<RecordType>) => React.JSX.Element; | ||
export default FilterDropdown; |
@@ -94,3 +94,3 @@ "use client"; | ||
} | ||
function FilterDropdown(props) { | ||
const FilterDropdown = props => { | ||
var _a, _b; | ||
@@ -455,3 +455,3 @@ const { | ||
}, filterIcon))); | ||
} | ||
}; | ||
export default FilterDropdown; |
import * as React from 'react'; | ||
import type { AnyObject } from '../../../_util/type'; | ||
import type { FilterSearchType, TableLocale } from '../../interface'; | ||
interface FilterSearchProps<RecordType = any> { | ||
interface FilterSearchProps<RecordType extends AnyObject = AnyObject> { | ||
value: string; | ||
@@ -10,3 +11,3 @@ onChange: (e: React.ChangeEvent<HTMLInputElement>) => void; | ||
} | ||
declare function FilterSearch<RecordType>({ value, onChange, filterSearch, tablePrefixCls, locale, }: FilterSearchProps<RecordType>): React.JSX.Element | null; | ||
declare const FilterSearch: <RecordType extends AnyObject = AnyObject>(props: FilterSearchProps<RecordType>) => React.JSX.Element | null; | ||
export default FilterSearch; |
@@ -6,10 +6,10 @@ "use client"; | ||
import Input from '../../../input'; | ||
function FilterSearch(_ref) { | ||
let { | ||
const FilterSearch = props => { | ||
const { | ||
value, | ||
onChange, | ||
filterSearch, | ||
tablePrefixCls, | ||
locale | ||
} = _ref; | ||
locale, | ||
onChange | ||
} = props; | ||
if (!filterSearch) { | ||
@@ -29,3 +29,3 @@ return null; | ||
})); | ||
} | ||
}; | ||
export default FilterSearch; |
import * as React from 'react'; | ||
export interface FilterDropdownMenuWrapperProps { | ||
children?: React.ReactNode; | ||
className?: string; | ||
} | ||
declare const FilterDropdownMenuWrapper: React.ForwardRefExoticComponent<FilterDropdownMenuWrapperProps & React.RefAttributes<HTMLDivElement>>; | ||
declare const FilterDropdownMenuWrapper: React.ForwardRefExoticComponent<FilterDropdownMenuWrapperProps & { | ||
children?: React.ReactNode | undefined; | ||
} & React.RefAttributes<HTMLDivElement>>; | ||
export default FilterDropdownMenuWrapper; |
@@ -0,4 +1,5 @@ | ||
import type { AnyObject } from '../../../_util/type'; | ||
import type { ColumnsType, ColumnType, FilterKey, FilterValue, GetPopupContainer, Key, TableLocale, TransformColumns } from '../../interface'; | ||
import { flattenKeys } from './FilterDropdown'; | ||
export interface FilterState<RecordType> { | ||
export interface FilterState<RecordType extends AnyObject = AnyObject> { | ||
column: ColumnType<RecordType>; | ||
@@ -9,4 +10,4 @@ key: Key; | ||
} | ||
export declare function getFilterData<RecordType>(data: RecordType[], filterStates: FilterState<RecordType>[], childrenColumnName: string): RecordType[]; | ||
export interface FilterConfig<RecordType> { | ||
export declare const getFilterData: <RecordType extends AnyObject = AnyObject>(data: RecordType[], filterStates: FilterState<RecordType>[], childrenColumnName: string) => RecordType[]; | ||
export interface FilterConfig<RecordType extends AnyObject = AnyObject> { | ||
prefixCls: string; | ||
@@ -20,8 +21,4 @@ dropdownPrefixCls: string; | ||
} | ||
declare function useFilter<RecordType>({ prefixCls, dropdownPrefixCls, mergedColumns: rawMergedColumns, onFilterChange, getPopupContainer, locale: tableLocale, rootClassName, }: FilterConfig<RecordType>): [ | ||
TransformColumns<RecordType>, | ||
FilterState<RecordType>[], | ||
Record<string, FilterValue | null> | ||
]; | ||
declare const useFilter: <RecordType extends AnyObject = AnyObject>(props: FilterConfig<RecordType>) => [TransformColumns<RecordType>, FilterState<RecordType>[], Record<string, FilterValue | null>]; | ||
export { flattenKeys }; | ||
export default useFilter; |
@@ -8,3 +8,3 @@ "use client"; | ||
import FilterDropdown, { flattenKeys } from './FilterDropdown'; | ||
function collectFilterStates(columns, init, pos) { | ||
const collectFilterStates = (columns, init, pos) => { | ||
let filterStates = []; | ||
@@ -42,3 +42,3 @@ (columns || []).forEach((column, index) => { | ||
return filterStates; | ||
} | ||
}; | ||
function injectFilter(prefixCls, dropdownPrefixCls, columns, filterStates, locale, triggerFilter, getPopupContainer, pos, rootClassName) { | ||
@@ -89,3 +89,3 @@ return columns.map((column, index) => { | ||
} | ||
function generateFilterInfo(filterStates) { | ||
const generateFilterInfo = filterStates => { | ||
const currentFilters = {}; | ||
@@ -113,5 +113,5 @@ filterStates.forEach(_ref2 => { | ||
return currentFilters; | ||
} | ||
export function getFilterData(data, filterStates, childrenColumnName) { | ||
return filterStates.reduce((currentData, filterState) => { | ||
}; | ||
export const getFilterData = (data, filterStates, childrenColumnName) => { | ||
const filterDatas = filterStates.reduce((currentData, filterState) => { | ||
const { | ||
@@ -140,3 +140,4 @@ column: { | ||
}, data); | ||
} | ||
return filterDatas; | ||
}; | ||
const getMergedColumns = rawMergedColumns => rawMergedColumns.flatMap(column => { | ||
@@ -148,4 +149,4 @@ if ('children' in column) { | ||
}); | ||
function useFilter(_ref3) { | ||
let { | ||
const useFilter = props => { | ||
const { | ||
prefixCls, | ||
@@ -158,3 +159,3 @@ dropdownPrefixCls, | ||
rootClassName | ||
} = _ref3; | ||
} = props; | ||
const warning = devUseWarning('Table'); | ||
@@ -170,6 +171,6 @@ const mergedColumns = React.useMemo(() => getMergedColumns(rawMergedColumns || []), [rawMergedColumns]); | ||
let filteredKeysIsAllControlled = true; | ||
collectedStates.forEach(_ref4 => { | ||
collectedStates.forEach(_ref3 => { | ||
let { | ||
filteredKeys | ||
} = _ref4; | ||
} = _ref3; | ||
if (filteredKeys !== undefined) { | ||
@@ -185,6 +186,6 @@ filteredKeysIsAllNotControlled = false; | ||
const keyList = (mergedColumns || []).map((column, index) => getColumnKey(column, getColumnPos(index))); | ||
return filterStates.filter(_ref5 => { | ||
return filterStates.filter(_ref4 => { | ||
let { | ||
key | ||
} = _ref5; | ||
} = _ref4; | ||
return keyList.includes(key); | ||
@@ -204,6 +205,6 @@ }).map(item => { | ||
const triggerFilter = filterState => { | ||
const newFilterStates = mergedFilterStates.filter(_ref6 => { | ||
const newFilterStates = mergedFilterStates.filter(_ref5 => { | ||
let { | ||
key | ||
} = _ref6; | ||
} = _ref5; | ||
return key !== filterState.key; | ||
@@ -217,4 +218,4 @@ }); | ||
return [transformColumns, mergedFilterStates, filters]; | ||
} | ||
}; | ||
export { flattenKeys }; | ||
export default useFilter; |
@@ -0,2 +1,4 @@ | ||
import type { AnyObject } from '../../_util/type'; | ||
import type { GetRowKey, Key } from '../interface'; | ||
export default function useLazyKVMap<RecordType>(data: readonly RecordType[], childrenColumnName: string, getRowKey: GetRowKey<RecordType>): ((key: Key) => RecordType)[]; | ||
declare const useLazyKVMap: <RecordType extends AnyObject = AnyObject>(data: readonly RecordType[], childrenColumnName: string, getRowKey: GetRowKey<RecordType>) => readonly [(key: Key) => RecordType]; | ||
export default useLazyKVMap; |
import * as React from 'react'; | ||
export default function useLazyKVMap(data, childrenColumnName, getRowKey) { | ||
const useLazyKVMap = (data, childrenColumnName, getRowKey) => { | ||
const mapCacheRef = React.useRef({}); | ||
function getRecordByKey(key) { | ||
var _a; | ||
if (!mapCacheRef.current || mapCacheRef.current.data !== data || mapCacheRef.current.childrenColumnName !== childrenColumnName || mapCacheRef.current.getRowKey !== getRowKey) { | ||
@@ -26,5 +27,6 @@ const kvMap = new Map(); | ||
} | ||
return mapCacheRef.current.kvMap.get(key); | ||
return (_a = mapCacheRef.current.kvMap) === null || _a === void 0 ? void 0 : _a.get(key); | ||
} | ||
return [getRecordByKey]; | ||
} | ||
}; | ||
export default useLazyKVMap; |
@@ -0,3 +1,4 @@ | ||
import type { AnyObject } from '../../_util/type'; | ||
import type { ColumnsType, ColumnTitleProps, ColumnType, Key, SorterResult, SorterTooltipProps, SortOrder, TableLocale, TransformColumns } from '../interface'; | ||
export interface SortState<RecordType> { | ||
export interface SortState<RecordType extends AnyObject = AnyObject> { | ||
column: ColumnType<RecordType>; | ||
@@ -8,4 +9,4 @@ key: Key; | ||
} | ||
export declare function getSortData<RecordType>(data: readonly RecordType[], sortStates: SortState<RecordType>[], childrenColumnName: string): RecordType[]; | ||
interface SorterConfig<RecordType> { | ||
export declare const getSortData: <RecordType extends AnyObject = AnyObject>(data: readonly RecordType[], sortStates: SortState<RecordType>[], childrenColumnName: string) => RecordType[]; | ||
interface SorterConfig<RecordType extends AnyObject = AnyObject> { | ||
prefixCls: string; | ||
@@ -18,8 +19,3 @@ mergedColumns: ColumnsType<RecordType>; | ||
} | ||
export default function useFilterSorter<RecordType>({ prefixCls, mergedColumns, onSorterChange, sortDirections, tableLocale, showSorterTooltip, }: SorterConfig<RecordType>): [ | ||
TransformColumns<RecordType>, | ||
SortState<RecordType>[], | ||
ColumnTitleProps<RecordType>, | ||
() => SorterResult<RecordType> | SorterResult<RecordType>[] | ||
]; | ||
export {}; | ||
declare const useFilterSorter: <RecordType extends AnyObject = AnyObject>(props: SorterConfig<RecordType>) => [TransformColumns<RecordType>, SortState<RecordType>[], ColumnTitleProps<RecordType>, () => SorterResult<RecordType> | SorterResult<RecordType>[]]; | ||
export default useFilterSorter; |
@@ -13,3 +13,3 @@ "use client"; | ||
const DESCEND = 'descend'; | ||
function getMultiplePriority(column) { | ||
const getMultiplePriority = column => { | ||
if (typeof column.sorter === 'object' && typeof column.sorter.multiple === 'number') { | ||
@@ -19,4 +19,4 @@ return column.sorter.multiple; | ||
return false; | ||
} | ||
function getSortFunction(sorter) { | ||
}; | ||
const getSortFunction = sorter => { | ||
if (typeof sorter === 'function') { | ||
@@ -29,4 +29,4 @@ return sorter; | ||
return false; | ||
} | ||
function nextSortDirection(sortDirections, current) { | ||
}; | ||
const nextSortDirection = (sortDirections, current) => { | ||
if (!current) { | ||
@@ -36,6 +36,6 @@ return sortDirections[0]; | ||
return sortDirections[sortDirections.indexOf(current) + 1]; | ||
} | ||
function collectSortStates(columns, init, pos) { | ||
}; | ||
const collectSortStates = (columns, init, pos) => { | ||
let sortStates = []; | ||
function pushState(column, columnPos) { | ||
const pushState = (column, columnPos) => { | ||
sortStates.push({ | ||
@@ -47,3 +47,3 @@ column, | ||
}); | ||
} | ||
}; | ||
(columns || []).forEach((column, index) => { | ||
@@ -73,5 +73,5 @@ const columnPos = getColumnPos(index, pos); | ||
return sortStates; | ||
} | ||
function injectSorter(prefixCls, columns, sorterStates, triggerSorter, defaultSortDirections, tableLocale, tableShowSorterTooltip, pos) { | ||
return (columns || []).map((column, index) => { | ||
}; | ||
const injectSorter = (prefixCls, columns, sorterStates, triggerSorter, defaultSortDirections, tableLocale, tableShowSorterTooltip, pos) => { | ||
const finalColumns = (columns || []).map((column, index) => { | ||
const columnPos = getColumnPos(index, pos); | ||
@@ -203,3 +203,4 @@ let newColumn = column; | ||
}); | ||
} | ||
return finalColumns; | ||
}; | ||
const stateToInfo = sorterStates => { | ||
@@ -237,3 +238,3 @@ const { | ||
}; | ||
export function getSortData(data, sortStates, childrenColumnName) { | ||
export const getSortData = (data, sortStates, childrenColumnName) => { | ||
const innerSorterStates = sortStates.slice().sort((a, b) => b.multiplePriority - a.multiplePriority); | ||
@@ -281,12 +282,12 @@ const cloneData = data.slice(); | ||
}); | ||
} | ||
export default function useFilterSorter(_ref4) { | ||
let { | ||
}; | ||
const useFilterSorter = props => { | ||
const { | ||
prefixCls, | ||
mergedColumns, | ||
onSorterChange, | ||
sortDirections, | ||
tableLocale, | ||
showSorterTooltip | ||
} = _ref4; | ||
showSorterTooltip, | ||
onSorterChange | ||
} = props; | ||
const [sortStates, setSortStates] = React.useState(collectSortStates(mergedColumns, true)); | ||
@@ -311,6 +312,6 @@ const getColumnKeys = (columns, pos) => { | ||
const mergedColumnsKeys = getColumnKeys(mergedColumns); | ||
return sortStates.filter(_ref5 => { | ||
return sortStates.filter(_ref4 => { | ||
let { | ||
key | ||
} = _ref5; | ||
} = _ref4; | ||
return mergedColumnsKeys.includes(key); | ||
@@ -352,7 +353,7 @@ }); | ||
var _a, _b; | ||
const sortColumns = mergedSorterStates.map(_ref6 => { | ||
const sortColumns = mergedSorterStates.map(_ref5 => { | ||
let { | ||
column, | ||
sortOrder | ||
} = _ref6; | ||
} = _ref5; | ||
return { | ||
@@ -375,6 +376,6 @@ column, | ||
} else { | ||
newSorterStates = [].concat(_toConsumableArray(mergedSorterStates.filter(_ref7 => { | ||
newSorterStates = [].concat(_toConsumableArray(mergedSorterStates.filter(_ref6 => { | ||
let { | ||
key | ||
} = _ref7; | ||
} = _ref6; | ||
return key !== sortState.key; | ||
@@ -389,2 +390,3 @@ })), [sortState]); | ||
return [transformColumns, mergedSorterStates, columnTitleSorterProps, getSorters]; | ||
} | ||
}; | ||
export default useFilterSorter; |
@@ -0,2 +1,4 @@ | ||
import type { AnyObject } from 'antd/es/_util/type'; | ||
import type { ColumnTitleProps, TransformColumns } from '../interface'; | ||
export default function useTitleColumns<RecordType>(columnTitleProps: ColumnTitleProps<RecordType>): [TransformColumns<RecordType>]; | ||
declare const useTitleColumns: <RecordType extends AnyObject = AnyObject>(columnTitleProps: ColumnTitleProps<RecordType>) => readonly [TransformColumns<RecordType>]; | ||
export default useTitleColumns; |
import * as React from 'react'; | ||
import { renderColumnTitle } from '../util'; | ||
function fillTitle(columns, columnTitleProps) { | ||
return columns.map(column => { | ||
const fillTitle = (columns, columnTitleProps) => { | ||
const finalColumns = columns.map(column => { | ||
const cloneColumn = Object.assign({}, column); | ||
@@ -12,6 +12,8 @@ cloneColumn.title = renderColumnTitle(column.title, columnTitleProps); | ||
}); | ||
} | ||
export default function useTitleColumns(columnTitleProps) { | ||
return finalColumns; | ||
}; | ||
const useTitleColumns = columnTitleProps => { | ||
const filledColumns = React.useCallback(columns => fillTitle(columns, columnTitleProps), [columnTitleProps]); | ||
return [filledColumns]; | ||
} | ||
}; | ||
export default useTitleColumns; |
@@ -46,3 +46,3 @@ import type * as React from 'react'; | ||
export type TableAction = (typeof TableActions)[number]; | ||
export type CompareFn<T> = (a: T, b: T, sortOrder?: SortOrder) => number; | ||
export type CompareFn<T = AnyObject> = (a: T, b: T, sortOrder?: SortOrder) => number; | ||
export interface ColumnFilterItem { | ||
@@ -53,3 +53,3 @@ text: React.ReactNode; | ||
} | ||
export interface ColumnTitleProps<RecordType> { | ||
export interface ColumnTitleProps<RecordType = AnyObject> { | ||
/** @deprecated Please use `sorterColumns` instead. */ | ||
@@ -65,3 +65,3 @@ sortOrder?: SortOrder; | ||
} | ||
export type ColumnTitle<RecordType> = React.ReactNode | ((props: ColumnTitleProps<RecordType>) => React.ReactNode); | ||
export type ColumnTitle<RecordType = AnyObject> = React.ReactNode | ((props: ColumnTitleProps<RecordType>) => React.ReactNode); | ||
export type FilterValue = (Key | boolean)[]; | ||
@@ -88,3 +88,3 @@ export type FilterKey = (string | number)[] | null; | ||
} | ||
export interface ColumnType<RecordType> extends Omit<RcColumnType<RecordType>, 'title'> { | ||
export interface ColumnType<RecordType = AnyObject> extends Omit<RcColumnType<RecordType>, 'title'> { | ||
title?: ColumnTitle<RecordType>; | ||
@@ -123,6 +123,6 @@ sorter?: boolean | CompareFn<RecordType> | { | ||
} | ||
export interface ColumnGroupType<RecordType> extends Omit<ColumnType<RecordType>, 'dataIndex'> { | ||
export interface ColumnGroupType<RecordType = AnyObject> extends Omit<ColumnType<RecordType>, 'dataIndex'> { | ||
children: ColumnsType<RecordType>; | ||
} | ||
export type ColumnsType<RecordType = any> = (ColumnGroupType<RecordType> | ColumnType<RecordType>)[]; | ||
export type ColumnsType<RecordType = AnyObject> = (ColumnGroupType<RecordType> | ColumnType<RecordType>)[]; | ||
export interface SelectionItem { | ||
@@ -133,5 +133,5 @@ key: string; | ||
} | ||
export type SelectionSelectFn<T> = (record: T, selected: boolean, selectedRows: T[], nativeEvent: Event) => void; | ||
export type SelectionSelectFn<T = AnyObject> = (record: T, selected: boolean, selectedRows: T[], nativeEvent: Event) => void; | ||
export type RowSelectMethod = 'all' | 'none' | 'invert' | 'single' | 'multiple'; | ||
export interface TableRowSelection<T> { | ||
export interface TableRowSelection<T = AnyObject> { | ||
/** Keep the selection keys in list even the key not exist in `dataSource` anymore */ | ||
@@ -164,8 +164,8 @@ preserveSelectedRowKeys?: boolean; | ||
} | ||
export type TransformColumns<RecordType> = (columns: ColumnsType<RecordType>) => ColumnsType<RecordType>; | ||
export interface TableCurrentDataSource<RecordType> { | ||
export type TransformColumns<RecordType = AnyObject> = (columns: ColumnsType<RecordType>) => ColumnsType<RecordType>; | ||
export interface TableCurrentDataSource<RecordType = AnyObject> { | ||
currentDataSource: RecordType[]; | ||
action: TableAction; | ||
} | ||
export interface SorterResult<RecordType> { | ||
export interface SorterResult<RecordType = AnyObject> { | ||
column?: ColumnType<RecordType>; | ||
@@ -172,0 +172,0 @@ order?: SortOrder; |
@@ -0,2 +1,3 @@ | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
const TableActions = ['paginate', 'sort', 'filter']; | ||
export {}; |
import type { TableProps as RcTableProps } from 'rc-table'; | ||
import type { AnyObject } from '../_util/type'; | ||
import type { SizeType } from '../config-provider/SizeContext'; | ||
@@ -6,7 +7,3 @@ import type { SpinProps } from '../spin'; | ||
export type { ColumnsType, TablePaginationConfig }; | ||
/** Same as `TableProps` but we need record parent render times */ | ||
export interface InternalTableProps<RecordType> extends TableProps<RecordType> { | ||
_renderTimes: number; | ||
} | ||
export interface TableProps<RecordType = any> extends Omit<RcTableProps<RecordType>, 'transformColumns' | 'internalHooks' | 'internalRefs' | 'data' | 'columns' | 'scroll' | 'emptyText'> { | ||
export interface TableProps<RecordType = AnyObject> extends Omit<RcTableProps<RecordType>, 'transformColumns' | 'internalHooks' | 'internalRefs' | 'data' | 'columns' | 'scroll' | 'emptyText'> { | ||
dropdownPrefixCls?: string; | ||
@@ -31,3 +28,7 @@ dataSource?: RcTableProps<RecordType>['data']; | ||
} | ||
/** Same as `TableProps` but we need record parent render times */ | ||
export interface InternalTableProps<RecordType extends AnyObject = AnyObject> extends TableProps<RecordType> { | ||
_renderTimes: number; | ||
} | ||
declare const _default: RefInternalTable; | ||
export default _default; |
/** | ||
* Same as `rc-table` but we modify trigger children update logic instead. | ||
*/ | ||
declare const _default: import("rc-table/lib/Table").ForwardGenericTable; | ||
export default _default; | ||
declare const RcTable: import("rc-table/lib/Table").ForwardGenericTable; | ||
export default RcTable; |
@@ -7,3 +7,3 @@ "use client"; | ||
*/ | ||
export default genTable((prev, next) => { | ||
const RcTable = genTable((prev, next) => { | ||
const { | ||
@@ -16,2 +16,3 @@ _renderTimes: prevRenderTimes | ||
return prevRenderTimes !== nextRenderTimes; | ||
}); | ||
}); | ||
export default RcTable; |
/** | ||
* Same as `rc-table` but we modify trigger children update logic instead. | ||
*/ | ||
declare const _default: import("rc-table/lib/VirtualTable").ForwardGenericVirtualTable; | ||
export default _default; | ||
declare const RcVirtualTable: import("rc-table/lib/VirtualTable").ForwardGenericVirtualTable; | ||
export default RcVirtualTable; |
@@ -7,3 +7,3 @@ "use client"; | ||
*/ | ||
export default genVirtualTable((prev, next) => { | ||
const RcVirtualTable = genVirtualTable((prev, next) => { | ||
const { | ||
@@ -16,2 +16,3 @@ _renderTimes: prevRenderTimes | ||
return prevRenderTimes !== nextRenderTimes; | ||
}); | ||
}); | ||
export default RcVirtualTable; |
@@ -227,2 +227,3 @@ import { unit } from '@ant-design/cssinjs'; | ||
}; | ||
const zIndexTableFixed = 2; | ||
// ============================== Export ============================== | ||
@@ -266,3 +267,2 @@ export default genStyleHooks('Table', token => { | ||
} = token; | ||
const zIndexTableFixed = 2; | ||
const tableToken = mergeToken(token, { | ||
@@ -294,3 +294,5 @@ tableFontSize: cellFontSize, | ||
zIndexTableFixed, | ||
zIndexTableSticky: zIndexTableFixed + 1, | ||
zIndexTableSticky: calc(zIndexTableFixed).add(1).equal({ | ||
unit: false | ||
}), | ||
tableFontSizeMiddle: cellFontSizeMD, | ||
@@ -297,0 +299,0 @@ tableFontSizeSmall: cellFontSizeSM, |
@@ -47,3 +47,5 @@ import { unit } from '@ant-design/cssinjs'; | ||
[`table tr th${componentCls}-selection-column${componentCls}-cell-fix-left`]: { | ||
zIndex: token.zIndexTableFixed + 1 | ||
zIndex: calc(token.zIndexTableFixed).add(1).equal({ | ||
unit: false | ||
}) | ||
}, | ||
@@ -50,0 +52,0 @@ [`table tr th${componentCls}-selection-column::after`]: { |
@@ -0,5 +1,6 @@ | ||
import type { AnyObject } from '../_util/type'; | ||
import type { ColumnTitle, ColumnTitleProps, ColumnType, Key } from './interface'; | ||
export declare function getColumnKey<RecordType>(column: ColumnType<RecordType>, defaultKey: string): Key; | ||
export declare const getColumnKey: <RecordType extends AnyObject = AnyObject>(column: ColumnType<RecordType>, defaultKey: string) => Key; | ||
export declare function getColumnPos(index: number, pos?: string): string; | ||
export declare function renderColumnTitle<RecordType>(title: ColumnTitle<RecordType>, props: ColumnTitleProps<RecordType>): import("react").ReactNode; | ||
export declare const renderColumnTitle: <RecordType extends AnyObject = AnyObject>(title: ColumnTitle<RecordType>, props: ColumnTitleProps<RecordType>) => import("react").ReactNode; | ||
/** | ||
@@ -13,2 +14,2 @@ * Safe get column title | ||
*/ | ||
export declare function safeColumnTitle<RecordType>(title: ColumnTitle<RecordType>, props: ColumnTitleProps<RecordType>): import("react").ReactNode; | ||
export declare const safeColumnTitle: <RecordType extends AnyObject = AnyObject>(title: ColumnTitle<RecordType>, props: ColumnTitleProps<RecordType>) => import("react").ReactNode; |
@@ -1,2 +0,2 @@ | ||
export function getColumnKey(column, defaultKey) { | ||
export const getColumnKey = (column, defaultKey) => { | ||
if ('key' in column && column.key !== undefined && column.key !== null) { | ||
@@ -9,7 +9,7 @@ return column.key; | ||
return defaultKey; | ||
} | ||
}; | ||
export function getColumnPos(index, pos) { | ||
return pos ? `${pos}-${index}` : `${index}`; | ||
} | ||
export function renderColumnTitle(title, props) { | ||
export const renderColumnTitle = (title, props) => { | ||
if (typeof title === 'function') { | ||
@@ -19,3 +19,3 @@ return title(props); | ||
return title; | ||
} | ||
}; | ||
/** | ||
@@ -29,6 +29,8 @@ * Safe get column title | ||
*/ | ||
export function safeColumnTitle(title, props) { | ||
export const safeColumnTitle = (title, props) => { | ||
const res = renderColumnTitle(title, props); | ||
if (Object.prototype.toString.call(res) === '[object Object]') return ''; | ||
if (Object.prototype.toString.call(res) === '[object Object]') { | ||
return ''; | ||
} | ||
return res; | ||
} | ||
}; |
@@ -20,3 +20,3 @@ import { unit } from '@ant-design/cssinjs'; | ||
boxShadowTertiary, | ||
tourZIndexPopup, | ||
zIndexPopup, | ||
colorBgElevated, | ||
@@ -37,3 +37,3 @@ fontWeightStrong, | ||
position: 'absolute', | ||
zIndex: tourZIndexPopup, | ||
zIndex: zIndexPopup, | ||
maxWidth: 'fit-content', | ||
@@ -40,0 +40,0 @@ visibility: 'visible', |
@@ -34,5 +34,5 @@ "use client"; | ||
import useStyle from './style'; | ||
const InternalTreeSelect = (_a, ref) => { | ||
var _b; | ||
var { | ||
const InternalTreeSelect = (props, ref) => { | ||
var _a; | ||
const { | ||
prefixCls: customizePrefixCls, | ||
@@ -67,4 +67,4 @@ size: customizeSize, | ||
tagRender | ||
} = _a, | ||
props = __rest(_a, ["prefixCls", "size", "disabled", "bordered", "className", "rootClassName", "treeCheckable", "multiple", "listHeight", "listItemHeight", "placement", "notFoundContent", "switcherIcon", "treeLine", "getPopupContainer", "popupClassName", "dropdownClassName", "treeIcon", "transitionName", "choiceTransitionName", "status", "treeExpandAction", "builtinPlacements", "dropdownMatchSelectWidth", "popupMatchSelectWidth", "allowClear", "variant", "dropdownStyle", "tagRender"]); | ||
} = props, | ||
restProps = __rest(props, ["prefixCls", "size", "disabled", "bordered", "className", "rootClassName", "treeCheckable", "multiple", "listHeight", "listItemHeight", "placement", "notFoundContent", "switcherIcon", "treeLine", "getPopupContainer", "popupClassName", "dropdownClassName", "treeIcon", "transitionName", "choiceTransitionName", "status", "treeExpandAction", "builtinPlacements", "dropdownMatchSelectWidth", "popupMatchSelectWidth", "allowClear", "variant", "dropdownStyle", "tagRender"]); | ||
const { | ||
@@ -105,3 +105,3 @@ getPopupContainer: getContextPopupContainer, | ||
const showSuffixIcon = useShowArrow(props.suffixIcon, props.showArrow); | ||
const mergedPopupMatchSelectWidth = (_b = popupMatchSelectWidth !== null && popupMatchSelectWidth !== void 0 ? popupMatchSelectWidth : dropdownMatchSelectWidth) !== null && _b !== void 0 ? _b : contextPopupMatchSelectWidth; | ||
const mergedPopupMatchSelectWidth = (_a = popupMatchSelectWidth !== null && popupMatchSelectWidth !== void 0 ? popupMatchSelectWidth : dropdownMatchSelectWidth) !== null && _a !== void 0 ? _a : contextPopupMatchSelectWidth; | ||
// ===================== Form ===================== | ||
@@ -120,3 +120,3 @@ const { | ||
clearIcon | ||
} = useIcons(Object.assign(Object.assign({}, props), { | ||
} = useIcons(Object.assign(Object.assign({}, restProps), { | ||
multiple: isMultiple, | ||
@@ -142,3 +142,3 @@ showSuffixIcon, | ||
// ==================== Render ===================== | ||
const selectProps = omit(props, ['suffixIcon', 'removeIcon', 'clearIcon', 'itemIcon', 'switcherIcon']); | ||
const selectProps = omit(restProps, ['suffixIcon', 'removeIcon', 'clearIcon', 'itemIcon', 'switcherIcon']); | ||
// ===================== Placement ===================== | ||
@@ -145,0 +145,0 @@ const memoizedPlacement = React.useMemo(() => { |
import type { CSSInterpolation, CSSObject } from '@ant-design/cssinjs'; | ||
import type { AliasToken, FullToken, GetDefaultToken, CSSUtil } from '../../theme/internal'; | ||
import type { AliasToken, CSSUtil, FullToken, GetDefaultToken } from '../../theme/internal'; | ||
export interface TreeSharedToken { | ||
@@ -4,0 +4,0 @@ /** |
@@ -110,3 +110,3 @@ import { Keyframes, unit } from '@ant-design/cssinjs'; | ||
// ===================== TreeNode ===================== | ||
[`${treeNodeCls}`]: { | ||
[treeNodeCls]: { | ||
display: 'flex', | ||
@@ -143,3 +143,3 @@ alignItems: 'flex-start', | ||
width: titleHeight, | ||
lineHeight: `${unit(titleHeight)}`, | ||
lineHeight: unit(titleHeight), | ||
textAlign: 'center', | ||
@@ -181,3 +181,3 @@ visibility: 'visible', | ||
margin: 0, | ||
lineHeight: `${unit(titleHeight)}`, | ||
lineHeight: unit(titleHeight), | ||
textAlign: 'center', | ||
@@ -187,7 +187,20 @@ cursor: 'pointer', | ||
transition: `all ${token.motionDurationSlow}`, | ||
borderRadius: token.borderRadius, | ||
'&-noop': { | ||
cursor: 'unset' | ||
}, | ||
[`&:not(${treeCls}-switcher-noop):hover`]: { | ||
'&:before': { | ||
pointerEvents: 'none', | ||
content: '""', | ||
width: titleHeight, | ||
height: titleHeight, | ||
position: 'absolute', | ||
left: { | ||
_skip_check_: true, | ||
value: 0 | ||
}, | ||
top: 0, | ||
borderRadius: token.borderRadius, | ||
transition: `all ${token.motionDurationSlow}` | ||
}, | ||
[`&:not(${treeCls}-switcher-noop):hover:before`]: { | ||
backgroundColor: token.colorBgTextHover | ||
@@ -246,3 +259,3 @@ }, | ||
color: 'inherit', | ||
lineHeight: `${unit(titleHeight)}`, | ||
lineHeight: unit(titleHeight), | ||
background: 'transparent', | ||
@@ -263,3 +276,3 @@ borderRadius: token.borderRadius, | ||
height: titleHeight, | ||
lineHeight: `${unit(titleHeight)}`, | ||
lineHeight: unit(titleHeight), | ||
textAlign: 'center', | ||
@@ -278,3 +291,3 @@ verticalAlign: 'top', | ||
[`${treeCls}-node-content-wrapper`]: Object.assign({ | ||
lineHeight: `${unit(titleHeight)}`, | ||
lineHeight: unit(titleHeight), | ||
userSelect: 'none' | ||
@@ -281,0 +294,0 @@ }, getDropIndicatorStyle(prefixCls, token)), |
@@ -34,2 +34,3 @@ "use client"; | ||
import EllipsisTooltip from './EllipsisTooltip'; | ||
import { getEleSize } from './util'; | ||
function wrapperDecorations(_ref, content) { | ||
@@ -210,3 +211,4 @@ let { | ||
if (enableEllipsis && cssEllipsis && textEle) { | ||
const currentEllipsis = cssLineClamp ? textEle.offsetHeight < textEle.scrollHeight : textEle.offsetWidth < textEle.scrollWidth; | ||
const [offsetWidth, offsetHeight] = getEleSize(textEle); | ||
const currentEllipsis = cssLineClamp ? offsetHeight < textEle.scrollHeight : offsetWidth < textEle.scrollWidth; | ||
if (isNativeEllipsis !== currentEllipsis) { | ||
@@ -213,0 +215,0 @@ setIsNativeEllipsis(currentEllipsis); |
export declare function toList<T>(val: T | T[]): T[]; | ||
export declare function getNode(dom: React.ReactNode, defaultNode: React.ReactNode, needDom?: boolean): import("react").ReactNode; | ||
/** | ||
* Get React of element with precision. | ||
* ref: https://github.com/ant-design/ant-design/issues/50143 | ||
*/ | ||
export declare function getEleSize(ele: HTMLElement): [width: number, height: number]; |
@@ -12,2 +12,20 @@ export function toList(val) { | ||
return dom || needDom && defaultNode; | ||
} | ||
/** | ||
* Get React of element with precision. | ||
* ref: https://github.com/ant-design/ant-design/issues/50143 | ||
*/ | ||
export function getEleSize(ele) { | ||
const rect = ele.getBoundingClientRect(); | ||
const { | ||
offsetWidth, | ||
offsetHeight | ||
} = ele; | ||
let returnWidth = offsetWidth; | ||
let returnHeight = offsetHeight; | ||
if (Math.abs(offsetWidth - rect.width) < 1 && Math.abs(offsetHeight - rect.height) < 1) { | ||
returnWidth = rect.width; | ||
returnHeight = rect.height; | ||
} | ||
return [returnWidth, returnHeight]; | ||
} |
@@ -187,3 +187,3 @@ "use client"; | ||
}); | ||
} catch (e) { | ||
} catch (_a) { | ||
clone = new Blob([originFileObj], { | ||
@@ -211,3 +211,3 @@ type: originFileObj.type | ||
} | ||
} catch (e) { | ||
} catch (_a) { | ||
/* do nothing */ | ||
@@ -214,0 +214,0 @@ } |
@@ -1,1 +0,1 @@ | ||
{"Upload":{"global":["fontSizeHeading3","fontHeight","lineWidth","controlHeightLG","colorTextDisabled","colorText","fontSize","lineHeight","fontFamily","colorFillAlter","colorBorder","borderRadiusLG","motionDurationSlow","padding","lineWidthFocus","colorPrimaryBorder","colorPrimaryHover","margin","colorPrimary","marginXXS","colorTextHeading","fontSizeLG","colorTextDescription","paddingXS","lineType","paddingSM","fontSizeHeading2","colorError","colorErrorBg","colorTextLightSolid","marginXS","colorBgMask","marginXL","fontHeightSM","controlItemBgHover","motionEaseInOutCirc","motionDurationMid","motionEaseInOut"],"component":{"actionsColor":"rgba(0, 0, 0, 0.45)"}},"Form":{"global":["colorText","fontSize","lineHeight","fontFamily","marginLG","colorTextDescription","fontSizeLG","lineWidth","lineType","colorBorder","controlOutlineWidth","controlOutline","paddingSM","controlHeightSM","controlHeightLG","colorError","colorWarning","marginXXS","controlHeight","motionDurationMid","motionEaseOut","motionEaseOutBack","colorSuccess","colorPrimary","motionDurationSlow","motionEaseInOut","margin","screenXSMax","screenSMMax","screenMDMax","screenLGMax"],"component":{"labelRequiredMarkColor":"#ff4d4f","labelColor":"rgba(0, 0, 0, 0.88)","labelFontSize":14,"labelHeight":32,"labelColonMarginInlineStart":2,"labelColonMarginInlineEnd":8,"itemMarginBottom":24,"verticalLabelPadding":"0 0 8px","verticalLabelMargin":0,"inlineItemMarginBottom":0}},"FloatButton":{"global":["colorTextLightSolid","colorBgElevated","controlHeightLG","marginXXL","marginLG","fontSize","fontSizeIcon","controlItemBgHover","paddingXXS","margin","borderRadiusLG","borderRadiusSM","colorText","lineHeight","fontFamily","lineWidth","lineType","colorSplit","boxShadowSecondary","motionDurationMid","colorFillContent","fontSizeLG","fontSizeSM","colorPrimary","colorPrimaryHover","motionDurationSlow","motionEaseInOutCirc"],"component":{"dotOffsetInCircle":5.857864376269049,"dotOffsetInSquare":2.3431457505076194}},"Flex":{"global":["paddingXS","padding","paddingLG"],"component":{}},"Empty":{"global":["controlHeightLG","margin","marginXS","marginXL","fontSize","lineHeight","opacityImage","colorTextDescription"],"component":{}},"Dropdown":{"global":["marginXXS","sizePopupArrow","paddingXXS","motionDurationMid","fontSize","colorTextDisabled","fontSizeIcon","controlPaddingHorizontal","colorBgElevated","boxShadowPopoverArrow","borderRadiusXS","colorText","lineHeight","fontFamily","borderRadiusLG","boxShadowSecondary","lineWidthFocus","colorPrimaryBorder","colorTextDescription","marginXS","fontSizeSM","borderRadiusSM","controlItemBgHover","colorPrimary","controlItemBgActive","controlItemBgActiveHover","colorSplit","paddingXS","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc","colorError","colorTextLightSolid"],"component":{"zIndexPopup":1050,"paddingBlock":5,"arrowOffsetHorizontal":12,"arrowOffsetVertical":8,"arrowShadowWidth":8.970562748477143,"arrowPath":"path('M 0 8 A 4 4 0 0 0 2.82842712474619 6.82842712474619 L 6.585786437626905 3.0710678118654755 A 2 2 0 0 1 9.414213562373096 3.0710678118654755 L 13.17157287525381 6.82842712474619 A 4 4 0 0 0 16 8 Z')","arrowPolygon":"polygon(1.6568542494923806px 100%, 50% 1.6568542494923806px, 14.34314575050762px 100%, 1.6568542494923806px 100%)"}},"Drawer":{"global":["borderRadiusSM","colorBgMask","colorBgElevated","motionDurationSlow","motionDurationMid","paddingXS","padding","paddingLG","fontSizeLG","lineHeightLG","lineWidth","lineType","colorSplit","marginXS","colorIcon","colorIconHover","colorBgTextHover","colorBgTextActive","colorText","fontWeightStrong","boxShadowDrawerLeft","boxShadowDrawerRight","boxShadowDrawerUp","boxShadowDrawerDown","lineWidthFocus","colorPrimaryBorder"],"component":{"zIndexPopup":1000,"footerPaddingBlock":8,"footerPaddingInline":16}},"Select":{"global":["paddingSM","controlHeight","colorText","fontSize","lineHeight","fontFamily","motionDurationMid","motionEaseInOut","colorTextPlaceholder","fontSizeIcon","colorTextQuaternary","motionDurationSlow","colorTextTertiary","paddingXS","controlPaddingHorizontalSM","lineWidth","borderRadius","controlHeightSM","borderRadiusSM","fontSizeLG","borderRadiusLG","borderRadiusXS","controlHeightLG","controlPaddingHorizontal","paddingXXS","colorIcon","colorIconHover","colorBgElevated","boxShadowSecondary","colorTextDescription","fontSizeSM","colorPrimary","colorBgContainerDisabled","colorTextDisabled","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc","colorBorder","colorPrimaryHover","controlOutline","controlOutlineWidth","lineType","colorError","colorErrorHover","colorErrorOutline","colorWarning","colorWarningHover","colorWarningOutline","colorFillTertiary","colorFillSecondary","colorErrorBg","colorErrorBgHover","colorWarningBg","colorWarningBgHover","colorBgContainer","colorSplit"],"component":{"INTERNAL_FIXED_ITEM_MARGIN":2,"zIndexPopup":1050,"optionSelectedColor":"rgba(0, 0, 0, 0.88)","optionSelectedFontWeight":600,"optionSelectedBg":"#e6f4ff","optionActiveBg":"rgba(0, 0, 0, 0.04)","optionPadding":"5px 12px","optionFontSize":14,"optionLineHeight":1.5714285714285714,"optionHeight":32,"selectorBg":"#ffffff","clearBg":"#ffffff","singleItemHeightLG":40,"multipleItemBg":"rgba(0, 0, 0, 0.06)","multipleItemBorderColor":"transparent","multipleItemHeight":24,"multipleItemHeightSM":16,"multipleItemHeightLG":32,"multipleSelectorBgDisabled":"rgba(0, 0, 0, 0.04)","multipleItemColorDisabled":"rgba(0, 0, 0, 0.25)","multipleItemBorderColorDisabled":"transparent","showArrowPaddingInlineEnd":18}},"Checkbox":{"global":["controlInteractiveSize","colorText","fontSize","lineHeight","fontFamily","marginXS","borderRadiusSM","lineWidthFocus","colorPrimaryBorder","colorBgContainer","lineWidth","lineType","colorBorder","motionDurationSlow","lineWidthBold","colorWhite","motionDurationFast","motionEaseInBack","paddingXS","colorPrimary","colorPrimaryHover","motionDurationMid","motionEaseOutBack","fontSizeLG","colorBgContainerDisabled","colorTextDisabled"],"component":{}},"Cascader":{"global":["controlInteractiveSize","colorText","fontSize","lineHeight","fontFamily","marginXS","borderRadiusSM","lineWidthFocus","colorPrimaryBorder","colorBgContainer","lineWidth","lineType","colorBorder","motionDurationSlow","lineWidthBold","colorWhite","motionDurationFast","motionEaseInBack","paddingXS","colorPrimary","colorPrimaryHover","motionDurationMid","motionEaseOutBack","fontSizeLG","colorBgContainerDisabled","colorTextDisabled","colorSplit","controlItemBgHover","paddingXXS","colorTextDescription","fontSizeIcon","colorHighlight"],"component":{"controlWidth":184,"controlItemWidth":111,"dropdownHeight":180,"optionSelectedBg":"#e6f4ff","optionSelectedFontWeight":600,"optionPadding":"5px 12px","menuPadding":4}},"Segmented":{"global":["lineWidth","controlPaddingHorizontal","controlPaddingHorizontalSM","controlHeight","controlHeightLG","controlHeightSM","colorText","fontSize","lineHeight","fontFamily","borderRadius","motionDurationMid","motionEaseInOut","borderRadiusSM","boxShadowTertiary","marginSM","paddingXXS","borderRadiusLG","fontSizeLG","borderRadiusXS","colorTextDisabled","motionDurationSlow"],"component":{"trackPadding":2,"trackBg":"#f5f5f5","itemColor":"rgba(0, 0, 0, 0.65)","itemHoverColor":"rgba(0, 0, 0, 0.88)","itemHoverBg":"rgba(0, 0, 0, 0.06)","itemSelectedBg":"#ffffff","itemActiveBg":"rgba(0, 0, 0, 0.15)","itemSelectedColor":"rgba(0, 0, 0, 0.88)"}},"Result":{"global":["colorInfo","colorError","colorSuccess","colorWarning","lineHeightHeading3","padding","paddingXL","paddingXS","paddingLG","marginXS","lineHeight","colorTextHeading","colorTextDescription","colorFillAlter"],"component":{"titleFontSize":24,"subtitleFontSize":14,"iconFontSize":72,"extraMargin":"24px 0 0 0"}},"Rate":{"global":["colorText","fontSize","lineHeight","fontFamily","marginXS","motionDurationMid","lineWidth"],"component":{"starColor":"#fadb14","starSize":20,"starHoverScale":"scale(1.1)","starBg":"rgba(0, 0, 0, 0.06)"}},"Radio":{"global":["controlOutline","controlOutlineWidth","colorText","fontSize","lineHeight","fontFamily","colorPrimary","motionDurationSlow","motionDurationMid","motionEaseInOutCirc","colorBgContainer","colorBorder","lineWidth","colorBgContainerDisabled","colorTextDisabled","paddingXS","lineType","lineWidthFocus","colorPrimaryBorder","controlHeight","fontSizeLG","controlHeightLG","controlHeightSM","borderRadius","borderRadiusSM","borderRadiusLG","colorPrimaryHover","colorPrimaryActive"],"component":{"radioSize":16,"dotSize":8,"dotColorDisabled":"rgba(0, 0, 0, 0.25)","buttonSolidCheckedColor":"#fff","buttonSolidCheckedBg":"#1677ff","buttonSolidCheckedHoverBg":"#4096ff","buttonSolidCheckedActiveBg":"#0958d9","buttonBg":"#ffffff","buttonCheckedBg":"#ffffff","buttonColor":"rgba(0, 0, 0, 0.88)","buttonCheckedBgDisabled":"rgba(0, 0, 0, 0.15)","buttonCheckedColorDisabled":"rgba(0, 0, 0, 0.25)","buttonPaddingInline":15,"wrapperMarginInlineEnd":8,"radioColor":"#1677ff","radioBgColor":"#ffffff"}},"QRCode":{"global":["colorText","lineWidth","lineType","colorSplit","fontSize","lineHeight","fontFamily","paddingSM","colorWhite","borderRadiusLG","marginXS","controlHeight"],"component":{"QRCodeMaskBackgroundColor":"rgba(255, 255, 255, 0.96)"}},"Carousel":{"global":["colorText","fontSize","lineHeight","fontFamily","motionDurationSlow","colorBgContainer","marginXXS"],"component":{"arrowSize":16,"arrowOffset":8,"dotWidth":16,"dotHeight":3,"dotGap":4,"dotOffset":12,"dotWidthActive":24,"dotActiveWidth":24}},"Card":{"global":["boxShadowCard","padding","paddingLG","fontSize","colorBorderSecondary","boxShadowTertiary","colorText","lineHeight","fontFamily","colorBgContainer","borderRadiusLG","colorTextHeading","fontWeightStrong","lineWidth","lineType","motionDurationMid","colorTextDescription","colorPrimary","fontHeight","marginXXS","marginXS","fontSizeLG","colorFillAlter"],"component":{"headerBg":"transparent","headerFontSize":16,"headerFontSizeSM":14,"headerHeight":56,"headerHeightSM":38,"actionsBg":"#ffffff","actionsLiMargin":"12px 0","tabsMarginBottom":-17,"extraColor":"rgba(0, 0, 0, 0.88)"}},"Calendar":{"global":["controlHeightLG","paddingXXS","padding","controlHeightSM","fontHeightSM","marginXS","lineWidth","paddingSM","paddingXS","colorBgContainer","lineType","borderRadiusLG","colorPrimary","colorTextHeading","colorSplit","colorIcon","motionDurationMid","colorIconHover","fontWeightStrong","colorTextDisabled","colorText","fontSize","motionDurationSlow","borderRadiusSM","colorTextLightSolid","controlItemBgActive","marginXXS","colorFillSecondary","colorTextTertiary","lineHeight","fontFamily","controlItemBgHover","lineWidthBold","screenXS"],"component":{"fullBg":"#ffffff","fullPanelBg":"#ffffff","itemActiveBg":"#e6f4ff","yearControlWidth":80,"monthControlWidth":70,"miniContentHeight":256,"INTERNAL_FIXED_ITEM_MARGIN":2,"cellHoverBg":"rgba(0, 0, 0, 0.04)","cellActiveWithRangeBg":"#e6f4ff","cellHoverWithRangeBg":"#c8dfff","cellRangeBorderColor":"#7cb3ff","cellBgDisabled":"rgba(0, 0, 0, 0.04)","timeColumnWidth":56,"timeColumnHeight":224,"timeCellHeight":28,"cellWidth":36,"cellHeight":24,"textHeight":40,"withoutTimeCellHeight":66,"multipleItemBg":"rgba(0, 0, 0, 0.06)","multipleItemBorderColor":"transparent","multipleItemHeight":24,"multipleItemHeightSM":16,"multipleItemHeightLG":32,"multipleSelectorBgDisabled":"rgba(0, 0, 0, 0.04)","multipleItemColorDisabled":"rgba(0, 0, 0, 0.25)","multipleItemBorderColorDisabled":"transparent"}},"Typography":{"global":["colorText","lineHeight","colorTextDescription","colorSuccess","colorWarning","colorError","colorErrorActive","colorErrorHover","colorTextDisabled","fontSizeHeading1","lineHeightHeading1","colorTextHeading","fontWeightStrong","fontSizeHeading2","lineHeightHeading2","fontSizeHeading3","lineHeightHeading3","fontSizeHeading4","lineHeightHeading4","fontSizeHeading5","lineHeightHeading5","fontFamilyCode","colorLink","motionDurationSlow","colorLinkHover","colorLinkActive","linkDecoration","linkHoverDecoration","marginXXS","paddingSM","marginXS","fontSize"],"component":{"titleMarginTop":"1.2em","titleMarginBottom":"0.5em"}},"TreeSelect":{"global":["colorBgElevated","paddingXS","colorText","fontSize","lineHeight","fontFamily","borderRadius","motionDurationSlow","lineWidthFocus","colorPrimaryBorder","colorPrimary","colorTextDisabled","controlItemBgHover","colorBgTextHover","colorBorder","marginXXS","motionDurationMid","lineWidthBold","controlInteractiveSize","marginXS","borderRadiusSM","colorBgContainer","lineWidth","lineType","colorWhite","motionDurationFast","motionEaseInBack","colorPrimaryHover","motionEaseOutBack","fontSizeLG","colorBgContainerDisabled"],"component":{"titleHeight":24,"nodeHoverBg":"rgba(0, 0, 0, 0.04)","nodeSelectedBg":"#e6f4ff"}},"Tree":{"global":["controlInteractiveSize","colorText","fontSize","lineHeight","fontFamily","marginXS","borderRadiusSM","lineWidthFocus","colorPrimaryBorder","colorBgContainer","lineWidth","lineType","colorBorder","motionDurationSlow","lineWidthBold","colorWhite","motionDurationFast","motionEaseInBack","paddingXS","colorPrimary","colorPrimaryHover","motionDurationMid","motionEaseOutBack","fontSizeLG","colorBgContainerDisabled","colorTextDisabled","borderRadius","controlItemBgHover","colorBgTextHover","marginXXS","motionEaseInOut"],"component":{"titleHeight":24,"nodeHoverBg":"rgba(0, 0, 0, 0.04)","nodeSelectedBg":"#e6f4ff","directoryNodeSelectedColor":"#fff","directoryNodeSelectedBg":"#1677ff"}},"Transfer":{"global":["marginXS","marginXXS","fontSizeIcon","colorBgContainerDisabled","colorText","fontSize","lineHeight","fontFamily","colorBorder","colorSplit","lineWidth","controlItemBgActive","colorTextDisabled","paddingSM","lineType","motionDurationSlow","controlItemBgHover","borderRadiusLG","colorBgContainer","controlItemBgActiveHover","colorLinkHover","paddingXS","controlHeightLG","colorError","colorWarning"],"component":{"listWidth":180,"listHeight":200,"listWidthLG":250,"headerHeight":40,"itemHeight":32,"itemPaddingBlock":5,"transferHeaderVerticalPadding":9}},"Divider":{"global":["margin","marginLG","colorSplit","lineWidth","colorText","fontSize","lineHeight","fontFamily","colorTextHeading","fontSizeLG"],"component":{"textPaddingInline":"1em","orientationMargin":0.05,"verticalMarginInline":8}},"Descriptions":{"global":["colorText","fontSize","lineHeight","fontFamily","lineWidth","lineType","colorSplit","padding","paddingLG","colorTextSecondary","paddingSM","paddingXS","fontWeightStrong","fontSizeLG","lineHeightLG","borderRadiusLG","colorTextTertiary"],"component":{"labelBg":"rgba(0, 0, 0, 0.02)","titleColor":"rgba(0, 0, 0, 0.88)","titleMarginBottom":20,"itemPaddingBottom":16,"itemPaddingEnd":16,"colonMarginRight":8,"colonMarginLeft":2,"contentColor":"rgba(0, 0, 0, 0.88)","extraColor":"rgba(0, 0, 0, 0.88)"}},"DatePicker":{"global":["paddingXXS","controlHeightLG","padding","paddingSM","controlHeight","lineWidth","colorPrimary","colorPrimaryBorder","lineType","colorSplit","colorTextDisabled","colorBorder","borderRadius","motionDurationMid","colorTextPlaceholder","fontSizeLG","controlHeightSM","paddingXS","marginXS","colorTextDescription","lineWidthBold","motionDurationSlow","sizePopupArrow","colorBgElevated","borderRadiusLG","boxShadowSecondary","borderRadiusSM","boxShadowPopoverArrow","fontHeight","fontHeightLG","lineHeightLG","colorText","fontSize","lineHeight","fontFamily","colorBgContainer","colorTextHeading","colorIcon","colorIconHover","fontWeightStrong","colorTextLightSolid","controlItemBgActive","marginXXS","colorFillSecondary","colorTextTertiary","borderRadiusXS","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc","colorBgContainerDisabled","colorError","colorErrorBorderHover","colorWarning","colorWarningBorderHover","colorFillTertiary","colorErrorBg","colorErrorBgHover","colorErrorText","colorWarningBg","colorWarningBgHover","colorWarningText"],"component":{"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7,"paddingInline":11,"paddingInlineSM":7,"paddingInlineLG":11,"addonBg":"rgba(0, 0, 0, 0.02)","activeBorderColor":"#1677ff","hoverBorderColor":"#4096ff","activeShadow":"0 0 0 2px rgba(5, 145, 255, 0.1)","errorActiveShadow":"0 0 0 2px rgba(255, 38, 5, 0.06)","warningActiveShadow":"0 0 0 2px rgba(255, 215, 5, 0.1)","hoverBg":"#ffffff","activeBg":"#ffffff","inputFontSize":14,"inputFontSizeLG":16,"inputFontSizeSM":14,"INTERNAL_FIXED_ITEM_MARGIN":2,"cellHoverBg":"rgba(0, 0, 0, 0.04)","cellActiveWithRangeBg":"#e6f4ff","cellHoverWithRangeBg":"#c8dfff","cellRangeBorderColor":"#7cb3ff","cellBgDisabled":"rgba(0, 0, 0, 0.04)","timeColumnWidth":56,"timeColumnHeight":224,"timeCellHeight":28,"cellWidth":36,"cellHeight":24,"textHeight":40,"withoutTimeCellHeight":66,"multipleItemBg":"rgba(0, 0, 0, 0.06)","multipleItemBorderColor":"transparent","multipleItemHeight":24,"multipleItemHeightSM":16,"multipleItemHeightLG":32,"multipleSelectorBgDisabled":"rgba(0, 0, 0, 0.04)","multipleItemColorDisabled":"rgba(0, 0, 0, 0.25)","multipleItemBorderColorDisabled":"transparent","arrowShadowWidth":8.970562748477143,"arrowPath":"path('M 0 8 A 4 4 0 0 0 2.82842712474619 6.82842712474619 L 6.585786437626905 3.0710678118654755 A 2 2 0 0 1 9.414213562373096 3.0710678118654755 L 13.17157287525381 6.82842712474619 A 4 4 0 0 0 16 8 Z')","arrowPolygon":"polygon(1.6568542494923806px 100%, 50% 1.6568542494923806px, 14.34314575050762px 100%, 1.6568542494923806px 100%)","presetsWidth":120,"presetsMaxWidth":200,"zIndexPopup":1050}},"Button":{"global":["marginXS","lineWidth","lineType","motionDurationMid","motionEaseInOut","colorText","lineWidthFocus","colorPrimaryBorder","controlHeight","borderRadius","opacityLoading","motionDurationSlow","controlHeightSM","paddingXS","borderRadiusSM","controlHeightLG","borderRadiusLG","colorTextDisabled","colorBgContainerDisabled","colorBorder","colorError","colorErrorHover","colorErrorBorderHover","colorErrorActive","colorPrimary","colorTextLightSolid","colorPrimaryHover","colorPrimaryActive","colorLink","colorLinkHover","colorLinkActive","colorBgTextActive","colorErrorBg","colorErrorBgActive","colorBgContainer","fontSize"],"component":{"fontWeight":400,"defaultShadow":"0 2px 0 rgba(0, 0, 0, 0.02)","primaryShadow":"0 2px 0 rgba(5, 145, 255, 0.1)","dangerShadow":"0 2px 0 rgba(255, 38, 5, 0.06)","primaryColor":"#fff","dangerColor":"#fff","borderColorDisabled":"#d9d9d9","defaultGhostColor":"#ffffff","ghostBg":"transparent","defaultGhostBorderColor":"#ffffff","paddingInline":15,"paddingInlineLG":15,"paddingInlineSM":7,"onlyIconSize":16,"onlyIconSizeSM":14,"onlyIconSizeLG":18,"groupBorderColor":"#4096ff","linkHoverBg":"transparent","textHoverBg":"rgba(0, 0, 0, 0.06)","defaultColor":"rgba(0, 0, 0, 0.88)","defaultBg":"#ffffff","defaultBorderColor":"#d9d9d9","defaultBorderColorDisabled":"#d9d9d9","defaultHoverBg":"#ffffff","defaultHoverColor":"#4096ff","defaultHoverBorderColor":"#4096ff","defaultActiveBg":"#ffffff","defaultActiveColor":"#0958d9","defaultActiveBorderColor":"#0958d9","contentFontSize":14,"contentFontSizeSM":14,"contentFontSizeLG":16,"contentLineHeight":1.5714285714285714,"contentLineHeightSM":1.5714285714285714,"contentLineHeightLG":1.5,"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7}},"Breadcrumb":{"global":["colorText","fontSize","lineHeight","fontFamily","motionDurationMid","paddingXXS","borderRadiusSM","fontHeight","marginXXS","colorBgTextHover","lineWidthFocus","colorPrimaryBorder","fontSizeIcon"],"component":{"itemColor":"rgba(0, 0, 0, 0.45)","lastItemColor":"rgba(0, 0, 0, 0.88)","iconFontSize":14,"linkColor":"rgba(0, 0, 0, 0.45)","linkHoverColor":"rgba(0, 0, 0, 0.88)","separatorColor":"rgba(0, 0, 0, 0.45)","separatorMargin":8}},"Badge":{"global":["fontHeight","lineWidth","marginXS","colorBorderBg","colorBgContainer","colorError","colorErrorHover","motionDurationSlow","blue1","blue3","blue6","blue7","purple1","purple3","purple6","purple7","cyan1","cyan3","cyan6","cyan7","green1","green3","green6","green7","magenta1","magenta3","magenta6","magenta7","pink1","pink3","pink6","pink7","red1","red3","red6","red7","orange1","orange3","orange6","orange7","yellow1","yellow3","yellow6","yellow7","volcano1","volcano3","volcano6","volcano7","geekblue1","geekblue3","geekblue6","geekblue7","lime1","lime3","lime6","lime7","gold1","gold3","gold6","gold7","colorText","fontSize","lineHeight","fontFamily","motionDurationMid","paddingXS","colorSuccess","colorInfo","colorTextPlaceholder","colorWarning","motionEaseOutBack"],"component":{"indicatorZIndex":"auto","indicatorHeight":20,"indicatorHeightSM":14,"dotSize":6,"textFontSize":12,"textFontSizeSM":12,"textFontWeight":"normal","statusSize":6}},"BackTop":{"global":["fontSizeHeading3","colorTextDescription","colorTextLightSolid","colorText","controlHeightLG","fontSize","lineHeight","fontFamily","motionDurationMid","screenMD","screenXS"],"component":{"zIndexPopup":10}},"Statistic":{"global":["marginXXS","padding","colorTextDescription","colorTextHeading","fontFamily","colorText","fontSize","lineHeight"],"component":{"titleFontSize":14,"contentFontSize":24}},"Spin":{"global":["colorTextDescription","colorText","fontSize","lineHeight","fontFamily","colorPrimary","motionDurationSlow","motionEaseInOutCirc","colorBgMask","zIndexPopupBase","motionDurationMid","colorWhite","colorTextLightSolid","colorBgContainer","marginXXS","colorFillSecondary"],"component":{"contentHeight":400,"dotSize":20,"dotSizeSM":14,"dotSizeLG":32}},"Space":{"global":["paddingXS","padding","paddingLG"],"component":{}},"Tour":{"global":["borderRadiusLG","padding","paddingXS","borderRadius","borderRadiusXS","colorPrimary","colorFill","boxShadowTertiary","colorBgElevated","fontWeightStrong","marginXS","colorTextLightSolid","colorWhite","motionDurationSlow","colorText","fontSize","lineHeight","fontFamily","colorIcon","borderRadiusSM","motionDurationMid","colorIconHover","colorBgTextHover","colorBgTextActive","lineWidthFocus","colorPrimaryBorder","boxShadowPopoverArrow","sizePopupArrow"],"component":{"zIndexPopup":1070,"closeBtnSize":22,"primaryPrevBtnBg":"rgba(255, 255, 255, 0.15)","primaryNextBtnHoverBg":"rgb(240, 240, 240)","arrowOffsetHorizontal":12,"arrowOffsetVertical":8,"arrowShadowWidth":8.970562748477143,"arrowPath":"path('M 0 8 A 4 4 0 0 0 2.82842712474619 6.82842712474619 L 6.585786437626905 3.0710678118654755 A 2 2 0 0 1 9.414213562373096 3.0710678118654755 L 13.17157287525381 6.82842712474619 A 4 4 0 0 0 16 8 Z')","arrowPolygon":"polygon(1.6568542494923806px 100%, 50% 1.6568542494923806px, 14.34314575050762px 100%, 1.6568542494923806px 100%)"}},"Tooltip":{"global":["borderRadius","colorTextLightSolid","colorBgSpotlight","controlHeight","boxShadowSecondary","paddingSM","paddingXS","colorText","fontSize","lineHeight","fontFamily","blue1","blue3","blue6","blue7","purple1","purple3","purple6","purple7","cyan1","cyan3","cyan6","cyan7","green1","green3","green6","green7","magenta1","magenta3","magenta6","magenta7","pink1","pink3","pink6","pink7","red1","red3","red6","red7","orange1","orange3","orange6","orange7","yellow1","yellow3","yellow6","yellow7","volcano1","volcano3","volcano6","volcano7","geekblue1","geekblue3","geekblue6","geekblue7","lime1","lime3","lime6","lime7","gold1","gold3","gold6","gold7","boxShadowPopoverArrow","sizePopupArrow","borderRadiusXS","motionDurationFast","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"zIndexPopup":1070,"arrowOffsetHorizontal":12,"arrowOffsetVertical":8,"arrowShadowWidth":8.970562748477143,"arrowPath":"path('M 0 8 A 4 4 0 0 0 2.82842712474619 6.82842712474619 L 6.585786437626905 3.0710678118654755 A 2 2 0 0 1 9.414213562373096 3.0710678118654755 L 13.17157287525381 6.82842712474619 A 4 4 0 0 0 16 8 Z')","arrowPolygon":"polygon(1.6568542494923806px 100%, 50% 1.6568542494923806px, 14.34314575050762px 100%, 1.6568542494923806px 100%)"}},"Timeline":{"global":["paddingXXS","colorText","fontSize","lineHeight","fontFamily","lineType","fontSizeSM","colorPrimary","colorError","colorSuccess","colorTextDisabled","lineWidth","margin","controlHeightLG","marginXXS","marginSM","marginXS"],"component":{"tailColor":"rgba(5, 5, 5, 0.06)","tailWidth":2,"dotBorderWidth":2,"dotBg":"#ffffff","itemPaddingBottom":20}},"Tag":{"global":["lineWidth","fontSizeIcon","fontSizeSM","lineHeightSM","paddingXXS","colorText","fontSize","lineHeight","fontFamily","marginXS","lineType","colorBorder","borderRadiusSM","motionDurationMid","colorTextDescription","colorTextHeading","colorTextLightSolid","colorPrimary","colorFillSecondary","colorPrimaryHover","colorPrimaryActive"],"component":{"defaultBg":"#fafafa","defaultColor":"rgba(0, 0, 0, 0.88)"}},"Tabs":{"global":["paddingXXS","borderRadius","marginSM","marginXS","marginXXS","margin","colorBorderSecondary","lineWidth","lineType","lineWidthBold","motionDurationSlow","controlHeight","boxShadowTabsOverflowLeft","boxShadowTabsOverflowRight","boxShadowTabsOverflowTop","boxShadowTabsOverflowBottom","colorBorder","paddingLG","colorText","fontSize","lineHeight","fontFamily","colorBgContainer","borderRadiusLG","boxShadowSecondary","paddingSM","colorTextDescription","fontSizeSM","controlItemBgHover","colorTextDisabled","motionEaseInOut","controlHeightLG","paddingXS","lineWidthFocus","colorPrimaryBorder","colorTextHeading","motionDurationMid","motionEaseOutQuint","motionEaseInQuint"],"component":{"zIndexPopup":1050,"cardBg":"rgba(0, 0, 0, 0.02)","cardHeight":40,"cardPadding":"8px 16px","cardPaddingSM":"6px 16px","cardPaddingLG":"8px 16px 6px","titleFontSize":14,"titleFontSizeLG":16,"titleFontSizeSM":14,"inkBarColor":"#1677ff","horizontalMargin":"0 0 16px 0","horizontalItemGutter":32,"horizontalItemMargin":"","horizontalItemMarginRTL":"","horizontalItemPadding":"12px 0","horizontalItemPaddingSM":"8px 0","horizontalItemPaddingLG":"16px 0","verticalItemPadding":"8px 24px","verticalItemMargin":"16px 0 0 0","itemColor":"rgba(0, 0, 0, 0.88)","itemSelectedColor":"#1677ff","itemHoverColor":"#4096ff","itemActiveColor":"#0958d9","cardGutter":2}},"Table":{"global":["colorTextHeading","colorSplit","colorBgContainer","controlInteractiveSize","padding","fontWeightStrong","lineWidth","lineType","motionDurationMid","colorText","fontSize","lineHeight","fontFamily","margin","paddingXS","marginXXS","fontSizeIcon","motionDurationSlow","colorPrimary","paddingXXS","fontSizeSM","borderRadius","colorTextDescription","colorTextDisabled","controlItemBgHover","controlItemBgActive","boxShadowSecondary","colorLink","colorLinkHover","colorLinkActive","opacityLoading"],"component":{"headerBg":"#fafafa","headerColor":"rgba(0, 0, 0, 0.88)","headerSortActiveBg":"#f0f0f0","headerSortHoverBg":"#f0f0f0","bodySortBg":"#fafafa","rowHoverBg":"#fafafa","rowSelectedBg":"#e6f4ff","rowSelectedHoverBg":"#bae0ff","rowExpandedBg":"rgba(0, 0, 0, 0.02)","cellPaddingBlock":16,"cellPaddingInline":16,"cellPaddingBlockMD":12,"cellPaddingInlineMD":8,"cellPaddingBlockSM":8,"cellPaddingInlineSM":8,"borderColor":"#f0f0f0","headerBorderRadius":8,"footerBg":"#fafafa","footerColor":"rgba(0, 0, 0, 0.88)","cellFontSize":14,"cellFontSizeMD":14,"cellFontSizeSM":14,"headerSplitColor":"#f0f0f0","fixedHeaderSortActiveBg":"#f0f0f0","headerFilterHoverBg":"rgba(0, 0, 0, 0.06)","filterDropdownMenuBg":"#ffffff","filterDropdownBg":"#ffffff","expandIconBg":"#ffffff","selectionColumnWidth":32,"stickyScrollBarBg":"rgba(0, 0, 0, 0.25)","stickyScrollBarBorderRadius":100,"expandIconMarginTop":2.5,"headerIconColor":"rgba(0, 0, 0, 0.29)","headerIconHoverColor":"rgba(0, 0, 0, 0.57)","expandIconHalfInner":7,"expandIconSize":17,"expandIconScale":0.9411764705882353}},"Switch":{"global":["motionDurationMid","colorPrimary","opacityLoading","fontSizeIcon","colorText","fontSize","lineHeight","fontFamily","colorTextQuaternary","colorTextTertiary","lineWidthFocus","colorPrimaryBorder","colorPrimaryHover","colorTextLightSolid","fontSizeSM","marginXXS"],"component":{"trackHeight":22,"trackHeightSM":16,"trackMinWidth":44,"trackMinWidthSM":28,"trackPadding":2,"handleBg":"#fff","handleSize":18,"handleSizeSM":12,"handleShadow":"0 2px 4px 0 rgba(0, 35, 11, 0.2)","innerMinMargin":9,"innerMaxMargin":24,"innerMinMarginSM":6,"innerMaxMarginSM":18}},"Steps":{"global":["colorTextDisabled","controlHeightLG","colorTextLightSolid","colorText","colorPrimary","colorTextDescription","colorTextQuaternary","colorError","colorBorderSecondary","colorSplit","fontSize","lineHeight","fontFamily","motionDurationSlow","lineWidthFocus","colorPrimaryBorder","marginXS","lineWidth","lineType","padding","fontSizeLG","fontWeightStrong","fontSizeSM","paddingSM","paddingXXS","margin","controlHeight","marginXXS","paddingLG","marginSM","paddingXS","controlHeightSM","fontSizeIcon","lineWidthBold","marginLG","borderRadiusSM","motionDurationMid","controlItemBgHover","lineHeightSM","colorBorderBg"],"component":{"titleLineHeight":32,"customIconSize":32,"customIconTop":0,"customIconFontSize":24,"iconSize":32,"iconTop":-0.5,"iconFontSize":14,"iconSizeSM":24,"dotSize":8,"dotCurrentSize":10,"navArrowColor":"rgba(0, 0, 0, 0.25)","navContentMaxWidth":"auto","descriptionMaxWidth":140,"waitIconColor":"rgba(0, 0, 0, 0.25)","waitIconBgColor":"#ffffff","waitIconBorderColor":"rgba(0, 0, 0, 0.25)","finishIconBgColor":"#ffffff","finishIconBorderColor":"#1677ff"}},"Progress":{"global":["marginXXS","colorText","fontSize","lineHeight","fontFamily","motionDurationSlow","motionEaseInOutCirc","colorWhite","colorSuccess","marginXS","paddingXXS","colorBgContainer","motionEaseOutQuint","colorError","fontSizeSM"],"component":{"circleTextColor":"rgba(0, 0, 0, 0.88)","defaultColor":"#1677ff","remainingColor":"rgba(0, 0, 0, 0.06)","lineBorderRadius":100,"circleTextFontSize":"1em","circleIconFontSize":"1.1666666666666667em"}},"Popover":{"global":["colorBgElevated","colorText","fontWeightStrong","boxShadowSecondary","colorTextHeading","borderRadiusLG","fontSize","lineHeight","fontFamily","boxShadowPopoverArrow","sizePopupArrow","borderRadiusXS","blue6","purple6","cyan6","green6","magenta6","pink6","red6","orange6","yellow6","volcano6","geekblue6","lime6","gold6","motionDurationMid","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"titleMinWidth":177,"zIndexPopup":1030,"arrowShadowWidth":8.970562748477143,"arrowPath":"path('M 0 8 A 4 4 0 0 0 2.82842712474619 6.82842712474619 L 6.585786437626905 3.0710678118654755 A 2 2 0 0 1 9.414213562373096 3.0710678118654755 L 13.17157287525381 6.82842712474619 A 4 4 0 0 0 16 8 Z')","arrowPolygon":"polygon(1.6568542494923806px 100%, 50% 1.6568542494923806px, 14.34314575050762px 100%, 1.6568542494923806px 100%)","arrowOffsetHorizontal":12,"arrowOffsetVertical":8,"innerPadding":0,"titleMarginBottom":0,"titlePadding":"5px 16px 4px","titleBorderBottom":"1px solid rgba(5, 5, 5, 0.06)","innerContentPadding":"12px 16px"}},"Popconfirm":{"global":["colorText","colorWarning","marginXXS","marginXS","fontSize","fontWeightStrong","colorTextHeading"],"component":{"zIndexPopup":1060}},"Avatar":{"global":["colorTextLightSolid","colorTextPlaceholder","borderRadius","borderRadiusLG","borderRadiusSM","lineWidth","lineType","colorText","fontSize","lineHeight","fontFamily"],"component":{"containerSize":32,"containerSizeLG":40,"containerSizeSM":24,"textFontSize":18,"textFontSizeLG":24,"textFontSizeSM":14,"groupSpace":4,"groupOverlapping":-8,"groupBorderColor":"#ffffff"}},"App":{"global":["colorText","fontSize","lineHeight","fontFamily"],"component":{}},"Anchor":{"global":["fontSize","fontSizeLG","paddingXXS","motionDurationSlow","lineWidthBold","colorPrimary","lineType","colorSplit","colorText","lineHeight","fontFamily","lineWidth"],"component":{"linkPaddingBlock":4,"linkPaddingInlineStart":16}},"Pagination":{"global":["marginXXS","controlHeightLG","marginSM","paddingXXS","colorText","fontSize","lineHeight","fontFamily","marginXS","lineWidth","lineType","borderRadius","motionDurationMid","colorBgTextHover","colorBgTextActive","fontWeightStrong","colorPrimary","colorPrimaryHover","fontSizeSM","colorTextDisabled","margin","controlHeight","colorTextPlaceholder","motionDurationSlow","lineHeightLG","borderRadiusLG","borderRadiusSM","colorBorder","colorBgContainer","colorBgContainerDisabled","controlOutlineWidth","controlOutline","controlHeightSM","screenLG","screenSM","lineWidthFocus","colorPrimaryBorder"],"component":{"itemBg":"#ffffff","itemSize":32,"itemSizeSM":24,"itemActiveBg":"#ffffff","itemLinkBg":"#ffffff","itemActiveColorDisabled":"rgba(0, 0, 0, 0.25)","itemActiveBgDisabled":"rgba(0, 0, 0, 0.15)","itemInputBg":"#ffffff","miniOptionsSizeChangerTop":0,"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7,"paddingInline":11,"paddingInlineSM":7,"paddingInlineLG":11,"addonBg":"rgba(0, 0, 0, 0.02)","activeBorderColor":"#1677ff","hoverBorderColor":"#4096ff","activeShadow":"0 0 0 2px rgba(5, 145, 255, 0.1)","errorActiveShadow":"0 0 0 2px rgba(255, 38, 5, 0.06)","warningActiveShadow":"0 0 0 2px rgba(255, 215, 5, 0.1)","hoverBg":"#ffffff","activeBg":"#ffffff","inputFontSize":14,"inputFontSizeLG":16,"inputFontSizeSM":14}},"Notification":{"global":["paddingMD","paddingLG","colorBgElevated","fontSizeLG","lineHeightLG","controlHeightLG","margin","paddingContentHorizontalLG","marginLG","colorPrimaryBorderHover","colorPrimary","motionDurationMid","motionEaseInOut","colorText","fontSize","lineHeight","fontFamily","boxShadow","borderRadiusLG","colorSuccess","colorInfo","colorWarning","colorError","colorTextHeading","marginXS","marginSM","colorIcon","borderRadiusSM","colorIconHover","colorBgTextHover","colorBgTextActive","lineWidthFocus","colorPrimaryBorder","motionDurationSlow","colorBgBlur"],"component":{"zIndexPopup":2050,"width":384}},"Modal":{"global":["padding","fontSizeHeading5","lineHeightHeading5","colorSplit","lineType","lineWidth","colorIcon","colorIconHover","controlHeight","fontHeight","screenSMMax","marginXS","colorText","fontSize","lineHeight","fontFamily","margin","paddingLG","fontWeightStrong","borderRadiusLG","boxShadow","zIndexPopupBase","borderRadiusSM","motionDurationMid","fontSizeLG","colorBgTextHover","colorBgTextActive","lineWidthFocus","colorPrimaryBorder","motionDurationSlow","colorBgMask","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"footerBg":"transparent","headerBg":"#ffffff","titleLineHeight":1.5,"titleFontSize":16,"contentBg":"#ffffff","titleColor":"rgba(0, 0, 0, 0.88)","contentPadding":0,"headerPadding":"16px 24px","headerBorderBottom":"1px solid rgba(5, 5, 5, 0.06)","headerMarginBottom":0,"bodyPadding":24,"footerPadding":"8px 16px","footerBorderTop":"1px solid rgba(5, 5, 5, 0.06)","footerBorderRadius":"0 0 8px 8px","footerMarginTop":0,"confirmBodyPadding":"32px 32px 24px","confirmIconMarginInlineEnd":16,"confirmBtnsMarginTop":24}},"Message":{"global":["boxShadow","colorText","colorSuccess","colorError","colorWarning","colorInfo","fontSizeLG","motionEaseInOutCirc","motionDurationSlow","marginXS","paddingXS","borderRadiusLG","fontSize","lineHeight","fontFamily"],"component":{"zIndexPopup":2010,"contentBg":"#ffffff","contentPadding":"9px 12px"}},"Menu":{"global":["colorBgElevated","controlHeightLG","fontSize","motionDurationSlow","motionDurationMid","motionEaseInOut","paddingXS","padding","colorSplit","lineWidth","borderRadiusLG","lineType","colorText","lineHeight","fontFamily","motionEaseOut","borderRadius","margin","colorTextLightSolid","paddingXL","fontSizeLG","boxShadowSecondary","marginXS","lineWidthFocus","colorPrimaryBorder","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"dropdownWidth":160,"zIndexPopup":1050,"radiusItem":8,"itemBorderRadius":8,"radiusSubMenuItem":4,"subMenuItemBorderRadius":4,"colorItemText":"rgba(0, 0, 0, 0.88)","itemColor":"rgba(0, 0, 0, 0.88)","colorItemTextHover":"rgba(0, 0, 0, 0.88)","itemHoverColor":"rgba(0, 0, 0, 0.88)","colorItemTextHoverHorizontal":"#1677ff","horizontalItemHoverColor":"#1677ff","colorGroupTitle":"rgba(0, 0, 0, 0.45)","groupTitleColor":"rgba(0, 0, 0, 0.45)","colorItemTextSelected":"#1677ff","itemSelectedColor":"#1677ff","colorItemTextSelectedHorizontal":"#1677ff","horizontalItemSelectedColor":"#1677ff","colorItemBg":"#ffffff","itemBg":"#ffffff","colorItemBgHover":"rgba(0, 0, 0, 0.06)","itemHoverBg":"rgba(0, 0, 0, 0.06)","colorItemBgActive":"rgba(0, 0, 0, 0.06)","itemActiveBg":"#e6f4ff","colorSubItemBg":"rgba(0, 0, 0, 0.02)","subMenuItemBg":"rgba(0, 0, 0, 0.02)","colorItemBgSelected":"#e6f4ff","itemSelectedBg":"#e6f4ff","colorItemBgSelectedHorizontal":"transparent","horizontalItemSelectedBg":"transparent","colorActiveBarWidth":0,"activeBarWidth":0,"colorActiveBarHeight":2,"activeBarHeight":2,"colorActiveBarBorderSize":1,"activeBarBorderWidth":1,"colorItemTextDisabled":"rgba(0, 0, 0, 0.25)","itemDisabledColor":"rgba(0, 0, 0, 0.25)","colorDangerItemText":"#ff4d4f","dangerItemColor":"#ff4d4f","colorDangerItemTextHover":"#ff4d4f","dangerItemHoverColor":"#ff4d4f","colorDangerItemTextSelected":"#ff4d4f","dangerItemSelectedColor":"#ff4d4f","colorDangerItemBgActive":"#fff2f0","dangerItemActiveBg":"#fff2f0","colorDangerItemBgSelected":"#fff2f0","dangerItemSelectedBg":"#fff2f0","itemMarginInline":4,"horizontalItemBorderRadius":0,"horizontalItemHoverBg":"transparent","itemHeight":40,"groupTitleLineHeight":1.5714285714285714,"collapsedWidth":80,"popupBg":"#ffffff","itemMarginBlock":4,"itemPaddingInline":16,"horizontalLineHeight":"46px","iconSize":14,"iconMarginInlineEnd":10,"collapsedIconSize":16,"groupTitleFontSize":14,"darkItemDisabledColor":"rgba(255, 255, 255, 0.25)","darkItemColor":"rgba(255, 255, 255, 0.65)","darkDangerItemColor":"#ff4d4f","darkItemBg":"#001529","darkPopupBg":"#001529","darkSubMenuItemBg":"#000c17","darkItemSelectedColor":"#fff","darkItemSelectedBg":"#1677ff","darkDangerItemSelectedBg":"#ff4d4f","darkItemHoverBg":"transparent","darkGroupTitleColor":"rgba(255, 255, 255, 0.65)","darkItemHoverColor":"#fff","darkDangerItemHoverColor":"#ff7875","darkDangerItemSelectedColor":"#fff","darkDangerItemActiveBg":"#ff4d4f","itemWidth":"calc(100% - 8px)"}},"ColorPicker":{"global":["colorTextQuaternary","marginSM","colorPrimary","motionDurationMid","colorBgElevated","colorTextDisabled","colorText","colorBgContainerDisabled","borderRadius","marginXS","controlHeight","controlHeightSM","colorBgTextActive","lineWidth","colorBorder","paddingXXS","fontSize","colorPrimaryHover","controlOutline","controlHeightLG","borderRadiusSM","colorFillSecondary","lineWidthBold","colorPrimaryActive","fontSizeSM","lineHeightSM","marginXXS","fontSizeIcon","paddingXS","colorTextPlaceholder","colorFill","colorWhite","fontHeightSM","motionEaseInBack","motionDurationFast","motionEaseOutBack","colorSplit","red6","controlOutlineWidth","colorError","colorWarning","colorErrorHover","colorWarningHover","colorErrorOutline","colorWarningOutline","controlHeightXS","borderRadiusXS","borderRadiusLG","fontSizeLG"],"component":{}},"Collapse":{"global":["paddingXS","paddingSM","padding","paddingLG","borderRadiusLG","lineWidth","lineType","colorBorder","colorText","colorTextHeading","colorTextDisabled","fontSizeLG","lineHeight","lineHeightLG","marginSM","motionDurationSlow","fontSizeIcon","fontHeight","fontHeightLG","fontSize","fontFamily","paddingXXS","motionDurationMid","motionEaseInOut"],"component":{"headerPadding":"12px 16px","headerBg":"rgba(0, 0, 0, 0.02)","contentPadding":"16px 16px","contentBg":"#ffffff"}},"Mentions":{"global":["paddingXXS","colorTextDisabled","controlItemBgHover","controlPaddingHorizontal","colorText","motionDurationSlow","lineHeight","controlHeight","fontSize","fontSizeIcon","colorTextTertiary","colorTextQuaternary","colorBgElevated","paddingLG","borderRadius","borderRadiusLG","boxShadowSecondary","fontFamily","motionDurationMid","colorTextPlaceholder","lineHeightLG","borderRadiusSM","colorBorder","colorBgContainer","lineWidth","lineType","colorBgContainerDisabled","colorError","colorErrorBorderHover","colorWarning","colorWarningBorderHover","colorFillTertiary","colorFillSecondary","colorErrorBg","colorErrorBgHover","colorErrorText","colorWarningBg","colorWarningBgHover","colorWarningText","fontWeightStrong"],"component":{"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7,"paddingInline":11,"paddingInlineSM":7,"paddingInlineLG":11,"addonBg":"rgba(0, 0, 0, 0.02)","activeBorderColor":"#1677ff","hoverBorderColor":"#4096ff","activeShadow":"0 0 0 2px rgba(5, 145, 255, 0.1)","errorActiveShadow":"0 0 0 2px rgba(255, 38, 5, 0.06)","warningActiveShadow":"0 0 0 2px rgba(255, 215, 5, 0.1)","hoverBg":"#ffffff","activeBg":"#ffffff","inputFontSize":14,"inputFontSizeLG":16,"inputFontSizeSM":14,"dropdownHeight":250,"controlItemWidth":100,"zIndexPopup":1050,"itemPaddingVertical":5}},"List":{"global":["controlHeightLG","controlHeight","paddingSM","marginLG","padding","colorPrimary","paddingXS","margin","colorText","colorTextDescription","motionDurationSlow","lineWidth","fontSize","lineHeight","fontFamily","marginXXS","marginXXL","fontHeight","colorSplit","fontSizeSM","colorTextDisabled","fontSizeLG","lineHeightLG","lineType","paddingLG","borderRadiusLG","colorBorder","screenSM","screenMD","marginSM"],"component":{"contentWidth":220,"itemPadding":"12px 0","itemPaddingSM":"8px 16px","itemPaddingLG":"16px 24px","headerBg":"transparent","footerBg":"transparent","emptyTextPadding":16,"metaMarginBottom":16,"avatarMarginRight":16,"titleMarginBottom":12,"descriptionFontSize":14}},"Layout":{"global":["colorText","motionDurationMid","motionDurationSlow","fontSize","borderRadius","fontSizeXL"],"component":{"colorBgHeader":"#001529","colorBgBody":"#f5f5f5","colorBgTrigger":"#002140","bodyBg":"#f5f5f5","headerBg":"#001529","headerHeight":64,"headerPadding":"0 50px","headerColor":"rgba(0, 0, 0, 0.88)","footerPadding":"24px 50px","footerBg":"#f5f5f5","siderBg":"#001529","triggerHeight":48,"triggerBg":"#002140","triggerColor":"#fff","zeroTriggerWidth":40,"zeroTriggerHeight":40,"lightSiderBg":"#ffffff","lightTriggerBg":"#ffffff","lightTriggerColor":"rgba(0, 0, 0, 0.88)"}},"InputNumber":{"global":["paddingXXS","lineWidth","lineType","borderRadius","controlHeightLG","controlHeightSM","colorError","colorTextDescription","motionDurationMid","colorTextDisabled","borderRadiusSM","borderRadiusLG","lineHeightLG","colorText","fontSize","lineHeight","fontFamily","colorTextPlaceholder","controlHeight","motionDurationSlow","colorBorder","colorBgContainer","colorBgContainerDisabled","colorErrorBorderHover","colorWarning","colorWarningBorderHover","colorFillTertiary","colorFillSecondary","colorErrorBg","colorErrorBgHover","colorErrorText","colorWarningBg","colorWarningBgHover","colorWarningText","paddingXS","colorPrimary","fontSizeLG","colorSplit"],"component":{"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7,"paddingInline":11,"paddingInlineSM":7,"paddingInlineLG":11,"addonBg":"rgba(0, 0, 0, 0.02)","activeBorderColor":"#1677ff","hoverBorderColor":"#4096ff","activeShadow":"0 0 0 2px rgba(5, 145, 255, 0.1)","errorActiveShadow":"0 0 0 2px rgba(255, 38, 5, 0.06)","warningActiveShadow":"0 0 0 2px rgba(255, 215, 5, 0.1)","hoverBg":"#ffffff","activeBg":"#ffffff","inputFontSize":14,"inputFontSizeLG":16,"inputFontSizeSM":14,"controlWidth":90,"handleWidth":22,"handleFontSize":7,"handleVisible":"auto","handleActiveBg":"rgba(0, 0, 0, 0.02)","handleBg":"#ffffff","filledHandleBg":"#f0f0f0","handleHoverColor":"#1677ff","handleBorderColor":"#d9d9d9","handleOpacity":0}},"Input":{"global":["paddingXXS","controlHeightSM","lineWidth","colorText","fontSize","lineHeight","fontFamily","borderRadius","motionDurationMid","colorTextPlaceholder","controlHeight","motionDurationSlow","lineHeightLG","borderRadiusLG","borderRadiusSM","colorBorder","colorBgContainer","lineType","colorTextDisabled","colorBgContainerDisabled","colorError","colorErrorBorderHover","colorWarning","colorWarningBorderHover","colorFillTertiary","colorFillSecondary","colorErrorBg","colorErrorBgHover","colorErrorText","colorWarningBg","colorWarningBgHover","colorWarningText","controlHeightLG","paddingLG","colorTextDescription","paddingXS","colorIcon","colorIconHover","colorTextQuaternary","fontSizeIcon","colorTextTertiary","colorPrimary","colorSplit","colorPrimaryHover","colorPrimaryActive"],"component":{"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7,"paddingInline":11,"paddingInlineSM":7,"paddingInlineLG":11,"addonBg":"rgba(0, 0, 0, 0.02)","activeBorderColor":"#1677ff","hoverBorderColor":"#4096ff","activeShadow":"0 0 0 2px rgba(5, 145, 255, 0.1)","errorActiveShadow":"0 0 0 2px rgba(255, 38, 5, 0.06)","warningActiveShadow":"0 0 0 2px rgba(255, 215, 5, 0.1)","hoverBg":"#ffffff","activeBg":"#ffffff","inputFontSize":14,"inputFontSizeLG":16,"inputFontSizeSM":14}},"Skeleton":{"global":["controlHeight","controlHeightLG","controlHeightSM","padding","marginSM","controlHeightXS","borderRadiusSM"],"component":{"color":"rgba(0, 0, 0, 0.06)","colorGradientEnd":"rgba(0, 0, 0, 0.15)","gradientFromColor":"rgba(0, 0, 0, 0.06)","gradientToColor":"rgba(0, 0, 0, 0.15)","titleHeight":16,"blockRadius":4,"paragraphMarginTop":28,"paragraphLiHeight":16}},"Slider":{"global":["controlHeight","controlHeightLG","colorFillContentHover","motionDurationMid","colorText","fontSize","lineHeight","fontFamily","borderRadiusXS","colorPrimaryBorderHover","colorBgElevated","colorTextDescription","motionDurationSlow"],"component":{"controlSize":10,"railSize":4,"handleSize":10,"handleSizeHover":12,"dotSize":8,"handleLineWidth":2,"handleLineWidthHover":2.5,"railBg":"rgba(0, 0, 0, 0.04)","railHoverBg":"rgba(0, 0, 0, 0.06)","trackBg":"#91caff","trackHoverBg":"#69b1ff","handleColor":"#91caff","handleActiveColor":"#1677ff","handleActiveOutlineColor":"rgba(22, 119, 255, 0.2)","handleColorDisabled":"#bfbfbf","dotBorderColor":"#f0f0f0","dotActiveBorderColor":"#91caff","trackBgDisabled":"rgba(0, 0, 0, 0.04)"}},"Image":{"global":["controlHeightLG","colorBgContainerDisabled","motionDurationSlow","paddingXXS","marginXXS","colorTextLightSolid","motionEaseOut","paddingSM","marginXL","margin","paddingLG","marginSM","zIndexPopupBase","colorBgMask","motionDurationMid","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"zIndexPopup":1080,"previewOperationColor":"rgba(255, 255, 255, 0.65)","previewOperationHoverColor":"rgba(255, 255, 255, 0.85)","previewOperationColorDisabled":"rgba(255, 255, 255, 0.25)","previewOperationSize":18}},"Grid":{"global":[],"component":{}},"Alert":{"global":["motionDurationSlow","marginXS","marginSM","fontSize","fontSizeLG","lineHeight","borderRadiusLG","motionEaseInOutCirc","colorText","colorTextHeading","fontFamily","colorSuccess","colorSuccessBorder","colorSuccessBg","colorWarning","colorWarningBorder","colorWarningBg","colorError","colorErrorBorder","colorErrorBg","colorInfo","colorInfoBorder","colorInfoBg","lineWidth","lineType","motionDurationMid","fontSizeIcon","colorIcon","colorIconHover"],"component":{"withDescriptionIconSize":24,"defaultPadding":"8px 12px","withDescriptionPadding":"20px 24px"}},"Affix":{"global":[],"component":{"zIndexPopup":10}}} | ||
{"Typography":{"global":["colorText","lineHeight","colorTextDescription","colorSuccess","colorWarning","colorError","colorErrorActive","colorErrorHover","colorTextDisabled","fontSizeHeading1","lineHeightHeading1","colorTextHeading","fontWeightStrong","fontSizeHeading2","lineHeightHeading2","fontSizeHeading3","lineHeightHeading3","fontSizeHeading4","lineHeightHeading4","fontSizeHeading5","lineHeightHeading5","fontFamilyCode","colorLink","motionDurationSlow","colorLinkHover","colorLinkActive","linkDecoration","linkHoverDecoration","marginXXS","paddingSM","marginXS","fontSize"],"component":{"titleMarginTop":"1.2em","titleMarginBottom":"0.5em"}},"Slider":{"global":["controlHeight","controlHeightLG","colorFillContentHover","motionDurationMid","colorText","fontSize","lineHeight","fontFamily","borderRadiusXS","colorPrimaryBorderHover","colorBgElevated","colorTextDescription","motionDurationSlow"],"component":{"controlSize":10,"railSize":4,"handleSize":10,"handleSizeHover":12,"dotSize":8,"handleLineWidth":2,"handleLineWidthHover":2.5,"railBg":"rgba(0, 0, 0, 0.04)","railHoverBg":"rgba(0, 0, 0, 0.06)","trackBg":"#91caff","trackHoverBg":"#69b1ff","handleColor":"#91caff","handleActiveColor":"#1677ff","handleActiveOutlineColor":"rgba(22, 119, 255, 0.2)","handleColorDisabled":"#bfbfbf","dotBorderColor":"#f0f0f0","dotActiveBorderColor":"#91caff","trackBgDisabled":"rgba(0, 0, 0, 0.04)"}},"Skeleton":{"global":["controlHeight","controlHeightLG","controlHeightSM","padding","marginSM","controlHeightXS","borderRadiusSM"],"component":{"color":"rgba(0, 0, 0, 0.06)","colorGradientEnd":"rgba(0, 0, 0, 0.15)","gradientFromColor":"rgba(0, 0, 0, 0.06)","gradientToColor":"rgba(0, 0, 0, 0.15)","titleHeight":16,"blockRadius":4,"paragraphMarginTop":28,"paragraphLiHeight":16}},"Select":{"global":["paddingSM","controlHeight","colorText","fontSize","lineHeight","fontFamily","motionDurationMid","motionEaseInOut","colorTextPlaceholder","fontSizeIcon","colorTextQuaternary","motionDurationSlow","colorTextTertiary","paddingXS","controlPaddingHorizontalSM","lineWidth","borderRadius","controlHeightSM","borderRadiusSM","fontSizeLG","borderRadiusLG","borderRadiusXS","controlHeightLG","controlPaddingHorizontal","paddingXXS","colorIcon","colorIconHover","colorBgElevated","boxShadowSecondary","colorTextDescription","fontSizeSM","colorPrimary","colorBgContainerDisabled","colorTextDisabled","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc","colorBorder","colorPrimaryHover","controlOutline","controlOutlineWidth","lineType","colorError","colorErrorHover","colorErrorOutline","colorWarning","colorWarningHover","colorWarningOutline","colorFillTertiary","colorFillSecondary","colorErrorBg","colorErrorBgHover","colorWarningBg","colorWarningBgHover","colorBgContainer","colorSplit"],"component":{"INTERNAL_FIXED_ITEM_MARGIN":2,"zIndexPopup":1050,"optionSelectedColor":"rgba(0, 0, 0, 0.88)","optionSelectedFontWeight":600,"optionSelectedBg":"#e6f4ff","optionActiveBg":"rgba(0, 0, 0, 0.04)","optionPadding":"5px 12px","optionFontSize":14,"optionLineHeight":1.5714285714285714,"optionHeight":32,"selectorBg":"#ffffff","clearBg":"#ffffff","singleItemHeightLG":40,"multipleItemBg":"rgba(0, 0, 0, 0.06)","multipleItemBorderColor":"transparent","multipleItemHeight":24,"multipleItemHeightSM":16,"multipleItemHeightLG":32,"multipleSelectorBgDisabled":"rgba(0, 0, 0, 0.04)","multipleItemColorDisabled":"rgba(0, 0, 0, 0.25)","multipleItemBorderColorDisabled":"transparent","showArrowPaddingInlineEnd":18}},"Message":{"global":["boxShadow","colorText","colorSuccess","colorError","colorWarning","colorInfo","fontSizeLG","motionEaseInOutCirc","motionDurationSlow","marginXS","paddingXS","borderRadiusLG","fontSize","lineHeight","fontFamily"],"component":{"zIndexPopup":2010,"contentBg":"#ffffff","contentPadding":"9px 12px"}},"Menu":{"global":["colorBgElevated","controlHeightLG","fontSize","motionDurationSlow","motionDurationMid","motionEaseInOut","paddingXS","padding","colorSplit","lineWidth","borderRadiusLG","lineType","colorText","lineHeight","fontFamily","motionEaseOut","borderRadius","margin","colorTextLightSolid","paddingXL","fontSizeLG","boxShadowSecondary","marginXS","lineWidthFocus","colorPrimaryBorder","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"dropdownWidth":160,"zIndexPopup":1050,"radiusItem":8,"itemBorderRadius":8,"radiusSubMenuItem":4,"subMenuItemBorderRadius":4,"colorItemText":"rgba(0, 0, 0, 0.88)","itemColor":"rgba(0, 0, 0, 0.88)","colorItemTextHover":"rgba(0, 0, 0, 0.88)","itemHoverColor":"rgba(0, 0, 0, 0.88)","colorItemTextHoverHorizontal":"#1677ff","horizontalItemHoverColor":"#1677ff","colorGroupTitle":"rgba(0, 0, 0, 0.45)","groupTitleColor":"rgba(0, 0, 0, 0.45)","colorItemTextSelected":"#1677ff","itemSelectedColor":"#1677ff","colorItemTextSelectedHorizontal":"#1677ff","horizontalItemSelectedColor":"#1677ff","colorItemBg":"#ffffff","itemBg":"#ffffff","colorItemBgHover":"rgba(0, 0, 0, 0.06)","itemHoverBg":"rgba(0, 0, 0, 0.06)","colorItemBgActive":"rgba(0, 0, 0, 0.06)","itemActiveBg":"#e6f4ff","colorSubItemBg":"rgba(0, 0, 0, 0.02)","subMenuItemBg":"rgba(0, 0, 0, 0.02)","colorItemBgSelected":"#e6f4ff","itemSelectedBg":"#e6f4ff","colorItemBgSelectedHorizontal":"transparent","horizontalItemSelectedBg":"transparent","colorActiveBarWidth":0,"activeBarWidth":0,"colorActiveBarHeight":2,"activeBarHeight":2,"colorActiveBarBorderSize":1,"activeBarBorderWidth":1,"colorItemTextDisabled":"rgba(0, 0, 0, 0.25)","itemDisabledColor":"rgba(0, 0, 0, 0.25)","colorDangerItemText":"#ff4d4f","dangerItemColor":"#ff4d4f","colorDangerItemTextHover":"#ff4d4f","dangerItemHoverColor":"#ff4d4f","colorDangerItemTextSelected":"#ff4d4f","dangerItemSelectedColor":"#ff4d4f","colorDangerItemBgActive":"#fff2f0","dangerItemActiveBg":"#fff2f0","colorDangerItemBgSelected":"#fff2f0","dangerItemSelectedBg":"#fff2f0","itemMarginInline":4,"horizontalItemBorderRadius":0,"horizontalItemHoverBg":"transparent","itemHeight":40,"groupTitleLineHeight":1.5714285714285714,"collapsedWidth":80,"popupBg":"#ffffff","itemMarginBlock":4,"itemPaddingInline":16,"horizontalLineHeight":"46px","iconSize":14,"iconMarginInlineEnd":10,"collapsedIconSize":16,"groupTitleFontSize":14,"darkItemDisabledColor":"rgba(255, 255, 255, 0.25)","darkItemColor":"rgba(255, 255, 255, 0.65)","darkDangerItemColor":"#ff4d4f","darkItemBg":"#001529","darkPopupBg":"#001529","darkSubMenuItemBg":"#000c17","darkItemSelectedColor":"#fff","darkItemSelectedBg":"#1677ff","darkDangerItemSelectedBg":"#ff4d4f","darkItemHoverBg":"transparent","darkGroupTitleColor":"rgba(255, 255, 255, 0.65)","darkItemHoverColor":"#fff","darkDangerItemHoverColor":"#ff7875","darkDangerItemSelectedColor":"#fff","darkDangerItemActiveBg":"#ff4d4f","itemWidth":"calc(100% - 8px)"}},"Mentions":{"global":["paddingXXS","colorTextDisabled","controlItemBgHover","controlPaddingHorizontal","colorText","motionDurationSlow","lineHeight","controlHeight","fontSize","fontSizeIcon","colorTextTertiary","colorTextQuaternary","colorBgElevated","paddingLG","borderRadius","borderRadiusLG","boxShadowSecondary","fontFamily","motionDurationMid","colorTextPlaceholder","lineHeightLG","borderRadiusSM","colorBorder","colorBgContainer","lineWidth","lineType","colorBgContainerDisabled","colorError","colorErrorBorderHover","colorWarning","colorWarningBorderHover","colorFillTertiary","colorFillSecondary","colorErrorBg","colorErrorBgHover","colorErrorText","colorWarningBg","colorWarningBgHover","colorWarningText","fontWeightStrong"],"component":{"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7,"paddingInline":11,"paddingInlineSM":7,"paddingInlineLG":11,"addonBg":"rgba(0, 0, 0, 0.02)","activeBorderColor":"#1677ff","hoverBorderColor":"#4096ff","activeShadow":"0 0 0 2px rgba(5, 145, 255, 0.1)","errorActiveShadow":"0 0 0 2px rgba(255, 38, 5, 0.06)","warningActiveShadow":"0 0 0 2px rgba(255, 215, 5, 0.1)","hoverBg":"#ffffff","activeBg":"#ffffff","inputFontSize":14,"inputFontSizeLG":16,"inputFontSizeSM":14,"dropdownHeight":250,"controlItemWidth":100,"zIndexPopup":1050,"itemPaddingVertical":5}},"Flex":{"global":["paddingXS","padding","paddingLG"],"component":{}},"Empty":{"global":["controlHeightLG","margin","marginXS","marginXL","fontSize","lineHeight","opacityImage","colorTextDescription"],"component":{}},"Space":{"global":["paddingXS","padding","paddingLG"],"component":{}},"List":{"global":["controlHeightLG","controlHeight","paddingSM","marginLG","padding","colorPrimary","paddingXS","margin","colorText","colorTextDescription","motionDurationSlow","lineWidth","fontSize","lineHeight","fontFamily","marginXXS","marginXXL","fontHeight","colorSplit","fontSizeSM","colorTextDisabled","fontSizeLG","lineHeightLG","lineType","paddingLG","borderRadiusLG","colorBorder","screenSM","screenMD","marginSM"],"component":{"contentWidth":220,"itemPadding":"12px 0","itemPaddingSM":"8px 16px","itemPaddingLG":"16px 24px","headerBg":"transparent","footerBg":"transparent","emptyTextPadding":16,"metaMarginBottom":16,"avatarMarginRight":16,"titleMarginBottom":12,"descriptionFontSize":14}},"Statistic":{"global":["marginXXS","padding","colorTextDescription","colorTextHeading","fontFamily","colorText","fontSize","lineHeight"],"component":{"titleFontSize":14,"contentFontSize":24}},"Layout":{"global":["colorText","motionDurationMid","motionDurationSlow","fontSize","borderRadius","fontSizeXL"],"component":{"colorBgHeader":"#001529","colorBgBody":"#f5f5f5","colorBgTrigger":"#002140","bodyBg":"#f5f5f5","headerBg":"#001529","headerHeight":64,"headerPadding":"0 50px","headerColor":"rgba(0, 0, 0, 0.88)","footerPadding":"24px 50px","footerBg":"#f5f5f5","siderBg":"#001529","triggerHeight":48,"triggerBg":"#002140","triggerColor":"#fff","zeroTriggerWidth":40,"zeroTriggerHeight":40,"lightSiderBg":"#ffffff","lightTriggerBg":"#ffffff","lightTriggerColor":"rgba(0, 0, 0, 0.88)"}},"InputNumber":{"global":["paddingXXS","lineWidth","lineType","borderRadius","controlHeightLG","controlHeightSM","colorError","colorTextDescription","motionDurationMid","colorTextDisabled","borderRadiusSM","borderRadiusLG","lineHeightLG","colorText","fontSize","lineHeight","fontFamily","colorTextPlaceholder","controlHeight","motionDurationSlow","colorBorder","colorBgContainer","colorBgContainerDisabled","colorErrorBorderHover","colorWarning","colorWarningBorderHover","colorFillTertiary","colorFillSecondary","colorErrorBg","colorErrorBgHover","colorErrorText","colorWarningBg","colorWarningBgHover","colorWarningText","paddingXS","colorPrimary","fontSizeLG","colorSplit"],"component":{"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7,"paddingInline":11,"paddingInlineSM":7,"paddingInlineLG":11,"addonBg":"rgba(0, 0, 0, 0.02)","activeBorderColor":"#1677ff","hoverBorderColor":"#4096ff","activeShadow":"0 0 0 2px rgba(5, 145, 255, 0.1)","errorActiveShadow":"0 0 0 2px rgba(255, 38, 5, 0.06)","warningActiveShadow":"0 0 0 2px rgba(255, 215, 5, 0.1)","hoverBg":"#ffffff","activeBg":"#ffffff","inputFontSize":14,"inputFontSizeLG":16,"inputFontSizeSM":14,"controlWidth":90,"handleWidth":22,"handleFontSize":7,"handleVisible":"auto","handleActiveBg":"rgba(0, 0, 0, 0.02)","handleBg":"#ffffff","filledHandleBg":"#f0f0f0","handleHoverColor":"#1677ff","handleBorderColor":"#d9d9d9","handleOpacity":0}},"TreeSelect":{"global":["colorBgElevated","paddingXS","colorText","fontSize","lineHeight","fontFamily","borderRadius","motionDurationSlow","lineWidthFocus","colorPrimaryBorder","colorPrimary","colorTextDisabled","controlItemBgHover","colorBgTextHover","colorBorder","marginXXS","motionDurationMid","lineWidthBold","controlInteractiveSize","marginXS","borderRadiusSM","colorBgContainer","lineWidth","lineType","colorWhite","motionDurationFast","motionEaseInBack","colorPrimaryHover","motionEaseOutBack","fontSizeLG","colorBgContainerDisabled"],"component":{"titleHeight":24,"nodeHoverBg":"rgba(0, 0, 0, 0.04)","nodeSelectedBg":"#e6f4ff"}},"Segmented":{"global":["lineWidth","controlPaddingHorizontal","controlPaddingHorizontalSM","controlHeight","controlHeightLG","controlHeightSM","colorText","fontSize","lineHeight","fontFamily","borderRadius","motionDurationMid","motionEaseInOut","borderRadiusSM","boxShadowTertiary","marginSM","paddingXXS","borderRadiusLG","fontSizeLG","borderRadiusXS","colorTextDisabled","motionDurationSlow"],"component":{"trackPadding":2,"trackBg":"#f5f5f5","itemColor":"rgba(0, 0, 0, 0.65)","itemHoverColor":"rgba(0, 0, 0, 0.88)","itemHoverBg":"rgba(0, 0, 0, 0.06)","itemSelectedBg":"#ffffff","itemActiveBg":"rgba(0, 0, 0, 0.15)","itemSelectedColor":"rgba(0, 0, 0, 0.88)"}},"Result":{"global":["colorInfo","colorError","colorSuccess","colorWarning","lineHeightHeading3","padding","paddingXL","paddingXS","paddingLG","marginXS","lineHeight","colorTextHeading","colorTextDescription","colorFillAlter"],"component":{"titleFontSize":24,"subtitleFontSize":14,"iconFontSize":72,"extraMargin":"24px 0 0 0"}},"Tree":{"global":["controlInteractiveSize","colorText","fontSize","lineHeight","fontFamily","marginXS","borderRadiusSM","lineWidthFocus","colorPrimaryBorder","colorBgContainer","lineWidth","lineType","colorBorder","motionDurationSlow","lineWidthBold","colorWhite","motionDurationFast","motionEaseInBack","paddingXS","colorPrimary","colorPrimaryHover","motionDurationMid","motionEaseOutBack","fontSizeLG","colorBgContainerDisabled","colorTextDisabled","borderRadius","controlItemBgHover","colorBgTextHover","marginXXS","motionEaseInOut"],"component":{"titleHeight":24,"nodeHoverBg":"rgba(0, 0, 0, 0.04)","nodeSelectedBg":"#e6f4ff","directoryNodeSelectedColor":"#fff","directoryNodeSelectedBg":"#1677ff"}},"Transfer":{"global":["marginXS","marginXXS","fontSizeIcon","colorBgContainerDisabled","colorText","fontSize","lineHeight","fontFamily","colorBorder","colorSplit","lineWidth","controlItemBgActive","colorTextDisabled","paddingSM","lineType","motionDurationSlow","controlItemBgHover","borderRadiusLG","colorBgContainer","controlItemBgActiveHover","colorLinkHover","paddingXS","controlHeightLG","colorError","colorWarning"],"component":{"listWidth":180,"listHeight":200,"listWidthLG":250,"headerHeight":40,"itemHeight":32,"itemPaddingBlock":5,"transferHeaderVerticalPadding":9}},"Tour":{"global":["borderRadiusLG","padding","paddingXS","borderRadius","borderRadiusXS","colorPrimary","colorFill","boxShadowTertiary","colorBgElevated","fontWeightStrong","marginXS","colorTextLightSolid","colorWhite","motionDurationSlow","colorText","fontSize","lineHeight","fontFamily","colorIcon","borderRadiusSM","motionDurationMid","colorIconHover","colorBgTextHover","colorBgTextActive","lineWidthFocus","colorPrimaryBorder","boxShadowPopoverArrow","sizePopupArrow"],"component":{"zIndexPopup":1070,"closeBtnSize":22,"primaryPrevBtnBg":"rgba(255, 255, 255, 0.15)","primaryNextBtnHoverBg":"rgb(240, 240, 240)","arrowOffsetHorizontal":12,"arrowOffsetVertical":8,"arrowShadowWidth":8.970562748477143,"arrowPath":"path('M 0 8 A 4 4 0 0 0 2.82842712474619 6.82842712474619 L 6.585786437626905 3.0710678118654755 A 2 2 0 0 1 9.414213562373096 3.0710678118654755 L 13.17157287525381 6.82842712474619 A 4 4 0 0 0 16 8 Z')","arrowPolygon":"polygon(1.6568542494923806px 100%, 50% 1.6568542494923806px, 14.34314575050762px 100%, 1.6568542494923806px 100%)"}},"Tooltip":{"global":["borderRadius","colorTextLightSolid","colorBgSpotlight","controlHeight","boxShadowSecondary","paddingSM","paddingXS","colorText","fontSize","lineHeight","fontFamily","blue1","blue3","blue6","blue7","purple1","purple3","purple6","purple7","cyan1","cyan3","cyan6","cyan7","green1","green3","green6","green7","magenta1","magenta3","magenta6","magenta7","pink1","pink3","pink6","pink7","red1","red3","red6","red7","orange1","orange3","orange6","orange7","yellow1","yellow3","yellow6","yellow7","volcano1","volcano3","volcano6","volcano7","geekblue1","geekblue3","geekblue6","geekblue7","lime1","lime3","lime6","lime7","gold1","gold3","gold6","gold7","boxShadowPopoverArrow","sizePopupArrow","borderRadiusXS","motionDurationFast","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"zIndexPopup":1070,"arrowOffsetHorizontal":12,"arrowOffsetVertical":8,"arrowShadowWidth":8.970562748477143,"arrowPath":"path('M 0 8 A 4 4 0 0 0 2.82842712474619 6.82842712474619 L 6.585786437626905 3.0710678118654755 A 2 2 0 0 1 9.414213562373096 3.0710678118654755 L 13.17157287525381 6.82842712474619 A 4 4 0 0 0 16 8 Z')","arrowPolygon":"polygon(1.6568542494923806px 100%, 50% 1.6568542494923806px, 14.34314575050762px 100%, 1.6568542494923806px 100%)"}},"Upload":{"global":["fontSizeHeading3","fontHeight","lineWidth","controlHeightLG","colorTextDisabled","colorText","fontSize","lineHeight","fontFamily","colorFillAlter","colorBorder","borderRadiusLG","motionDurationSlow","padding","lineWidthFocus","colorPrimaryBorder","colorPrimaryHover","margin","colorPrimary","marginXXS","colorTextHeading","fontSizeLG","colorTextDescription","paddingXS","lineType","paddingSM","fontSizeHeading2","colorError","colorErrorBg","colorTextLightSolid","marginXS","colorBgMask","marginXL","fontHeightSM","controlItemBgHover","motionEaseInOutCirc","motionDurationMid","motionEaseInOut"],"component":{"actionsColor":"rgba(0, 0, 0, 0.45)"}},"Timeline":{"global":["paddingXXS","colorText","fontSize","lineHeight","fontFamily","lineType","fontSizeSM","colorPrimary","colorError","colorSuccess","colorTextDisabled","lineWidth","margin","controlHeightLG","marginXXS","marginSM","marginXS"],"component":{"tailColor":"rgba(5, 5, 5, 0.06)","tailWidth":2,"dotBorderWidth":2,"dotBg":"#ffffff","itemPaddingBottom":20}},"Tag":{"global":["lineWidth","fontSizeIcon","fontSizeSM","lineHeightSM","paddingXXS","colorText","fontSize","lineHeight","fontFamily","marginXS","lineType","colorBorder","borderRadiusSM","motionDurationMid","colorTextDescription","colorTextHeading","colorTextLightSolid","colorPrimary","colorFillSecondary","colorPrimaryHover","colorPrimaryActive"],"component":{"defaultBg":"#fafafa","defaultColor":"rgba(0, 0, 0, 0.88)"}},"Tabs":{"global":["paddingXXS","borderRadius","marginSM","marginXS","marginXXS","margin","colorBorderSecondary","lineWidth","lineType","lineWidthBold","motionDurationSlow","controlHeight","boxShadowTabsOverflowLeft","boxShadowTabsOverflowRight","boxShadowTabsOverflowTop","boxShadowTabsOverflowBottom","colorBorder","paddingLG","colorText","fontSize","lineHeight","fontFamily","colorBgContainer","borderRadiusLG","boxShadowSecondary","paddingSM","colorTextDescription","fontSizeSM","controlItemBgHover","colorTextDisabled","motionEaseInOut","controlHeightLG","paddingXS","lineWidthFocus","colorPrimaryBorder","colorTextHeading","motionDurationMid","motionEaseOutQuint","motionEaseInQuint"],"component":{"zIndexPopup":1050,"cardBg":"rgba(0, 0, 0, 0.02)","cardHeight":40,"cardPadding":"8px 16px","cardPaddingSM":"6px 16px","cardPaddingLG":"8px 16px 6px","titleFontSize":14,"titleFontSizeLG":16,"titleFontSizeSM":14,"inkBarColor":"#1677ff","horizontalMargin":"0 0 16px 0","horizontalItemGutter":32,"horizontalItemMargin":"","horizontalItemMarginRTL":"","horizontalItemPadding":"12px 0","horizontalItemPaddingSM":"8px 0","horizontalItemPaddingLG":"16px 0","verticalItemPadding":"8px 24px","verticalItemMargin":"16px 0 0 0","itemColor":"rgba(0, 0, 0, 0.88)","itemSelectedColor":"#1677ff","itemHoverColor":"#4096ff","itemActiveColor":"#0958d9","cardGutter":2}},"Table":{"global":["colorTextHeading","colorSplit","colorBgContainer","controlInteractiveSize","padding","fontWeightStrong","lineWidth","lineType","motionDurationMid","colorText","fontSize","lineHeight","fontFamily","margin","paddingXS","marginXXS","fontSizeIcon","motionDurationSlow","colorPrimary","paddingXXS","fontSizeSM","borderRadius","colorTextDescription","colorTextDisabled","controlItemBgHover","controlItemBgActive","boxShadowSecondary","colorLink","colorLinkHover","colorLinkActive","opacityLoading"],"component":{"headerBg":"#fafafa","headerColor":"rgba(0, 0, 0, 0.88)","headerSortActiveBg":"#f0f0f0","headerSortHoverBg":"#f0f0f0","bodySortBg":"#fafafa","rowHoverBg":"#fafafa","rowSelectedBg":"#e6f4ff","rowSelectedHoverBg":"#bae0ff","rowExpandedBg":"rgba(0, 0, 0, 0.02)","cellPaddingBlock":16,"cellPaddingInline":16,"cellPaddingBlockMD":12,"cellPaddingInlineMD":8,"cellPaddingBlockSM":8,"cellPaddingInlineSM":8,"borderColor":"#f0f0f0","headerBorderRadius":8,"footerBg":"#fafafa","footerColor":"rgba(0, 0, 0, 0.88)","cellFontSize":14,"cellFontSizeMD":14,"cellFontSizeSM":14,"headerSplitColor":"#f0f0f0","fixedHeaderSortActiveBg":"#f0f0f0","headerFilterHoverBg":"rgba(0, 0, 0, 0.06)","filterDropdownMenuBg":"#ffffff","filterDropdownBg":"#ffffff","expandIconBg":"#ffffff","selectionColumnWidth":32,"stickyScrollBarBg":"rgba(0, 0, 0, 0.25)","stickyScrollBarBorderRadius":100,"expandIconMarginTop":2.5,"headerIconColor":"rgba(0, 0, 0, 0.29)","headerIconHoverColor":"rgba(0, 0, 0, 0.57)","expandIconHalfInner":7,"expandIconSize":17,"expandIconScale":0.9411764705882353}},"Steps":{"global":["colorTextDisabled","controlHeightLG","colorTextLightSolid","colorText","colorPrimary","colorTextDescription","colorTextQuaternary","colorError","colorBorderSecondary","colorSplit","fontSize","lineHeight","fontFamily","motionDurationSlow","lineWidthFocus","colorPrimaryBorder","marginXS","lineWidth","lineType","padding","fontSizeLG","fontWeightStrong","fontSizeSM","paddingSM","paddingXXS","margin","controlHeight","marginXXS","paddingLG","marginSM","paddingXS","controlHeightSM","fontSizeIcon","lineWidthBold","marginLG","borderRadiusSM","motionDurationMid","controlItemBgHover","lineHeightSM","colorBorderBg"],"component":{"titleLineHeight":32,"customIconSize":32,"customIconTop":0,"customIconFontSize":24,"iconSize":32,"iconTop":-0.5,"iconFontSize":14,"iconSizeSM":24,"dotSize":8,"dotCurrentSize":10,"navArrowColor":"rgba(0, 0, 0, 0.25)","navContentMaxWidth":"auto","descriptionMaxWidth":140,"waitIconColor":"rgba(0, 0, 0, 0.25)","waitIconBgColor":"#ffffff","waitIconBorderColor":"rgba(0, 0, 0, 0.25)","finishIconBgColor":"#ffffff","finishIconBorderColor":"#1677ff"}},"Input":{"global":["paddingXXS","controlHeightSM","lineWidth","colorText","fontSize","lineHeight","fontFamily","borderRadius","motionDurationMid","colorTextPlaceholder","controlHeight","motionDurationSlow","lineHeightLG","borderRadiusLG","borderRadiusSM","colorBorder","colorBgContainer","lineType","colorTextDisabled","colorBgContainerDisabled","colorError","colorErrorBorderHover","colorWarning","colorWarningBorderHover","colorFillTertiary","colorFillSecondary","colorErrorBg","colorErrorBgHover","colorErrorText","colorWarningBg","colorWarningBgHover","colorWarningText","controlHeightLG","paddingLG","colorTextDescription","paddingXS","colorIcon","colorIconHover","colorTextQuaternary","fontSizeIcon","colorTextTertiary","colorPrimary","colorSplit","colorPrimaryHover","colorPrimaryActive"],"component":{"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7,"paddingInline":11,"paddingInlineSM":7,"paddingInlineLG":11,"addonBg":"rgba(0, 0, 0, 0.02)","activeBorderColor":"#1677ff","hoverBorderColor":"#4096ff","activeShadow":"0 0 0 2px rgba(5, 145, 255, 0.1)","errorActiveShadow":"0 0 0 2px rgba(255, 38, 5, 0.06)","warningActiveShadow":"0 0 0 2px rgba(255, 215, 5, 0.1)","hoverBg":"#ffffff","activeBg":"#ffffff","inputFontSize":14,"inputFontSizeLG":16,"inputFontSizeSM":14}},"Image":{"global":["controlHeightLG","colorBgContainerDisabled","motionDurationSlow","paddingXXS","marginXXS","colorTextLightSolid","motionEaseOut","paddingSM","marginXL","margin","paddingLG","marginSM","zIndexPopupBase","colorBgMask","motionDurationMid","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"zIndexPopup":1080,"previewOperationColor":"rgba(255, 255, 255, 0.65)","previewOperationHoverColor":"rgba(255, 255, 255, 0.85)","previewOperationColorDisabled":"rgba(255, 255, 255, 0.25)","previewOperationSize":18}},"Spin":{"global":["colorTextDescription","colorText","fontSize","lineHeight","fontFamily","colorPrimary","motionDurationSlow","motionEaseInOutCirc","colorBgMask","zIndexPopupBase","motionDurationMid","colorWhite","colorTextLightSolid","colorBgContainer","marginXXS","colorFillSecondary"],"component":{"contentHeight":400,"dotSize":20,"dotSizeSM":14,"dotSizeLG":32}},"Rate":{"global":["colorText","fontSize","lineHeight","fontFamily","marginXS","motionDurationMid","lineWidth"],"component":{"starColor":"#fadb14","starSize":20,"starHoverScale":"scale(1.1)","starBg":"rgba(0, 0, 0, 0.06)"}},"Radio":{"global":["controlOutline","controlOutlineWidth","colorText","fontSize","lineHeight","fontFamily","colorPrimary","motionDurationSlow","motionDurationMid","motionEaseInOutCirc","colorBgContainer","colorBorder","lineWidth","colorBgContainerDisabled","colorTextDisabled","paddingXS","lineType","lineWidthFocus","colorPrimaryBorder","controlHeight","fontSizeLG","controlHeightLG","controlHeightSM","borderRadius","borderRadiusSM","borderRadiusLG","colorPrimaryHover","colorPrimaryActive"],"component":{"radioSize":16,"dotSize":8,"dotColorDisabled":"rgba(0, 0, 0, 0.25)","buttonSolidCheckedColor":"#fff","buttonSolidCheckedBg":"#1677ff","buttonSolidCheckedHoverBg":"#4096ff","buttonSolidCheckedActiveBg":"#0958d9","buttonBg":"#ffffff","buttonCheckedBg":"#ffffff","buttonColor":"rgba(0, 0, 0, 0.88)","buttonCheckedBgDisabled":"rgba(0, 0, 0, 0.15)","buttonCheckedColorDisabled":"rgba(0, 0, 0, 0.25)","buttonPaddingInline":15,"wrapperMarginInlineEnd":8,"radioColor":"#1677ff","radioBgColor":"#ffffff"}},"QRCode":{"global":["colorText","lineWidth","lineType","colorSplit","fontSize","lineHeight","fontFamily","paddingSM","colorWhite","borderRadiusLG","marginXS","controlHeight"],"component":{"QRCodeMaskBackgroundColor":"rgba(255, 255, 255, 0.96)"}},"Progress":{"global":["marginXXS","colorText","fontSize","lineHeight","fontFamily","motionDurationSlow","motionEaseInOutCirc","colorWhite","colorSuccess","marginXS","paddingXXS","colorBgContainer","motionEaseOutQuint","colorError","fontSizeSM"],"component":{"circleTextColor":"rgba(0, 0, 0, 0.88)","defaultColor":"#1677ff","remainingColor":"rgba(0, 0, 0, 0.06)","lineBorderRadius":100,"circleTextFontSize":"1em","circleIconFontSize":"1.1666666666666667em"}},"Popover":{"global":["colorBgElevated","colorText","fontWeightStrong","boxShadowSecondary","colorTextHeading","borderRadiusLG","fontSize","lineHeight","fontFamily","boxShadowPopoverArrow","sizePopupArrow","borderRadiusXS","blue6","purple6","cyan6","green6","magenta6","pink6","red6","orange6","yellow6","volcano6","geekblue6","lime6","gold6","motionDurationMid","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"titleMinWidth":177,"zIndexPopup":1030,"arrowShadowWidth":8.970562748477143,"arrowPath":"path('M 0 8 A 4 4 0 0 0 2.82842712474619 6.82842712474619 L 6.585786437626905 3.0710678118654755 A 2 2 0 0 1 9.414213562373096 3.0710678118654755 L 13.17157287525381 6.82842712474619 A 4 4 0 0 0 16 8 Z')","arrowPolygon":"polygon(1.6568542494923806px 100%, 50% 1.6568542494923806px, 14.34314575050762px 100%, 1.6568542494923806px 100%)","arrowOffsetHorizontal":12,"arrowOffsetVertical":8,"innerPadding":0,"titleMarginBottom":0,"titlePadding":"5px 16px 4px","titleBorderBottom":"1px solid rgba(5, 5, 5, 0.06)","innerContentPadding":"12px 16px"}},"Popconfirm":{"global":["colorText","colorWarning","marginXXS","marginXS","fontSize","fontWeightStrong","colorTextHeading"],"component":{"zIndexPopup":1060}},"Pagination":{"global":["marginXXS","controlHeightLG","marginSM","paddingXXS","colorText","fontSize","lineHeight","fontFamily","marginXS","lineWidth","lineType","borderRadius","motionDurationMid","colorBgTextHover","colorBgTextActive","fontWeightStrong","colorPrimary","colorPrimaryHover","fontSizeSM","colorTextDisabled","margin","controlHeight","colorTextPlaceholder","motionDurationSlow","lineHeightLG","borderRadiusLG","borderRadiusSM","colorBorder","colorBgContainer","colorBgContainerDisabled","controlOutlineWidth","controlOutline","controlHeightSM","screenLG","screenSM","lineWidthFocus","colorPrimaryBorder"],"component":{"itemBg":"#ffffff","itemSize":32,"itemSizeSM":24,"itemActiveBg":"#ffffff","itemLinkBg":"#ffffff","itemActiveColorDisabled":"rgba(0, 0, 0, 0.25)","itemActiveBgDisabled":"rgba(0, 0, 0, 0.15)","itemInputBg":"#ffffff","miniOptionsSizeChangerTop":0,"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7,"paddingInline":11,"paddingInlineSM":7,"paddingInlineLG":11,"addonBg":"rgba(0, 0, 0, 0.02)","activeBorderColor":"#1677ff","hoverBorderColor":"#4096ff","activeShadow":"0 0 0 2px rgba(5, 145, 255, 0.1)","errorActiveShadow":"0 0 0 2px rgba(255, 38, 5, 0.06)","warningActiveShadow":"0 0 0 2px rgba(255, 215, 5, 0.1)","hoverBg":"#ffffff","activeBg":"#ffffff","inputFontSize":14,"inputFontSizeLG":16,"inputFontSizeSM":14}},"Notification":{"global":["paddingMD","paddingLG","colorBgElevated","fontSizeLG","lineHeightLG","controlHeightLG","margin","paddingContentHorizontalLG","marginLG","colorPrimaryBorderHover","colorPrimary","motionDurationMid","motionEaseInOut","colorText","fontSize","lineHeight","fontFamily","boxShadow","borderRadiusLG","colorSuccess","colorInfo","colorWarning","colorError","colorTextHeading","marginXS","marginSM","colorIcon","borderRadiusSM","colorIconHover","colorBgTextHover","colorBgTextActive","lineWidthFocus","colorPrimaryBorder","motionDurationSlow","colorBgBlur"],"component":{"zIndexPopup":2050,"width":384}},"Modal":{"global":["padding","fontSizeHeading5","lineHeightHeading5","colorSplit","lineType","lineWidth","colorIcon","colorIconHover","controlHeight","fontHeight","screenSMMax","marginXS","colorText","fontSize","lineHeight","fontFamily","margin","paddingLG","fontWeightStrong","borderRadiusLG","boxShadow","zIndexPopupBase","borderRadiusSM","motionDurationMid","fontSizeLG","colorBgTextHover","colorBgTextActive","lineWidthFocus","colorPrimaryBorder","motionDurationSlow","colorBgMask","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"footerBg":"transparent","headerBg":"#ffffff","titleLineHeight":1.5,"titleFontSize":16,"contentBg":"#ffffff","titleColor":"rgba(0, 0, 0, 0.88)","contentPadding":0,"headerPadding":"16px 24px","headerBorderBottom":"1px solid rgba(5, 5, 5, 0.06)","headerMarginBottom":0,"bodyPadding":24,"footerPadding":"8px 16px","footerBorderTop":"1px solid rgba(5, 5, 5, 0.06)","footerBorderRadius":"0 0 8px 8px","footerMarginTop":0,"confirmBodyPadding":"32px 32px 24px","confirmIconMarginInlineEnd":16,"confirmBtnsMarginTop":24}},"Grid":{"global":[],"component":{}},"Form":{"global":["colorText","fontSize","lineHeight","fontFamily","marginLG","colorTextDescription","fontSizeLG","lineWidth","lineType","colorBorder","controlOutlineWidth","controlOutline","paddingSM","controlHeightSM","controlHeightLG","colorError","colorWarning","marginXXS","controlHeight","motionDurationMid","motionEaseOut","motionEaseOutBack","colorSuccess","colorPrimary","motionDurationSlow","motionEaseInOut","margin","screenXSMax","screenSMMax","screenMDMax","screenLGMax"],"component":{"labelRequiredMarkColor":"#ff4d4f","labelColor":"rgba(0, 0, 0, 0.88)","labelFontSize":14,"labelHeight":32,"labelColonMarginInlineStart":2,"labelColonMarginInlineEnd":8,"itemMarginBottom":24,"verticalLabelPadding":"0 0 8px","verticalLabelMargin":0,"inlineItemMarginBottom":0}},"FloatButton":{"global":["colorTextLightSolid","colorBgElevated","controlHeightLG","marginXXL","marginLG","fontSize","fontSizeIcon","controlItemBgHover","paddingXXS","margin","borderRadiusLG","borderRadiusSM","colorText","lineHeight","fontFamily","zIndexPopupBase","lineWidth","lineType","colorSplit","boxShadowSecondary","motionDurationMid","colorFillContent","fontSizeLG","fontSizeSM","colorPrimary","colorPrimaryHover","motionDurationSlow","motionEaseInOutCirc"],"component":{"dotOffsetInCircle":5.857864376269049,"dotOffsetInSquare":2.3431457505076194}},"Dropdown":{"global":["marginXXS","sizePopupArrow","paddingXXS","motionDurationMid","fontSize","colorTextDisabled","fontSizeIcon","controlPaddingHorizontal","colorBgElevated","boxShadowPopoverArrow","borderRadiusXS","colorText","lineHeight","fontFamily","borderRadiusLG","boxShadowSecondary","lineWidthFocus","colorPrimaryBorder","colorTextDescription","marginXS","fontSizeSM","borderRadiusSM","controlItemBgHover","colorPrimary","controlItemBgActive","controlItemBgActiveHover","colorSplit","paddingXS","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc","colorError","colorTextLightSolid"],"component":{"zIndexPopup":1050,"paddingBlock":5,"arrowOffsetHorizontal":12,"arrowOffsetVertical":8,"arrowShadowWidth":8.970562748477143,"arrowPath":"path('M 0 8 A 4 4 0 0 0 2.82842712474619 6.82842712474619 L 6.585786437626905 3.0710678118654755 A 2 2 0 0 1 9.414213562373096 3.0710678118654755 L 13.17157287525381 6.82842712474619 A 4 4 0 0 0 16 8 Z')","arrowPolygon":"polygon(1.6568542494923806px 100%, 50% 1.6568542494923806px, 14.34314575050762px 100%, 1.6568542494923806px 100%)"}},"Drawer":{"global":["borderRadiusSM","colorBgMask","colorBgElevated","motionDurationSlow","motionDurationMid","paddingXS","padding","paddingLG","fontSizeLG","lineHeightLG","lineWidth","lineType","colorSplit","marginXS","colorIcon","colorIconHover","colorBgTextHover","colorBgTextActive","colorText","fontWeightStrong","boxShadowDrawerLeft","boxShadowDrawerRight","boxShadowDrawerUp","boxShadowDrawerDown","lineWidthFocus","colorPrimaryBorder"],"component":{"zIndexPopup":1000,"footerPaddingBlock":8,"footerPaddingInline":16}},"Divider":{"global":["margin","marginLG","colorSplit","lineWidth","colorText","fontSize","lineHeight","fontFamily","colorTextHeading","fontSizeLG"],"component":{"textPaddingInline":"1em","orientationMargin":0.05,"verticalMarginInline":8}},"Descriptions":{"global":["colorText","fontSize","lineHeight","fontFamily","lineWidth","lineType","colorSplit","padding","paddingLG","colorTextSecondary","paddingSM","paddingXS","fontWeightStrong","fontSizeLG","lineHeightLG","borderRadiusLG","colorTextTertiary"],"component":{"labelBg":"rgba(0, 0, 0, 0.02)","titleColor":"rgba(0, 0, 0, 0.88)","titleMarginBottom":20,"itemPaddingBottom":16,"itemPaddingEnd":16,"colonMarginRight":8,"colonMarginLeft":2,"contentColor":"rgba(0, 0, 0, 0.88)","extraColor":"rgba(0, 0, 0, 0.88)"}},"DatePicker":{"global":["paddingXXS","controlHeightLG","padding","paddingSM","controlHeight","lineWidth","colorPrimary","colorPrimaryBorder","lineType","colorSplit","colorTextDisabled","colorBorder","borderRadius","motionDurationMid","colorTextPlaceholder","fontSizeLG","controlHeightSM","paddingXS","marginXS","colorTextDescription","lineWidthBold","motionDurationSlow","sizePopupArrow","colorBgElevated","borderRadiusLG","boxShadowSecondary","borderRadiusSM","boxShadowPopoverArrow","fontHeight","fontHeightLG","lineHeightLG","colorText","fontSize","lineHeight","fontFamily","colorBgContainer","colorTextHeading","colorIcon","colorIconHover","fontWeightStrong","colorTextLightSolid","controlItemBgActive","marginXXS","colorFillSecondary","colorTextTertiary","borderRadiusXS","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc","colorBgContainerDisabled","colorError","colorErrorBorderHover","colorWarning","colorWarningBorderHover","colorFillTertiary","colorErrorBg","colorErrorBgHover","colorErrorText","colorWarningBg","colorWarningBgHover","colorWarningText"],"component":{"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7,"paddingInline":11,"paddingInlineSM":7,"paddingInlineLG":11,"addonBg":"rgba(0, 0, 0, 0.02)","activeBorderColor":"#1677ff","hoverBorderColor":"#4096ff","activeShadow":"0 0 0 2px rgba(5, 145, 255, 0.1)","errorActiveShadow":"0 0 0 2px rgba(255, 38, 5, 0.06)","warningActiveShadow":"0 0 0 2px rgba(255, 215, 5, 0.1)","hoverBg":"#ffffff","activeBg":"#ffffff","inputFontSize":14,"inputFontSizeLG":16,"inputFontSizeSM":14,"INTERNAL_FIXED_ITEM_MARGIN":2,"cellHoverBg":"rgba(0, 0, 0, 0.04)","cellActiveWithRangeBg":"#e6f4ff","cellHoverWithRangeBg":"#c8dfff","cellRangeBorderColor":"#7cb3ff","cellBgDisabled":"rgba(0, 0, 0, 0.04)","timeColumnWidth":56,"timeColumnHeight":224,"timeCellHeight":28,"cellWidth":36,"cellHeight":24,"textHeight":40,"withoutTimeCellHeight":66,"multipleItemBg":"rgba(0, 0, 0, 0.06)","multipleItemBorderColor":"transparent","multipleItemHeight":24,"multipleItemHeightSM":16,"multipleItemHeightLG":32,"multipleSelectorBgDisabled":"rgba(0, 0, 0, 0.04)","multipleItemColorDisabled":"rgba(0, 0, 0, 0.25)","multipleItemBorderColorDisabled":"transparent","arrowShadowWidth":8.970562748477143,"arrowPath":"path('M 0 8 A 4 4 0 0 0 2.82842712474619 6.82842712474619 L 6.585786437626905 3.0710678118654755 A 2 2 0 0 1 9.414213562373096 3.0710678118654755 L 13.17157287525381 6.82842712474619 A 4 4 0 0 0 16 8 Z')","arrowPolygon":"polygon(1.6568542494923806px 100%, 50% 1.6568542494923806px, 14.34314575050762px 100%, 1.6568542494923806px 100%)","presetsWidth":120,"presetsMaxWidth":200,"zIndexPopup":1050}},"ColorPicker":{"global":["colorTextQuaternary","marginSM","colorPrimary","motionDurationMid","colorBgElevated","colorTextDisabled","colorText","colorBgContainerDisabled","borderRadius","marginXS","controlHeight","controlHeightSM","colorBgTextActive","lineWidth","colorBorder","paddingXXS","fontSize","colorPrimaryHover","controlOutline","controlHeightLG","borderRadiusSM","colorFillSecondary","lineWidthBold","colorPrimaryActive","fontSizeSM","lineHeightSM","marginXXS","fontSizeIcon","paddingXS","colorTextPlaceholder","colorFill","colorWhite","fontHeightSM","motionEaseInBack","motionDurationFast","motionEaseOutBack","colorSplit","red6","controlOutlineWidth","colorError","colorWarning","colorErrorHover","colorWarningHover","colorErrorOutline","colorWarningOutline","controlHeightXS","borderRadiusXS","borderRadiusLG","fontSizeLG"],"component":{}},"Collapse":{"global":["paddingXS","paddingSM","padding","paddingLG","borderRadiusLG","lineWidth","lineType","colorBorder","colorText","colorTextHeading","colorTextDisabled","fontSizeLG","lineHeight","lineHeightLG","marginSM","motionDurationSlow","fontSizeIcon","fontHeight","fontHeightLG","fontSize","fontFamily","paddingXXS","motionDurationMid","motionEaseInOut"],"component":{"headerPadding":"12px 16px","headerBg":"rgba(0, 0, 0, 0.02)","contentPadding":"16px 16px","contentBg":"#ffffff"}},"Checkbox":{"global":["controlInteractiveSize","colorText","fontSize","lineHeight","fontFamily","marginXS","borderRadiusSM","lineWidthFocus","colorPrimaryBorder","colorBgContainer","lineWidth","lineType","colorBorder","motionDurationSlow","lineWidthBold","colorWhite","motionDurationFast","motionEaseInBack","paddingXS","colorPrimary","colorPrimaryHover","motionDurationMid","motionEaseOutBack","fontSizeLG","colorBgContainerDisabled","colorTextDisabled"],"component":{}},"Cascader":{"global":["controlInteractiveSize","colorText","fontSize","lineHeight","fontFamily","marginXS","borderRadiusSM","lineWidthFocus","colorPrimaryBorder","colorBgContainer","lineWidth","lineType","colorBorder","motionDurationSlow","lineWidthBold","colorWhite","motionDurationFast","motionEaseInBack","paddingXS","colorPrimary","colorPrimaryHover","motionDurationMid","motionEaseOutBack","fontSizeLG","colorBgContainerDisabled","colorTextDisabled","colorSplit","controlItemBgHover","paddingXXS","colorTextDescription","fontSizeIcon","colorHighlight"],"component":{"controlWidth":184,"controlItemWidth":111,"dropdownHeight":180,"optionSelectedBg":"#e6f4ff","optionSelectedFontWeight":600,"optionPadding":"5px 12px","menuPadding":4}},"Carousel":{"global":["colorText","fontSize","lineHeight","fontFamily","motionDurationSlow","colorBgContainer","marginXXS"],"component":{"arrowSize":16,"arrowOffset":8,"dotWidth":16,"dotHeight":3,"dotGap":4,"dotOffset":12,"dotWidthActive":24,"dotActiveWidth":24}},"Card":{"global":["boxShadowCard","padding","paddingLG","fontSize","colorBorderSecondary","boxShadowTertiary","colorText","lineHeight","fontFamily","colorBgContainer","borderRadiusLG","colorTextHeading","fontWeightStrong","lineWidth","lineType","motionDurationMid","colorTextDescription","colorPrimary","fontHeight","marginXXS","marginXS","fontSizeLG","colorFillAlter"],"component":{"headerBg":"transparent","headerFontSize":16,"headerFontSizeSM":14,"headerHeight":56,"headerHeightSM":38,"actionsBg":"#ffffff","actionsLiMargin":"12px 0","tabsMarginBottom":-17,"extraColor":"rgba(0, 0, 0, 0.88)"}},"Calendar":{"global":["controlHeightLG","paddingXXS","padding","controlHeightSM","fontHeightSM","marginXS","lineWidth","paddingSM","paddingXS","colorBgContainer","lineType","borderRadiusLG","colorPrimary","colorTextHeading","colorSplit","colorIcon","motionDurationMid","colorIconHover","fontWeightStrong","colorTextDisabled","colorText","fontSize","motionDurationSlow","borderRadiusSM","colorTextLightSolid","controlItemBgActive","marginXXS","colorFillSecondary","colorTextTertiary","lineHeight","fontFamily","controlItemBgHover","lineWidthBold","screenXS"],"component":{"fullBg":"#ffffff","fullPanelBg":"#ffffff","itemActiveBg":"#e6f4ff","yearControlWidth":80,"monthControlWidth":70,"miniContentHeight":256,"INTERNAL_FIXED_ITEM_MARGIN":2,"cellHoverBg":"rgba(0, 0, 0, 0.04)","cellActiveWithRangeBg":"#e6f4ff","cellHoverWithRangeBg":"#c8dfff","cellRangeBorderColor":"#7cb3ff","cellBgDisabled":"rgba(0, 0, 0, 0.04)","timeColumnWidth":56,"timeColumnHeight":224,"timeCellHeight":28,"cellWidth":36,"cellHeight":24,"textHeight":40,"withoutTimeCellHeight":66,"multipleItemBg":"rgba(0, 0, 0, 0.06)","multipleItemBorderColor":"transparent","multipleItemHeight":24,"multipleItemHeightSM":16,"multipleItemHeightLG":32,"multipleSelectorBgDisabled":"rgba(0, 0, 0, 0.04)","multipleItemColorDisabled":"rgba(0, 0, 0, 0.25)","multipleItemBorderColorDisabled":"transparent"}},"Button":{"global":["marginXS","lineWidth","lineType","motionDurationMid","motionEaseInOut","colorText","lineWidthFocus","colorPrimaryBorder","controlHeight","borderRadius","opacityLoading","motionDurationSlow","controlHeightSM","paddingXS","borderRadiusSM","controlHeightLG","borderRadiusLG","colorTextDisabled","colorBgContainerDisabled","colorBorder","colorError","colorErrorHover","colorErrorBorderHover","colorErrorActive","colorPrimary","colorTextLightSolid","colorPrimaryHover","colorPrimaryActive","colorLink","colorLinkHover","colorLinkActive","colorBgTextActive","colorErrorBg","colorErrorBgActive","colorBgContainer","fontSize"],"component":{"fontWeight":400,"defaultShadow":"0 2px 0 rgba(0, 0, 0, 0.02)","primaryShadow":"0 2px 0 rgba(5, 145, 255, 0.1)","dangerShadow":"0 2px 0 rgba(255, 38, 5, 0.06)","primaryColor":"#fff","dangerColor":"#fff","borderColorDisabled":"#d9d9d9","defaultGhostColor":"#ffffff","ghostBg":"transparent","defaultGhostBorderColor":"#ffffff","paddingInline":15,"paddingInlineLG":15,"paddingInlineSM":7,"onlyIconSize":16,"onlyIconSizeSM":14,"onlyIconSizeLG":18,"groupBorderColor":"#4096ff","linkHoverBg":"transparent","textHoverBg":"rgba(0, 0, 0, 0.06)","defaultColor":"rgba(0, 0, 0, 0.88)","defaultBg":"#ffffff","defaultBorderColor":"#d9d9d9","defaultBorderColorDisabled":"#d9d9d9","defaultHoverBg":"#ffffff","defaultHoverColor":"#4096ff","defaultHoverBorderColor":"#4096ff","defaultActiveBg":"#ffffff","defaultActiveColor":"#0958d9","defaultActiveBorderColor":"#0958d9","contentFontSize":14,"contentFontSizeSM":14,"contentFontSizeLG":16,"contentLineHeight":1.5714285714285714,"contentLineHeightSM":1.5714285714285714,"contentLineHeightLG":1.5,"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7}},"Breadcrumb":{"global":["colorText","fontSize","lineHeight","fontFamily","motionDurationMid","paddingXXS","borderRadiusSM","fontHeight","marginXXS","colorBgTextHover","lineWidthFocus","colorPrimaryBorder","fontSizeIcon"],"component":{"itemColor":"rgba(0, 0, 0, 0.45)","lastItemColor":"rgba(0, 0, 0, 0.88)","iconFontSize":14,"linkColor":"rgba(0, 0, 0, 0.45)","linkHoverColor":"rgba(0, 0, 0, 0.88)","separatorColor":"rgba(0, 0, 0, 0.45)","separatorMargin":8}},"Badge":{"global":["fontHeight","lineWidth","marginXS","colorBorderBg","colorBgContainer","colorError","colorErrorHover","motionDurationSlow","blue1","blue3","blue6","blue7","purple1","purple3","purple6","purple7","cyan1","cyan3","cyan6","cyan7","green1","green3","green6","green7","magenta1","magenta3","magenta6","magenta7","pink1","pink3","pink6","pink7","red1","red3","red6","red7","orange1","orange3","orange6","orange7","yellow1","yellow3","yellow6","yellow7","volcano1","volcano3","volcano6","volcano7","geekblue1","geekblue3","geekblue6","geekblue7","lime1","lime3","lime6","lime7","gold1","gold3","gold6","gold7","colorText","fontSize","lineHeight","fontFamily","motionDurationMid","paddingXS","colorSuccess","colorInfo","colorTextPlaceholder","colorWarning","motionEaseOutBack"],"component":{"indicatorZIndex":"auto","indicatorHeight":20,"indicatorHeightSM":14,"dotSize":6,"textFontSize":12,"textFontSizeSM":12,"textFontWeight":"normal","statusSize":6}},"BackTop":{"global":["fontSizeHeading3","colorTextDescription","colorTextLightSolid","colorText","controlHeightLG","fontSize","lineHeight","fontFamily","motionDurationMid","screenMD","screenXS"],"component":{"zIndexPopup":10}},"Avatar":{"global":["colorTextLightSolid","colorTextPlaceholder","borderRadius","borderRadiusLG","borderRadiusSM","lineWidth","lineType","colorText","fontSize","lineHeight","fontFamily"],"component":{"containerSize":32,"containerSizeLG":40,"containerSizeSM":24,"textFontSize":18,"textFontSizeLG":24,"textFontSizeSM":14,"groupSpace":4,"groupOverlapping":-8,"groupBorderColor":"#ffffff"}},"App":{"global":["colorText","fontSize","lineHeight","fontFamily"],"component":{}},"Anchor":{"global":["fontSize","fontSizeLG","paddingXXS","motionDurationSlow","lineWidthBold","colorPrimary","lineType","colorSplit","colorText","lineHeight","fontFamily","lineWidth"],"component":{"linkPaddingBlock":4,"linkPaddingInlineStart":16}},"Alert":{"global":["motionDurationSlow","marginXS","marginSM","fontSize","fontSizeLG","lineHeight","borderRadiusLG","motionEaseInOutCirc","colorText","colorTextHeading","fontFamily","colorSuccess","colorSuccessBorder","colorSuccessBg","colorWarning","colorWarningBorder","colorWarningBg","colorError","colorErrorBorder","colorErrorBg","colorInfo","colorInfoBorder","colorInfoBg","lineWidth","lineType","motionDurationMid","fontSizeIcon","colorIcon","colorIconHover"],"component":{"withDescriptionIconSize":24,"defaultPadding":"8px 12px","withDescriptionPadding":"20px 24px"}},"Switch":{"global":["motionDurationMid","colorPrimary","opacityLoading","fontSizeIcon","colorText","fontSize","lineHeight","fontFamily","colorTextQuaternary","colorTextTertiary","lineWidthFocus","colorPrimaryBorder","colorPrimaryHover","colorTextLightSolid","fontSizeSM","marginXXS"],"component":{"trackHeight":22,"trackHeightSM":16,"trackMinWidth":44,"trackMinWidthSM":28,"trackPadding":2,"handleBg":"#fff","handleSize":18,"handleSizeSM":12,"handleShadow":"0 2px 4px 0 rgba(0, 35, 11, 0.2)","innerMinMargin":9,"innerMaxMargin":24,"innerMinMarginSM":6,"innerMaxMarginSM":18}},"Affix":{"global":[],"component":{"zIndexPopup":10}}} |
@@ -1,2 +0,2 @@ | ||
declare const _default: "5.20.0"; | ||
declare const _default: "5.20.1"; | ||
export default _default; |
@@ -1,1 +0,1 @@ | ||
export default '5.20.0'; | ||
export default '5.20.1'; |
@@ -42,2 +42,3 @@ "use strict"; | ||
}; | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
const SelectPlacements = ['bottomLeft', 'bottomRight', 'topLeft', 'topRight']; | ||
@@ -44,0 +45,0 @@ const getTransitionName = (rootPrefixCls, motion, transitionName) => { |
@@ -10,2 +10,3 @@ "use strict"; | ||
var _classnames = _interopRequireDefault(require("classnames")); | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
const InputStatuses = ['warning', 'error', '']; | ||
@@ -12,0 +13,0 @@ function getStatusClassNames(prefixCls, status, hasFeedback) { |
@@ -85,3 +85,3 @@ "use strict"; | ||
display: 'inline-flex', | ||
[`${componentCls}`]: { | ||
[componentCls]: { | ||
borderColor: groupBorderColor | ||
@@ -88,0 +88,0 @@ }, |
@@ -259,3 +259,3 @@ "use strict"; | ||
}, | ||
[`${numberPrefixCls}`]: { | ||
[numberPrefixCls]: { | ||
overflow: 'hidden', | ||
@@ -262,0 +262,0 @@ [`${numberPrefixCls}-only`]: { |
@@ -34,6 +34,6 @@ "use strict"; | ||
return { | ||
[`${ribbonWrapperPrefixCls}`]: { | ||
[ribbonWrapperPrefixCls]: { | ||
position: 'relative' | ||
}, | ||
[`${ribbonPrefixCls}`]: Object.assign(Object.assign(Object.assign(Object.assign({}, (0, _style.resetComponent)(token)), { | ||
[ribbonPrefixCls]: Object.assign(Object.assign(Object.assign(Object.assign({}, (0, _style.resetComponent)(token)), { | ||
position: 'absolute', | ||
@@ -40,0 +40,0 @@ top: marginXS, |
@@ -68,4 +68,7 @@ "use strict"; | ||
} | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
const ButtonTypes = ['default', 'primary', 'dashed', 'link', 'text']; | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
const ButtonShapes = ['default', 'circle', 'round']; | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
const ButtonHTMLTypes = ['submit', 'button', 'reset']; |
@@ -247,3 +247,3 @@ "use strict"; | ||
return [{ | ||
[`${prefixCls}`]: { | ||
[prefixCls]: { | ||
fontSize, | ||
@@ -250,0 +250,0 @@ lineHeight, |
@@ -119,11 +119,2 @@ "use strict"; | ||
}; | ||
// ====================== Locale ====================== | ||
const getDefaultLocale = () => { | ||
const { | ||
locale | ||
} = props; | ||
const result = Object.assign(Object.assign({}, _en_US.default), locale); | ||
result.lang = Object.assign(Object.assign({}, result.lang), locale === null || locale === void 0 ? void 0 : locale.lang); | ||
return result; | ||
}; | ||
// ====================== Render ====================== | ||
@@ -165,3 +156,4 @@ const dateRender = React.useCallback((date, info) => { | ||
}, [monthFullCellRender, monthCellRender, cellRender, fullCellRender]); | ||
const [contextLocale] = (0, _locale.useLocale)('Calendar', getDefaultLocale); | ||
const [contextLocale] = (0, _locale.useLocale)('Calendar', _en_US.default); | ||
const locale = Object.assign(Object.assign({}, contextLocale), props.locale); | ||
const mergedCellRender = (current, info) => { | ||
@@ -173,3 +165,3 @@ if (info.type === 'date') { | ||
return monthRender(current, Object.assign(Object.assign({}, info), { | ||
locale: contextLocale === null || contextLocale === void 0 ? void 0 : contextLocale.lang | ||
locale: locale === null || locale === void 0 ? void 0 : locale.lang | ||
})); | ||
@@ -198,3 +190,3 @@ } | ||
fullscreen: fullscreen, | ||
locale: contextLocale === null || contextLocale === void 0 ? void 0 : contextLocale.lang, | ||
locale: locale === null || locale === void 0 ? void 0 : locale.lang, | ||
validRange: validRange, | ||
@@ -206,3 +198,3 @@ onChange: onInternalSelect, | ||
prefixCls: prefixCls, | ||
locale: contextLocale === null || contextLocale === void 0 ? void 0 : contextLocale.lang, | ||
locale: locale === null || locale === void 0 ? void 0 : locale.lang, | ||
generateConfig: generateConfig, | ||
@@ -209,0 +201,0 @@ cellRender: mergedCellRender, |
@@ -70,3 +70,3 @@ "use strict"; | ||
padding: 0, | ||
lineHeight: `${(0, _cssinjs.unit)(token.weekHeight)}` | ||
lineHeight: (0, _cssinjs.unit)(token.weekHeight) | ||
} | ||
@@ -93,3 +93,3 @@ }, | ||
paddingBottom: token.paddingXXS, | ||
lineHeight: `${(0, _cssinjs.unit)(token.weekHeight)}` | ||
lineHeight: (0, _cssinjs.unit)(token.weekHeight) | ||
} | ||
@@ -135,3 +135,3 @@ } | ||
'&-value': { | ||
lineHeight: `${(0, _cssinjs.unit)(token.dateValueHeight)}`, | ||
lineHeight: (0, _cssinjs.unit)(token.dateValueHeight), | ||
transition: `color ${token.motionDurationSlow}` | ||
@@ -157,3 +157,3 @@ }, | ||
[`@media only screen and (max-width: ${(0, _cssinjs.unit)(token.screenXS)}) `]: { | ||
[`${calendarCls}`]: { | ||
[calendarCls]: { | ||
[`${calendarCls}-header`]: { | ||
@@ -160,0 +160,0 @@ display: 'block', |
@@ -23,2 +23,3 @@ "use strict"; | ||
var _popover = _interopRequireDefault(require("../popover")); | ||
var _Compact = require("../space/Compact"); | ||
var _color = require("./color"); | ||
@@ -150,4 +151,12 @@ var _ColorPickerPanel = _interopRequireDefault(require("./ColorPickerPanel")); | ||
} = _react.default.useContext(_context2.FormItemInputContext); | ||
// ==================== Compact ==================== | ||
const { | ||
compactSize, | ||
compactItemClassnames | ||
} = (0, _Compact.useCompactItemContext)(prefixCls, direction); | ||
// ===================== Style ===================== | ||
const mergedSize = (0, _useSize.default)(customizeSize); | ||
const mergedSize = (0, _useSize.default)(ctx => { | ||
var _a; | ||
return (_a = customizeSize !== null && customizeSize !== void 0 ? customizeSize : compactSize) !== null && _a !== void 0 ? _a : ctx; | ||
}); | ||
const rootCls = (0, _useCSSVarCls.default)(prefixCls); | ||
@@ -162,3 +171,3 @@ const [wrapCSSVar, hashId, cssVarCls] = (0, _style.default)(prefixCls, rootCls); | ||
[`${prefixCls}-lg`]: mergedSize === 'large' | ||
}, colorPicker === null || colorPicker === void 0 ? void 0 : colorPicker.className, mergedRootCls, className, hashId); | ||
}, compactItemClassnames, colorPicker === null || colorPicker === void 0 ? void 0 : colorPicker.className, mergedRootCls, className, hashId); | ||
const mergedPopupCls = (0, _classnames.default)(prefixCls, mergedRootCls); | ||
@@ -165,0 +174,0 @@ // ===================== Warning ====================== |
@@ -53,6 +53,2 @@ "use strict"; | ||
if (color.isGradient()) { | ||
// return color | ||
// .getColors() | ||
// .map((c) => `${c.color.toRgbString()} ${c.percent}%`) | ||
// .join(', '); | ||
return color.getColors().map((c, index) => { | ||
@@ -59,0 +55,0 @@ const inactive = activeIndex !== -1 && activeIndex !== index; |
@@ -9,2 +9,3 @@ "use strict"; | ||
var _cssinjs = require("@ant-design/cssinjs"); | ||
var _compactItem = require("../../style/compact-item"); | ||
var _internal = require("../../theme/internal"); | ||
@@ -243,3 +244,5 @@ var _colorBlock = _interopRequireDefault(require("./color-block")); | ||
}, genRtlStyle(token)) | ||
}]; | ||
}, (0, _compactItem.genCompactItemStyle)(token, { | ||
focusElCls: `${componentCls}-trigger-active` | ||
})]; | ||
}; | ||
@@ -246,0 +249,0 @@ var _default = exports.default = (0, _internal.genStyleHooks)('ColorPicker', token => { |
@@ -57,3 +57,3 @@ "use strict"; | ||
fontSize: fontSizeSM, | ||
lineHeight: `${(0, _cssinjs.unit)(controlHeightSM)}` | ||
lineHeight: (0, _cssinjs.unit)(controlHeightSM) | ||
}, | ||
@@ -60,0 +60,0 @@ [`${antCls}-select-item-option-content`]: { |
@@ -31,3 +31,3 @@ "use strict"; | ||
// ======================== Slider ======================== | ||
[`${componentCls}-slider`]: [(0, _colorBlock.getTransBg)(`${(0, _cssinjs.unit)(colorPickerSliderHeight)}`, token.colorFillSecondary), { | ||
[`${componentCls}-slider`]: [(0, _colorBlock.getTransBg)((0, _cssinjs.unit)(colorPickerSliderHeight), token.colorFillSecondary), { | ||
margin: 0, | ||
@@ -34,0 +34,0 @@ padding: 0, |
@@ -6,2 +6,3 @@ "use strict"; | ||
}); | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
const DataPickerPlacements = ['bottomLeft', 'bottomRight', 'topLeft', 'topRight']; |
@@ -11,2 +11,6 @@ import * as React from 'react'; | ||
dashed?: boolean; | ||
/** | ||
* @since 5.20.0 | ||
* @default solid | ||
*/ | ||
variant?: 'dashed' | 'dotted' | 'solid'; | ||
@@ -13,0 +17,0 @@ style?: React.CSSProperties; |
@@ -30,2 +30,3 @@ "use strict"; | ||
}; | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
const SizeTypes = ['default', 'large']; | ||
@@ -32,0 +33,0 @@ const defaultPushState = { |
@@ -29,2 +29,3 @@ "use strict"; | ||
var _style = _interopRequireDefault(require("./style")); | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
const Placements = ['topLeft', 'topCenter', 'topRight', 'bottomLeft', 'bottomCenter', 'bottomRight', 'top', 'bottom']; | ||
@@ -31,0 +32,0 @@ const Dropdown = props => { |
@@ -79,3 +79,3 @@ "use strict"; | ||
[groupPrefixCls]: Object.assign(Object.assign({}, (0, _style.resetComponent)(token)), { | ||
zIndex: 99, | ||
zIndex: token.zIndexPopupBase, | ||
display: 'block', | ||
@@ -199,3 +199,3 @@ border: 'none', | ||
cursor: 'pointer', | ||
zIndex: 99, | ||
zIndex: token.zIndexPopupBase, | ||
// Do not remove the 'display: block' here. | ||
@@ -202,0 +202,0 @@ // Deleting it will cause marginBottom to become ineffective. |
@@ -30,2 +30,3 @@ "use strict"; | ||
const NAME_SPLIT = '__SPLIT__'; | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
const ValidateStatuses = ['success', 'warning', 'error', 'validating', '']; | ||
@@ -32,0 +33,0 @@ // https://github.com/ant-design/ant-design/issues/46417 |
@@ -24,3 +24,5 @@ "use strict"; | ||
}; | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
const RowAligns = ['top', 'middle', 'bottom', 'stretch']; | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
const RowJustify = ['start', 'end', 'center', 'space-around', 'space-between', 'space-evenly']; | ||
@@ -27,0 +29,0 @@ function useMergedPropByScreen(oriProp, screen) { |
@@ -183,3 +183,3 @@ "use strict"; | ||
}, | ||
[`${componentCls}`]: { | ||
[componentCls]: { | ||
width: '100%', | ||
@@ -274,3 +274,3 @@ marginBottom: 0, | ||
// Undo float for .ant-input-group .ant-input | ||
[`${componentCls}`]: { | ||
[componentCls]: { | ||
float: 'none' | ||
@@ -442,3 +442,3 @@ }, | ||
}, | ||
[`${componentCls}`]: { | ||
[componentCls]: { | ||
'&-prefix, &-suffix': { | ||
@@ -554,3 +554,3 @@ display: 'flex', | ||
[searchPrefixCls]: { | ||
[`${componentCls}`]: { | ||
[componentCls]: { | ||
'&:hover, &:focus': { | ||
@@ -557,0 +557,0 @@ borderColor: token.colorPrimaryHover, |
@@ -16,3 +16,3 @@ "use strict"; | ||
return { | ||
[`${componentCls}`]: { | ||
[componentCls]: { | ||
display: 'inline-flex', | ||
@@ -19,0 +19,0 @@ alignItems: 'center', |
@@ -102,3 +102,3 @@ "use strict"; | ||
mql.addEventListener('change', responsiveHandler); | ||
} catch (error) { | ||
} catch (_a) { | ||
mql.addListener(responsiveHandler); | ||
@@ -112,3 +112,3 @@ } | ||
mql === null || mql === void 0 ? void 0 : mql.removeEventListener('change', responsiveHandler); | ||
} catch (error) { | ||
} catch (_a) { | ||
mql === null || mql === void 0 ? void 0 : mql.removeListener(responsiveHandler); | ||
@@ -115,0 +115,0 @@ } |
@@ -22,3 +22,3 @@ "use strict"; | ||
return { | ||
[`${listBorderedCls}`]: { | ||
[listBorderedCls]: { | ||
border: `${(0, _cssinjs.unit)(token.lineWidth)} ${token.lineType} ${token.colorBorder}`, | ||
@@ -56,3 +56,3 @@ borderRadius: borderRadiusLG, | ||
[`@media screen and (max-width:${screenMD}px)`]: { | ||
[`${componentCls}`]: { | ||
[componentCls]: { | ||
[`${componentCls}-item`]: { | ||
@@ -73,3 +73,3 @@ [`${componentCls}-item-action`]: { | ||
[`@media screen and (max-width: ${screenSM}px)`]: { | ||
[`${componentCls}`]: { | ||
[componentCls]: { | ||
[`${componentCls}-item`]: { | ||
@@ -125,3 +125,3 @@ flexWrap: 'wrap', | ||
return { | ||
[`${componentCls}`]: Object.assign(Object.assign({}, (0, _style.resetComponent)(token)), { | ||
[componentCls]: Object.assign(Object.assign({}, (0, _style.resetComponent)(token)), { | ||
position: 'relative', | ||
@@ -128,0 +128,0 @@ '*': { |
@@ -14,3 +14,3 @@ "use strict"; | ||
const typeTemplate = '${label}Hökmlü deyil${type}'; | ||
const typeTemplate = '${label} Hökmlü deyil ${type}'; | ||
const localeValues = { | ||
@@ -95,10 +95,10 @@ locale: 'az', | ||
defaultValidateMessages: { | ||
default: 'Sahə təsdiq xətası${label}', | ||
required: 'Xahiş edirik daxil olun${label}', | ||
enum: '${label}Onlardan biri olmalıdır[${enum}]', | ||
whitespace: '${label}Null xarakter ola bilməz', | ||
default: 'Sahə təsdiq xətası ${label}', | ||
required: 'Xahiş edirik daxil olun ${label}', | ||
enum: '${label} Onlardan biri olmalıdır[${enum}]', | ||
whitespace: '${label} Null xarakter ola bilməz', | ||
date: { | ||
format: '${label}Tarix formatı hökmlü deyil', | ||
parse: '${label}Tarixi döndərmək mümkün deyil', | ||
invalid: '${label}səhv tarixdir' | ||
format: '${label} Tarix formatı hökmlü deyil', | ||
parse: '${label} Tarixi döndərmək mümkün deyil', | ||
invalid: '${label} səhv tarixdir' | ||
}, | ||
@@ -121,21 +121,21 @@ types: { | ||
string: { | ||
len: '${label}Olmalıdır${len}işarələr', | ||
min: '${label}ən az${min}işarələr', | ||
max: '${label}ən çox${max}işarələr', | ||
range: '${label}Olmalıdır${min}-${max}hərflər arasında' | ||
len: '${label} Olmalıdır ${len} işarələr', | ||
min: '${label} ən az ${min} işarələr', | ||
max: '${label} ən çox ${max} işarələr', | ||
range: '${label} Olmalıdır ${min}-${max} hərflər arasında' | ||
}, | ||
number: { | ||
len: '${label}Bərabər olmalıdır${len}', | ||
min: '${label}Minimal dəyəri${min}', | ||
max: '${label}Maksimal qiymət:${max}', | ||
range: '${label}Olmalıdır${min}-${max}aralarında' | ||
len: '${label} Bərabər olmalıdır ${len}', | ||
min: '${label} Minimal dəyəri ${min}', | ||
max: '${label} Maksimal qiymət: ${max}', | ||
range: '${label} Olmalıdır ${min}-${max} aralarında' | ||
}, | ||
array: { | ||
len: 'Olmalıdır${len}parça${label}', | ||
min: 'ən az${min}parça${label}', | ||
max: 'ən çox${max}parça${label}', | ||
range: '${label}miqdarıOlmalıdır${min}-${max}aralarında' | ||
len: 'Olmalıdır ${len} parça ${label}', | ||
min: 'ən az ${min} parça ${label}', | ||
max: 'ən çox ${max} parça ${label}', | ||
range: '${label} miqdarıOlmalıdır ${min}-${max} aralarında' | ||
}, | ||
pattern: { | ||
mismatch: '${label}Şablona uyğun gəlmir${pattern}' | ||
mismatch: '${label} Şablona uyğun gəlmir ${pattern}' | ||
} | ||
@@ -142,0 +142,0 @@ } |
@@ -138,3 +138,3 @@ "use strict"; | ||
'': { | ||
[`${componentCls}`]: Object.assign(Object.assign({}, (0, _style.clearFix)()), { | ||
[componentCls]: Object.assign(Object.assign({}, (0, _style.clearFix)()), { | ||
// Hidden | ||
@@ -141,0 +141,0 @@ '&-hidden': { |
import type React from 'react'; | ||
import type { AliasToken, FullToken, GenerateStyle, GlobalToken, GenStyleFn, TokenWithCommonCls } from '../../theme/internal'; | ||
import type { AliasToken, FullToken, GenerateStyle, GenStyleFn, GlobalToken, TokenWithCommonCls } from '../../theme/internal'; | ||
/** Component only token. Which will handle additional calculation of alias token */ | ||
@@ -4,0 +4,0 @@ export interface ComponentToken { |
@@ -149,3 +149,3 @@ "use strict"; | ||
fontStyle: 'normal', | ||
lineHeight: `${(0, _cssinjs.unit)(token.modalCloseBtnSize)}`, | ||
lineHeight: (0, _cssinjs.unit)(token.modalCloseBtnSize), | ||
justifyContent: 'center', | ||
@@ -152,0 +152,0 @@ textTransform: 'none', |
import type { SharedComponentToken, SharedInputToken } from '../../input/style/token'; | ||
import type { FullToken, GetDefaultToken, GenStyleFn } from '../../theme/internal'; | ||
import type { FullToken, GenStyleFn, GetDefaultToken } from '../../theme/internal'; | ||
export interface ComponentToken { | ||
@@ -4,0 +4,0 @@ /** |
@@ -296,3 +296,3 @@ "use strict"; | ||
fontFamily: token.fontFamily, | ||
lineHeight: `${(0, _cssinjs.unit)(token.itemSize)}`, | ||
lineHeight: (0, _cssinjs.unit)(token.itemSize), | ||
textAlign: 'center', | ||
@@ -299,0 +299,0 @@ verticalAlign: 'middle', |
@@ -81,3 +81,3 @@ "use strict"; | ||
}, | ||
[`${selectItemCls}`]: Object.assign(Object.assign({}, genItemStyle(token)), { | ||
[selectItemCls]: Object.assign(Object.assign({}, genItemStyle(token)), { | ||
cursor: 'pointer', | ||
@@ -84,0 +84,0 @@ transition: `background ${token.motionDurationSlow} ease`, |
@@ -45,3 +45,3 @@ "use strict"; | ||
return { | ||
[`${skeletonAvatarCls}`]: Object.assign({ | ||
[skeletonAvatarCls]: Object.assign({ | ||
display: 'inline-block', | ||
@@ -69,3 +69,3 @@ verticalAlign: 'top', | ||
return { | ||
[`${skeletonInputCls}`]: Object.assign({ | ||
[skeletonInputCls]: Object.assign({ | ||
display: 'inline-block', | ||
@@ -92,3 +92,3 @@ verticalAlign: 'top', | ||
return { | ||
[`${skeletonImageCls}`]: Object.assign(Object.assign({ | ||
[skeletonImageCls]: Object.assign(Object.assign({ | ||
display: 'flex', | ||
@@ -147,3 +147,3 @@ alignItems: 'center', | ||
return Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({ | ||
[`${skeletonButtonCls}`]: Object.assign({ | ||
[skeletonButtonCls]: Object.assign({ | ||
display: 'inline-block', | ||
@@ -186,3 +186,3 @@ verticalAlign: 'top', | ||
return { | ||
[`${componentCls}`]: { | ||
[componentCls]: { | ||
display: 'table', | ||
@@ -195,3 +195,3 @@ width: '100%', | ||
// Avatar | ||
[`${skeletonAvatarCls}`]: Object.assign({ | ||
[skeletonAvatarCls]: Object.assign({ | ||
display: 'inline-block', | ||
@@ -212,3 +212,3 @@ verticalAlign: 'top', | ||
// Title | ||
[`${skeletonTitleCls}`]: { | ||
[skeletonTitleCls]: { | ||
width: '100%', | ||
@@ -223,3 +223,3 @@ height: titleHeight, | ||
// paragraph | ||
[`${skeletonParagraphCls}`]: { | ||
[skeletonParagraphCls]: { | ||
padding: 0, | ||
@@ -249,3 +249,3 @@ '> li': { | ||
// Title | ||
[`${skeletonTitleCls}`]: { | ||
[skeletonTitleCls]: { | ||
marginBlockStart: marginSM, | ||
@@ -265,6 +265,6 @@ [`+ ${skeletonParagraphCls}`]: { | ||
width: '100%', | ||
[`${skeletonButtonCls}`]: { | ||
[skeletonButtonCls]: { | ||
width: '100%' | ||
}, | ||
[`${skeletonInputCls}`]: { | ||
[skeletonInputCls]: { | ||
width: '100%' | ||
@@ -271,0 +271,0 @@ } |
@@ -26,2 +26,3 @@ "use strict"; | ||
}; | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
const SpinSizes = ['small', 'default', 'large']; | ||
@@ -28,0 +29,0 @@ // Render indicator |
@@ -6,2 +6,3 @@ import * as React from 'react'; | ||
} | ||
export default function Progress({ percent, prefixCls }: ProgressProps): React.JSX.Element | null; | ||
declare const Progress: React.FC<Readonly<ProgressProps>>; | ||
export default Progress; |
@@ -9,7 +9,29 @@ "use strict"; | ||
}); | ||
exports.default = Progress; | ||
exports.default = void 0; | ||
var React = _interopRequireWildcard(require("react")); | ||
var _classnames = _interopRequireDefault(require("classnames")); | ||
var _useLayoutEffect = _interopRequireDefault(require("rc-util/lib/hooks/useLayoutEffect")); | ||
function Progress(_ref) { | ||
const viewSize = 100; | ||
const borderWidth = viewSize / 5; | ||
const radius = viewSize / 2 - borderWidth / 2; | ||
const circumference = radius * 2 * Math.PI; | ||
const position = 50; | ||
const CustomCircle = props => { | ||
const { | ||
dotClassName, | ||
style, | ||
hasCircleCls | ||
} = props; | ||
return /*#__PURE__*/React.createElement("circle", { | ||
className: (0, _classnames.default)(`${dotClassName}-circle`, { | ||
[`${dotClassName}-circle-bg`]: hasCircleCls | ||
}), | ||
r: radius, | ||
cx: position, | ||
cy: position, | ||
strokeWidth: borderWidth, | ||
style: style | ||
}); | ||
}; | ||
const Progress = _ref => { | ||
let { | ||
@@ -31,14 +53,2 @@ percent, | ||
const safePtg = Math.max(Math.min(percent, 100), 0); | ||
const viewSize = 100; | ||
const borderWidth = viewSize / 5; | ||
const radius = viewSize / 2 - borderWidth / 2; | ||
const circumference = radius * 2 * Math.PI; | ||
const renderCircle = (circleClassName, style) => ( /*#__PURE__*/React.createElement("circle", { | ||
className: (0, _classnames.default)(circleClassName, `${dotClassName}-circle`), | ||
r: radius, | ||
cx: "50", | ||
cy: "50", | ||
strokeWidth: borderWidth, | ||
style: style | ||
})); | ||
// ===================== Render ===================== | ||
@@ -48,2 +58,6 @@ if (!render) { | ||
} | ||
const circleStyle = { | ||
strokeDashoffset: `${circumference / 4}`, | ||
strokeDasharray: `${circumference * safePtg / 100} ${circumference * (100 - safePtg) / 100}` | ||
}; | ||
return /*#__PURE__*/React.createElement("span", { | ||
@@ -58,6 +72,10 @@ className: (0, _classnames.default)(holderClassName, `${dotClassName}-progress`, safePtg <= 0 && hideClassName) | ||
"aria-valuenow": safePtg | ||
}, renderCircle(`${dotClassName}-circle-bg`), renderCircle('', { | ||
strokeDasharray: `${circumference * safePtg / 100} ${circumference * (100 - safePtg) / 100}`, | ||
strokeDashoffset: `${circumference / 4}` | ||
}, /*#__PURE__*/React.createElement(CustomCircle, { | ||
dotClassName: dotClassName, | ||
hasCircleCls: true | ||
}), /*#__PURE__*/React.createElement(CustomCircle, { | ||
dotClassName: dotClassName, | ||
style: circleStyle | ||
}))); | ||
} | ||
}; | ||
var _default = exports.default = Progress; |
@@ -26,3 +26,3 @@ "use strict"; | ||
return { | ||
[`${componentCls}`]: Object.assign(Object.assign({}, (0, _style.resetComponent)(token)), { | ||
[componentCls]: Object.assign(Object.assign({}, (0, _style.resetComponent)(token)), { | ||
position: 'absolute', | ||
@@ -177,4 +177,4 @@ display: 'none', | ||
top: '50%', | ||
transform: 'translateY(-50%)', | ||
insetInlineStart: 0 | ||
transform: 'translate(-50%, -50%)', | ||
insetInlineStart: '50%' | ||
}, | ||
@@ -181,0 +181,0 @@ // dots |
@@ -21,3 +21,3 @@ "use strict"; | ||
return { | ||
[`${componentCls}`]: Object.assign(Object.assign({}, (0, _style.resetComponent)(token)), { | ||
[componentCls]: Object.assign(Object.assign({}, (0, _style.resetComponent)(token)), { | ||
[`${componentCls}-title`]: { | ||
@@ -24,0 +24,0 @@ marginBottom: marginXXS, |
@@ -26,3 +26,3 @@ "use strict"; | ||
fontSize: customIconFontSize, | ||
lineHeight: `${(0, _cssinjs.unit)(customIconSize)}` | ||
lineHeight: (0, _cssinjs.unit)(customIconSize) | ||
} | ||
@@ -29,0 +29,0 @@ } |
@@ -104,3 +104,3 @@ "use strict"; | ||
fontFamily: token.fontFamily, | ||
lineHeight: `${(0, _cssinjs.unit)(token.iconSize)}`, | ||
lineHeight: (0, _cssinjs.unit)(token.iconSize), | ||
textAlign: 'center', | ||
@@ -138,3 +138,3 @@ borderRadius: token.iconSize, | ||
fontSize: token.fontSizeLG, | ||
lineHeight: `${(0, _cssinjs.unit)(token.titleLineHeight)}`, | ||
lineHeight: (0, _cssinjs.unit)(token.titleLineHeight), | ||
'&::after': { | ||
@@ -141,0 +141,0 @@ position: 'absolute', |
@@ -42,3 +42,3 @@ "use strict"; | ||
paddingInlineEnd: 0, | ||
lineHeight: `${(0, _cssinjs.unit)(dotSize)}`, | ||
lineHeight: (0, _cssinjs.unit)(dotSize), | ||
background: 'transparent', | ||
@@ -74,3 +74,3 @@ border: 0, | ||
height: dotCurrentSize, | ||
lineHeight: `${(0, _cssinjs.unit)(dotCurrentSize)}`, | ||
lineHeight: (0, _cssinjs.unit)(dotCurrentSize), | ||
background: 'none', | ||
@@ -77,0 +77,0 @@ marginInlineStart: token.calc(token.descriptionMaxWidth).sub(dotCurrentSize).div(2).equal() |
@@ -33,3 +33,3 @@ "use strict"; | ||
fontSize: fontSizeSM, | ||
lineHeight: `${(0, _cssinjs.unit)(iconSizeSM)}`, | ||
lineHeight: (0, _cssinjs.unit)(iconSizeSM), | ||
textAlign: 'center', | ||
@@ -41,3 +41,3 @@ borderRadius: iconSizeSM | ||
fontSize, | ||
lineHeight: `${(0, _cssinjs.unit)(iconSizeSM)}`, | ||
lineHeight: (0, _cssinjs.unit)(iconSizeSM), | ||
'&::after': { | ||
@@ -63,3 +63,3 @@ top: token.calc(iconSizeSM).div(2).equal() | ||
fontSize: iconSizeSM, | ||
lineHeight: `${(0, _cssinjs.unit)(iconSizeSM)}`, | ||
lineHeight: (0, _cssinjs.unit)(iconSizeSM), | ||
transform: 'none' | ||
@@ -66,0 +66,0 @@ } |
@@ -33,3 +33,3 @@ "use strict"; | ||
[`${componentCls}-item-title`]: { | ||
lineHeight: `${(0, _cssinjs.unit)(iconSize)}` | ||
lineHeight: (0, _cssinjs.unit)(iconSize) | ||
}, | ||
@@ -68,3 +68,3 @@ [`${componentCls}-item-description`]: { | ||
[`${componentCls}-item-title`]: { | ||
lineHeight: `${(0, _cssinjs.unit)(iconSizeSM)}` | ||
lineHeight: (0, _cssinjs.unit)(iconSizeSM) | ||
} | ||
@@ -71,0 +71,0 @@ } |
import type { CSSObject } from '@ant-design/cssinjs'; | ||
import type { AliasToken } from '../theme/interface'; | ||
import type { CSSUtil } from '../theme/internal'; | ||
import type { AliasToken } from '../theme/interface'; | ||
export interface ArrowToken { | ||
@@ -5,0 +5,0 @@ } |
@@ -241,3 +241,3 @@ "use strict"; | ||
height: trackHeight, | ||
lineHeight: `${(0, _cssinjs.unit)(trackHeight)}`, | ||
lineHeight: (0, _cssinjs.unit)(trackHeight), | ||
verticalAlign: 'middle', | ||
@@ -244,0 +244,0 @@ background: token.colorTextQuaternary, |
@@ -0,7 +1,8 @@ | ||
import type { AnyObject } from '../_util/type'; | ||
import type { ColumnType } from './interface'; | ||
export interface ColumnProps<RecordType> extends ColumnType<RecordType> { | ||
export interface ColumnProps<RecordType extends AnyObject = AnyObject> extends ColumnType<RecordType> { | ||
children?: null; | ||
} | ||
/** This is a syntactic sugar for `columns` prop. So HOC will not work on this. */ | ||
declare function Column<RecordType>(_: ColumnProps<RecordType>): null; | ||
declare const Column: <RecordType extends AnyObject>(_: ColumnProps<RecordType>) => null; | ||
export default Column; |
@@ -10,5 +10,3 @@ "use strict"; | ||
// eslint-disable-next-line no-unused-vars | ||
function Column(_) { | ||
return null; | ||
} | ||
const Column = _ => null; | ||
var _default = exports.default = Column; |
import type * as React from 'react'; | ||
import type { AnyObject } from '../_util/type'; | ||
import type { ColumnProps } from './Column'; | ||
import type { ColumnType } from './interface'; | ||
export interface ColumnGroupProps<RecordType> extends Omit<ColumnType<RecordType>, 'children'> { | ||
export interface ColumnGroupProps<RecordType extends AnyObject = AnyObject> extends Omit<ColumnType<RecordType>, 'children'> { | ||
children: React.ReactElement<ColumnProps<RecordType>> | React.ReactElement<ColumnProps<RecordType>>[]; | ||
} | ||
/** This is a syntactic sugar for `columns` prop. So HOC will not work on this. */ | ||
declare function ColumnGroup<RecordType>(_: ColumnGroupProps<RecordType>): null; | ||
declare const ColumnGroup: <RecordType extends AnyObject>(_: ColumnGroupProps<RecordType>) => null; | ||
export default ColumnGroup; |
@@ -10,5 +10,3 @@ "use strict"; | ||
// eslint-disable-next-line no-unused-vars | ||
function ColumnGroup(_) { | ||
return null; | ||
} | ||
const ColumnGroup = _ => null; | ||
var _default = exports.default = ColumnGroup; |
import * as React from 'react'; | ||
import type { AnyObject } from '../_util/type'; | ||
import type { TableLocale } from './interface'; | ||
interface DefaultExpandIconProps<RecordType> { | ||
interface DefaultExpandIconProps<RecordType extends AnyObject = AnyObject> { | ||
prefixCls: string; | ||
onExpand: (record: RecordType, e: React.MouseEvent<HTMLElement>) => void; | ||
record: RecordType; | ||
expanded: boolean; | ||
expandable: boolean; | ||
onExpand: (record: RecordType, e: React.MouseEvent<HTMLButtonElement, MouseEvent>) => void; | ||
} | ||
declare function renderExpandIcon(locale: TableLocale): <RecordType>({ prefixCls, onExpand, record, expanded, expandable, }: DefaultExpandIconProps<RecordType>) => React.JSX.Element; | ||
declare function renderExpandIcon(locale: TableLocale): <RecordType extends AnyObject = AnyObject>(props: DefaultExpandIconProps<RecordType>) => React.JSX.Element; | ||
export default renderExpandIcon; |
@@ -13,4 +13,4 @@ "use strict"; | ||
function renderExpandIcon(locale) { | ||
return function expandIcon(_ref) { | ||
let { | ||
return props => { | ||
const { | ||
prefixCls, | ||
@@ -21,3 +21,3 @@ onExpand, | ||
expandable | ||
} = _ref; | ||
} = props; | ||
const iconPrefix = `${prefixCls}-row-expand-icon`; | ||
@@ -24,0 +24,0 @@ return /*#__PURE__*/React.createElement("button", { |
import * as React from 'react'; | ||
import type { AnyObject } from 'antd/es/_util/type'; | ||
import type { FieldDataNode } from 'rc-tree'; | ||
@@ -11,3 +12,3 @@ import type { FilterState } from '.'; | ||
export type TreeColumnFilterItem = ColumnFilterItem & FilterTreeDataNode; | ||
export interface FilterDropdownProps<RecordType> { | ||
export interface FilterDropdownProps<RecordType extends AnyObject = AnyObject> { | ||
tablePrefixCls: string; | ||
@@ -30,3 +31,3 @@ prefixCls: string; | ||
} | ||
declare function FilterDropdown<RecordType>(props: FilterDropdownProps<RecordType>): React.JSX.Element; | ||
declare const FilterDropdown: <RecordType extends AnyObject = AnyObject>(props: FilterDropdownProps<RecordType>) => React.JSX.Element; | ||
export default FilterDropdown; |
@@ -102,3 +102,3 @@ "use strict"; | ||
} | ||
function FilterDropdown(props) { | ||
const FilterDropdown = props => { | ||
var _a, _b; | ||
@@ -463,3 +463,3 @@ const { | ||
}, filterIcon))); | ||
} | ||
}; | ||
var _default = exports.default = FilterDropdown; |
import * as React from 'react'; | ||
import type { AnyObject } from '../../../_util/type'; | ||
import type { FilterSearchType, TableLocale } from '../../interface'; | ||
interface FilterSearchProps<RecordType = any> { | ||
interface FilterSearchProps<RecordType extends AnyObject = AnyObject> { | ||
value: string; | ||
@@ -10,3 +11,3 @@ onChange: (e: React.ChangeEvent<HTMLInputElement>) => void; | ||
} | ||
declare function FilterSearch<RecordType>({ value, onChange, filterSearch, tablePrefixCls, locale, }: FilterSearchProps<RecordType>): React.JSX.Element | null; | ||
declare const FilterSearch: <RecordType extends AnyObject = AnyObject>(props: FilterSearchProps<RecordType>) => React.JSX.Element | null; | ||
export default FilterSearch; |
@@ -13,10 +13,10 @@ "use strict"; | ||
var _input = _interopRequireDefault(require("../../../input")); | ||
function FilterSearch(_ref) { | ||
let { | ||
const FilterSearch = props => { | ||
const { | ||
value, | ||
onChange, | ||
filterSearch, | ||
tablePrefixCls, | ||
locale | ||
} = _ref; | ||
locale, | ||
onChange | ||
} = props; | ||
if (!filterSearch) { | ||
@@ -36,3 +36,3 @@ return null; | ||
})); | ||
} | ||
}; | ||
var _default = exports.default = FilterSearch; |
import * as React from 'react'; | ||
export interface FilterDropdownMenuWrapperProps { | ||
children?: React.ReactNode; | ||
className?: string; | ||
} | ||
declare const FilterDropdownMenuWrapper: React.ForwardRefExoticComponent<FilterDropdownMenuWrapperProps & React.RefAttributes<HTMLDivElement>>; | ||
declare const FilterDropdownMenuWrapper: React.ForwardRefExoticComponent<FilterDropdownMenuWrapperProps & { | ||
children?: React.ReactNode | undefined; | ||
} & React.RefAttributes<HTMLDivElement>>; | ||
export default FilterDropdownMenuWrapper; |
@@ -0,4 +1,5 @@ | ||
import type { AnyObject } from '../../../_util/type'; | ||
import type { ColumnsType, ColumnType, FilterKey, FilterValue, GetPopupContainer, Key, TableLocale, TransformColumns } from '../../interface'; | ||
import { flattenKeys } from './FilterDropdown'; | ||
export interface FilterState<RecordType> { | ||
export interface FilterState<RecordType extends AnyObject = AnyObject> { | ||
column: ColumnType<RecordType>; | ||
@@ -9,4 +10,4 @@ key: Key; | ||
} | ||
export declare function getFilterData<RecordType>(data: RecordType[], filterStates: FilterState<RecordType>[], childrenColumnName: string): RecordType[]; | ||
export interface FilterConfig<RecordType> { | ||
export declare const getFilterData: <RecordType extends AnyObject = AnyObject>(data: RecordType[], filterStates: FilterState<RecordType>[], childrenColumnName: string) => RecordType[]; | ||
export interface FilterConfig<RecordType extends AnyObject = AnyObject> { | ||
prefixCls: string; | ||
@@ -20,8 +21,4 @@ dropdownPrefixCls: string; | ||
} | ||
declare function useFilter<RecordType>({ prefixCls, dropdownPrefixCls, mergedColumns: rawMergedColumns, onFilterChange, getPopupContainer, locale: tableLocale, rootClassName, }: FilterConfig<RecordType>): [ | ||
TransformColumns<RecordType>, | ||
FilterState<RecordType>[], | ||
Record<string, FilterValue | null> | ||
]; | ||
declare const useFilter: <RecordType extends AnyObject = AnyObject>(props: FilterConfig<RecordType>) => [TransformColumns<RecordType>, FilterState<RecordType>[], Record<string, FilterValue | null>]; | ||
export { flattenKeys }; | ||
export default useFilter; |
@@ -16,3 +16,3 @@ "use strict"; | ||
}); | ||
exports.getFilterData = getFilterData; | ||
exports.getFilterData = void 0; | ||
var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray")); | ||
@@ -23,3 +23,3 @@ var React = _interopRequireWildcard(require("react")); | ||
var _FilterDropdown = _interopRequireWildcard(require("./FilterDropdown")); | ||
function collectFilterStates(columns, init, pos) { | ||
const collectFilterStates = (columns, init, pos) => { | ||
let filterStates = []; | ||
@@ -57,3 +57,3 @@ (columns || []).forEach((column, index) => { | ||
return filterStates; | ||
} | ||
}; | ||
function injectFilter(prefixCls, dropdownPrefixCls, columns, filterStates, locale, triggerFilter, getPopupContainer, pos, rootClassName) { | ||
@@ -104,3 +104,3 @@ return columns.map((column, index) => { | ||
} | ||
function generateFilterInfo(filterStates) { | ||
const generateFilterInfo = filterStates => { | ||
const currentFilters = {}; | ||
@@ -128,5 +128,5 @@ filterStates.forEach(_ref2 => { | ||
return currentFilters; | ||
} | ||
function getFilterData(data, filterStates, childrenColumnName) { | ||
return filterStates.reduce((currentData, filterState) => { | ||
}; | ||
const getFilterData = (data, filterStates, childrenColumnName) => { | ||
const filterDatas = filterStates.reduce((currentData, filterState) => { | ||
const { | ||
@@ -155,3 +155,5 @@ column: { | ||
}, data); | ||
} | ||
return filterDatas; | ||
}; | ||
exports.getFilterData = getFilterData; | ||
const getMergedColumns = rawMergedColumns => rawMergedColumns.flatMap(column => { | ||
@@ -163,4 +165,4 @@ if ('children' in column) { | ||
}); | ||
function useFilter(_ref3) { | ||
let { | ||
const useFilter = props => { | ||
const { | ||
prefixCls, | ||
@@ -173,3 +175,3 @@ dropdownPrefixCls, | ||
rootClassName | ||
} = _ref3; | ||
} = props; | ||
const warning = (0, _warning.devUseWarning)('Table'); | ||
@@ -185,6 +187,6 @@ const mergedColumns = React.useMemo(() => getMergedColumns(rawMergedColumns || []), [rawMergedColumns]); | ||
let filteredKeysIsAllControlled = true; | ||
collectedStates.forEach(_ref4 => { | ||
collectedStates.forEach(_ref3 => { | ||
let { | ||
filteredKeys | ||
} = _ref4; | ||
} = _ref3; | ||
if (filteredKeys !== undefined) { | ||
@@ -200,6 +202,6 @@ filteredKeysIsAllNotControlled = false; | ||
const keyList = (mergedColumns || []).map((column, index) => (0, _util.getColumnKey)(column, (0, _util.getColumnPos)(index))); | ||
return filterStates.filter(_ref5 => { | ||
return filterStates.filter(_ref4 => { | ||
let { | ||
key | ||
} = _ref5; | ||
} = _ref4; | ||
return keyList.includes(key); | ||
@@ -219,6 +221,6 @@ }).map(item => { | ||
const triggerFilter = filterState => { | ||
const newFilterStates = mergedFilterStates.filter(_ref6 => { | ||
const newFilterStates = mergedFilterStates.filter(_ref5 => { | ||
let { | ||
key | ||
} = _ref6; | ||
} = _ref5; | ||
return key !== filterState.key; | ||
@@ -232,3 +234,3 @@ }); | ||
return [transformColumns, mergedFilterStates, filters]; | ||
} | ||
}; | ||
var _default = exports.default = useFilter; |
@@ -0,2 +1,4 @@ | ||
import type { AnyObject } from '../../_util/type'; | ||
import type { GetRowKey, Key } from '../interface'; | ||
export default function useLazyKVMap<RecordType>(data: readonly RecordType[], childrenColumnName: string, getRowKey: GetRowKey<RecordType>): ((key: Key) => RecordType)[]; | ||
declare const useLazyKVMap: <RecordType extends AnyObject = AnyObject>(data: readonly RecordType[], childrenColumnName: string, getRowKey: GetRowKey<RecordType>) => readonly [(key: Key) => RecordType]; | ||
export default useLazyKVMap; |
@@ -7,7 +7,8 @@ "use strict"; | ||
}); | ||
exports.default = useLazyKVMap; | ||
exports.default = void 0; | ||
var React = _interopRequireWildcard(require("react")); | ||
function useLazyKVMap(data, childrenColumnName, getRowKey) { | ||
const useLazyKVMap = (data, childrenColumnName, getRowKey) => { | ||
const mapCacheRef = React.useRef({}); | ||
function getRecordByKey(key) { | ||
var _a; | ||
if (!mapCacheRef.current || mapCacheRef.current.data !== data || mapCacheRef.current.childrenColumnName !== childrenColumnName || mapCacheRef.current.getRowKey !== getRowKey) { | ||
@@ -34,5 +35,6 @@ const kvMap = new Map(); | ||
} | ||
return mapCacheRef.current.kvMap.get(key); | ||
return (_a = mapCacheRef.current.kvMap) === null || _a === void 0 ? void 0 : _a.get(key); | ||
} | ||
return [getRecordByKey]; | ||
} | ||
}; | ||
var _default = exports.default = useLazyKVMap; |
@@ -0,3 +1,4 @@ | ||
import type { AnyObject } from '../../_util/type'; | ||
import type { ColumnsType, ColumnTitleProps, ColumnType, Key, SorterResult, SorterTooltipProps, SortOrder, TableLocale, TransformColumns } from '../interface'; | ||
export interface SortState<RecordType> { | ||
export interface SortState<RecordType extends AnyObject = AnyObject> { | ||
column: ColumnType<RecordType>; | ||
@@ -8,4 +9,4 @@ key: Key; | ||
} | ||
export declare function getSortData<RecordType>(data: readonly RecordType[], sortStates: SortState<RecordType>[], childrenColumnName: string): RecordType[]; | ||
interface SorterConfig<RecordType> { | ||
export declare const getSortData: <RecordType extends AnyObject = AnyObject>(data: readonly RecordType[], sortStates: SortState<RecordType>[], childrenColumnName: string) => RecordType[]; | ||
interface SorterConfig<RecordType extends AnyObject = AnyObject> { | ||
prefixCls: string; | ||
@@ -18,8 +19,3 @@ mergedColumns: ColumnsType<RecordType>; | ||
} | ||
export default function useFilterSorter<RecordType>({ prefixCls, mergedColumns, onSorterChange, sortDirections, tableLocale, showSorterTooltip, }: SorterConfig<RecordType>): [ | ||
TransformColumns<RecordType>, | ||
SortState<RecordType>[], | ||
ColumnTitleProps<RecordType>, | ||
() => SorterResult<RecordType> | SorterResult<RecordType>[] | ||
]; | ||
export {}; | ||
declare const useFilterSorter: <RecordType extends AnyObject = AnyObject>(props: SorterConfig<RecordType>) => [TransformColumns<RecordType>, SortState<RecordType>[], ColumnTitleProps<RecordType>, () => SorterResult<RecordType> | SorterResult<RecordType>[]]; | ||
export default useFilterSorter; |
@@ -9,4 +9,3 @@ "use strict"; | ||
}); | ||
exports.default = useFilterSorter; | ||
exports.getSortData = getSortData; | ||
exports.getSortData = exports.default = void 0; | ||
var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray")); | ||
@@ -22,3 +21,3 @@ var React = _interopRequireWildcard(require("react")); | ||
const DESCEND = 'descend'; | ||
function getMultiplePriority(column) { | ||
const getMultiplePriority = column => { | ||
if (typeof column.sorter === 'object' && typeof column.sorter.multiple === 'number') { | ||
@@ -28,4 +27,4 @@ return column.sorter.multiple; | ||
return false; | ||
} | ||
function getSortFunction(sorter) { | ||
}; | ||
const getSortFunction = sorter => { | ||
if (typeof sorter === 'function') { | ||
@@ -38,4 +37,4 @@ return sorter; | ||
return false; | ||
} | ||
function nextSortDirection(sortDirections, current) { | ||
}; | ||
const nextSortDirection = (sortDirections, current) => { | ||
if (!current) { | ||
@@ -45,6 +44,6 @@ return sortDirections[0]; | ||
return sortDirections[sortDirections.indexOf(current) + 1]; | ||
} | ||
function collectSortStates(columns, init, pos) { | ||
}; | ||
const collectSortStates = (columns, init, pos) => { | ||
let sortStates = []; | ||
function pushState(column, columnPos) { | ||
const pushState = (column, columnPos) => { | ||
sortStates.push({ | ||
@@ -56,3 +55,3 @@ column, | ||
}); | ||
} | ||
}; | ||
(columns || []).forEach((column, index) => { | ||
@@ -82,5 +81,5 @@ const columnPos = (0, _util.getColumnPos)(index, pos); | ||
return sortStates; | ||
} | ||
function injectSorter(prefixCls, columns, sorterStates, triggerSorter, defaultSortDirections, tableLocale, tableShowSorterTooltip, pos) { | ||
return (columns || []).map((column, index) => { | ||
}; | ||
const injectSorter = (prefixCls, columns, sorterStates, triggerSorter, defaultSortDirections, tableLocale, tableShowSorterTooltip, pos) => { | ||
const finalColumns = (columns || []).map((column, index) => { | ||
const columnPos = (0, _util.getColumnPos)(index, pos); | ||
@@ -212,3 +211,4 @@ let newColumn = column; | ||
}); | ||
} | ||
return finalColumns; | ||
}; | ||
const stateToInfo = sorterStates => { | ||
@@ -246,3 +246,3 @@ const { | ||
}; | ||
function getSortData(data, sortStates, childrenColumnName) { | ||
const getSortData = (data, sortStates, childrenColumnName) => { | ||
const innerSorterStates = sortStates.slice().sort((a, b) => b.multiplePriority - a.multiplePriority); | ||
@@ -290,12 +290,13 @@ const cloneData = data.slice(); | ||
}); | ||
} | ||
function useFilterSorter(_ref4) { | ||
let { | ||
}; | ||
exports.getSortData = getSortData; | ||
const useFilterSorter = props => { | ||
const { | ||
prefixCls, | ||
mergedColumns, | ||
onSorterChange, | ||
sortDirections, | ||
tableLocale, | ||
showSorterTooltip | ||
} = _ref4; | ||
showSorterTooltip, | ||
onSorterChange | ||
} = props; | ||
const [sortStates, setSortStates] = React.useState(collectSortStates(mergedColumns, true)); | ||
@@ -320,6 +321,6 @@ const getColumnKeys = (columns, pos) => { | ||
const mergedColumnsKeys = getColumnKeys(mergedColumns); | ||
return sortStates.filter(_ref5 => { | ||
return sortStates.filter(_ref4 => { | ||
let { | ||
key | ||
} = _ref5; | ||
} = _ref4; | ||
return mergedColumnsKeys.includes(key); | ||
@@ -361,7 +362,7 @@ }); | ||
var _a, _b; | ||
const sortColumns = mergedSorterStates.map(_ref6 => { | ||
const sortColumns = mergedSorterStates.map(_ref5 => { | ||
let { | ||
column, | ||
sortOrder | ||
} = _ref6; | ||
} = _ref5; | ||
return { | ||
@@ -384,6 +385,6 @@ column, | ||
} else { | ||
newSorterStates = [].concat((0, _toConsumableArray2.default)(mergedSorterStates.filter(_ref7 => { | ||
newSorterStates = [].concat((0, _toConsumableArray2.default)(mergedSorterStates.filter(_ref6 => { | ||
let { | ||
key | ||
} = _ref7; | ||
} = _ref6; | ||
return key !== sortState.key; | ||
@@ -398,2 +399,3 @@ })), [sortState]); | ||
return [transformColumns, mergedSorterStates, columnTitleSorterProps, getSorters]; | ||
} | ||
}; | ||
var _default = exports.default = useFilterSorter; |
@@ -0,2 +1,4 @@ | ||
import type { AnyObject } from 'antd/es/_util/type'; | ||
import type { ColumnTitleProps, TransformColumns } from '../interface'; | ||
export default function useTitleColumns<RecordType>(columnTitleProps: ColumnTitleProps<RecordType>): [TransformColumns<RecordType>]; | ||
declare const useTitleColumns: <RecordType extends AnyObject = AnyObject>(columnTitleProps: ColumnTitleProps<RecordType>) => readonly [TransformColumns<RecordType>]; | ||
export default useTitleColumns; |
@@ -7,7 +7,7 @@ "use strict"; | ||
}); | ||
exports.default = useTitleColumns; | ||
exports.default = void 0; | ||
var React = _interopRequireWildcard(require("react")); | ||
var _util = require("../util"); | ||
function fillTitle(columns, columnTitleProps) { | ||
return columns.map(column => { | ||
const fillTitle = (columns, columnTitleProps) => { | ||
const finalColumns = columns.map(column => { | ||
const cloneColumn = Object.assign({}, column); | ||
@@ -20,6 +20,8 @@ cloneColumn.title = (0, _util.renderColumnTitle)(column.title, columnTitleProps); | ||
}); | ||
} | ||
function useTitleColumns(columnTitleProps) { | ||
return finalColumns; | ||
}; | ||
const useTitleColumns = columnTitleProps => { | ||
const filledColumns = React.useCallback(columns => fillTitle(columns, columnTitleProps), [columnTitleProps]); | ||
return [filledColumns]; | ||
} | ||
}; | ||
var _default = exports.default = useTitleColumns; |
@@ -46,3 +46,3 @@ import type * as React from 'react'; | ||
export type TableAction = (typeof TableActions)[number]; | ||
export type CompareFn<T> = (a: T, b: T, sortOrder?: SortOrder) => number; | ||
export type CompareFn<T = AnyObject> = (a: T, b: T, sortOrder?: SortOrder) => number; | ||
export interface ColumnFilterItem { | ||
@@ -53,3 +53,3 @@ text: React.ReactNode; | ||
} | ||
export interface ColumnTitleProps<RecordType> { | ||
export interface ColumnTitleProps<RecordType = AnyObject> { | ||
/** @deprecated Please use `sorterColumns` instead. */ | ||
@@ -65,3 +65,3 @@ sortOrder?: SortOrder; | ||
} | ||
export type ColumnTitle<RecordType> = React.ReactNode | ((props: ColumnTitleProps<RecordType>) => React.ReactNode); | ||
export type ColumnTitle<RecordType = AnyObject> = React.ReactNode | ((props: ColumnTitleProps<RecordType>) => React.ReactNode); | ||
export type FilterValue = (Key | boolean)[]; | ||
@@ -88,3 +88,3 @@ export type FilterKey = (string | number)[] | null; | ||
} | ||
export interface ColumnType<RecordType> extends Omit<RcColumnType<RecordType>, 'title'> { | ||
export interface ColumnType<RecordType = AnyObject> extends Omit<RcColumnType<RecordType>, 'title'> { | ||
title?: ColumnTitle<RecordType>; | ||
@@ -123,6 +123,6 @@ sorter?: boolean | CompareFn<RecordType> | { | ||
} | ||
export interface ColumnGroupType<RecordType> extends Omit<ColumnType<RecordType>, 'dataIndex'> { | ||
export interface ColumnGroupType<RecordType = AnyObject> extends Omit<ColumnType<RecordType>, 'dataIndex'> { | ||
children: ColumnsType<RecordType>; | ||
} | ||
export type ColumnsType<RecordType = any> = (ColumnGroupType<RecordType> | ColumnType<RecordType>)[]; | ||
export type ColumnsType<RecordType = AnyObject> = (ColumnGroupType<RecordType> | ColumnType<RecordType>)[]; | ||
export interface SelectionItem { | ||
@@ -133,5 +133,5 @@ key: string; | ||
} | ||
export type SelectionSelectFn<T> = (record: T, selected: boolean, selectedRows: T[], nativeEvent: Event) => void; | ||
export type SelectionSelectFn<T = AnyObject> = (record: T, selected: boolean, selectedRows: T[], nativeEvent: Event) => void; | ||
export type RowSelectMethod = 'all' | 'none' | 'invert' | 'single' | 'multiple'; | ||
export interface TableRowSelection<T> { | ||
export interface TableRowSelection<T = AnyObject> { | ||
/** Keep the selection keys in list even the key not exist in `dataSource` anymore */ | ||
@@ -164,8 +164,8 @@ preserveSelectedRowKeys?: boolean; | ||
} | ||
export type TransformColumns<RecordType> = (columns: ColumnsType<RecordType>) => ColumnsType<RecordType>; | ||
export interface TableCurrentDataSource<RecordType> { | ||
export type TransformColumns<RecordType = AnyObject> = (columns: ColumnsType<RecordType>) => ColumnsType<RecordType>; | ||
export interface TableCurrentDataSource<RecordType = AnyObject> { | ||
currentDataSource: RecordType[]; | ||
action: TableAction; | ||
} | ||
export interface SorterResult<RecordType> { | ||
export interface SorterResult<RecordType = AnyObject> { | ||
column?: ColumnType<RecordType>; | ||
@@ -172,0 +172,0 @@ order?: SortOrder; |
@@ -6,2 +6,3 @@ "use strict"; | ||
}); | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
const TableActions = ['paginate', 'sort', 'filter']; |
import type { TableProps as RcTableProps } from 'rc-table'; | ||
import type { AnyObject } from '../_util/type'; | ||
import type { SizeType } from '../config-provider/SizeContext'; | ||
@@ -6,7 +7,3 @@ import type { SpinProps } from '../spin'; | ||
export type { ColumnsType, TablePaginationConfig }; | ||
/** Same as `TableProps` but we need record parent render times */ | ||
export interface InternalTableProps<RecordType> extends TableProps<RecordType> { | ||
_renderTimes: number; | ||
} | ||
export interface TableProps<RecordType = any> extends Omit<RcTableProps<RecordType>, 'transformColumns' | 'internalHooks' | 'internalRefs' | 'data' | 'columns' | 'scroll' | 'emptyText'> { | ||
export interface TableProps<RecordType = AnyObject> extends Omit<RcTableProps<RecordType>, 'transformColumns' | 'internalHooks' | 'internalRefs' | 'data' | 'columns' | 'scroll' | 'emptyText'> { | ||
dropdownPrefixCls?: string; | ||
@@ -31,3 +28,7 @@ dataSource?: RcTableProps<RecordType>['data']; | ||
} | ||
/** Same as `TableProps` but we need record parent render times */ | ||
export interface InternalTableProps<RecordType extends AnyObject = AnyObject> extends TableProps<RecordType> { | ||
_renderTimes: number; | ||
} | ||
declare const _default: RefInternalTable; | ||
export default _default; |
/** | ||
* Same as `rc-table` but we modify trigger children update logic instead. | ||
*/ | ||
declare const _default: import("rc-table/lib/Table").ForwardGenericTable; | ||
export default _default; | ||
declare const RcTable: import("rc-table/lib/Table").ForwardGenericTable; | ||
export default RcTable; |
@@ -12,3 +12,3 @@ "use strict"; | ||
*/ | ||
var _default = exports.default = (0, _rcTable.genTable)((prev, next) => { | ||
const RcTable = (0, _rcTable.genTable)((prev, next) => { | ||
const { | ||
@@ -21,2 +21,3 @@ _renderTimes: prevRenderTimes | ||
return prevRenderTimes !== nextRenderTimes; | ||
}); | ||
}); | ||
var _default = exports.default = RcTable; |
/** | ||
* Same as `rc-table` but we modify trigger children update logic instead. | ||
*/ | ||
declare const _default: import("rc-table/lib/VirtualTable").ForwardGenericVirtualTable; | ||
export default _default; | ||
declare const RcVirtualTable: import("rc-table/lib/VirtualTable").ForwardGenericVirtualTable; | ||
export default RcVirtualTable; |
@@ -12,3 +12,3 @@ "use strict"; | ||
*/ | ||
var _default = exports.default = (0, _rcTable.genVirtualTable)((prev, next) => { | ||
const RcVirtualTable = (0, _rcTable.genVirtualTable)((prev, next) => { | ||
const { | ||
@@ -21,2 +21,3 @@ _renderTimes: prevRenderTimes | ||
return prevRenderTimes !== nextRenderTimes; | ||
}); | ||
}); | ||
var _default = exports.default = RcVirtualTable; |
@@ -234,4 +234,5 @@ "use strict"; | ||
}; | ||
exports.prepareComponentToken = prepareComponentToken; | ||
const zIndexTableFixed = 2; | ||
// ============================== Export ============================== | ||
exports.prepareComponentToken = prepareComponentToken; | ||
var _default = exports.default = (0, _internal.genStyleHooks)('Table', token => { | ||
@@ -274,3 +275,2 @@ const { | ||
} = token; | ||
const zIndexTableFixed = 2; | ||
const tableToken = (0, _internal.mergeToken)(token, { | ||
@@ -302,3 +302,5 @@ tableFontSize: cellFontSize, | ||
zIndexTableFixed, | ||
zIndexTableSticky: zIndexTableFixed + 1, | ||
zIndexTableSticky: calc(zIndexTableFixed).add(1).equal({ | ||
unit: false | ||
}), | ||
tableFontSizeMiddle: cellFontSizeMD, | ||
@@ -305,0 +307,0 @@ tableFontSizeSmall: cellFontSizeSM, |
@@ -53,3 +53,5 @@ "use strict"; | ||
[`table tr th${componentCls}-selection-column${componentCls}-cell-fix-left`]: { | ||
zIndex: token.zIndexTableFixed + 1 | ||
zIndex: calc(token.zIndexTableFixed).add(1).equal({ | ||
unit: false | ||
}) | ||
}, | ||
@@ -56,0 +58,0 @@ [`table tr th${componentCls}-selection-column::after`]: { |
@@ -0,5 +1,6 @@ | ||
import type { AnyObject } from '../_util/type'; | ||
import type { ColumnTitle, ColumnTitleProps, ColumnType, Key } from './interface'; | ||
export declare function getColumnKey<RecordType>(column: ColumnType<RecordType>, defaultKey: string): Key; | ||
export declare const getColumnKey: <RecordType extends AnyObject = AnyObject>(column: ColumnType<RecordType>, defaultKey: string) => Key; | ||
export declare function getColumnPos(index: number, pos?: string): string; | ||
export declare function renderColumnTitle<RecordType>(title: ColumnTitle<RecordType>, props: ColumnTitleProps<RecordType>): import("react").ReactNode; | ||
export declare const renderColumnTitle: <RecordType extends AnyObject = AnyObject>(title: ColumnTitle<RecordType>, props: ColumnTitleProps<RecordType>) => import("react").ReactNode; | ||
/** | ||
@@ -13,2 +14,2 @@ * Safe get column title | ||
*/ | ||
export declare function safeColumnTitle<RecordType>(title: ColumnTitle<RecordType>, props: ColumnTitleProps<RecordType>): import("react").ReactNode; | ||
export declare const safeColumnTitle: <RecordType extends AnyObject = AnyObject>(title: ColumnTitle<RecordType>, props: ColumnTitleProps<RecordType>) => import("react").ReactNode; |
@@ -6,7 +6,6 @@ "use strict"; | ||
}); | ||
exports.getColumnKey = getColumnKey; | ||
exports.getColumnKey = void 0; | ||
exports.getColumnPos = getColumnPos; | ||
exports.renderColumnTitle = renderColumnTitle; | ||
exports.safeColumnTitle = safeColumnTitle; | ||
function getColumnKey(column, defaultKey) { | ||
exports.safeColumnTitle = exports.renderColumnTitle = void 0; | ||
const getColumnKey = (column, defaultKey) => { | ||
if ('key' in column && column.key !== undefined && column.key !== null) { | ||
@@ -19,7 +18,8 @@ return column.key; | ||
return defaultKey; | ||
} | ||
}; | ||
exports.getColumnKey = getColumnKey; | ||
function getColumnPos(index, pos) { | ||
return pos ? `${pos}-${index}` : `${index}`; | ||
} | ||
function renderColumnTitle(title, props) { | ||
const renderColumnTitle = (title, props) => { | ||
if (typeof title === 'function') { | ||
@@ -29,3 +29,3 @@ return title(props); | ||
return title; | ||
} | ||
}; | ||
/** | ||
@@ -39,6 +39,10 @@ * Safe get column title | ||
*/ | ||
function safeColumnTitle(title, props) { | ||
exports.renderColumnTitle = renderColumnTitle; | ||
const safeColumnTitle = (title, props) => { | ||
const res = renderColumnTitle(title, props); | ||
if (Object.prototype.toString.call(res) === '[object Object]') return ''; | ||
if (Object.prototype.toString.call(res) === '[object Object]') { | ||
return ''; | ||
} | ||
return res; | ||
} | ||
}; | ||
exports.safeColumnTitle = safeColumnTitle; |
@@ -27,3 +27,3 @@ "use strict"; | ||
boxShadowTertiary, | ||
tourZIndexPopup, | ||
zIndexPopup, | ||
colorBgElevated, | ||
@@ -44,3 +44,3 @@ fontWeightStrong, | ||
position: 'absolute', | ||
zIndex: tourZIndexPopup, | ||
zIndex: zIndexPopup, | ||
maxWidth: 'fit-content', | ||
@@ -47,0 +47,0 @@ visibility: 'visible', |
@@ -47,5 +47,5 @@ "use strict"; | ||
}; | ||
const InternalTreeSelect = (_a, ref) => { | ||
var _b; | ||
var { | ||
const InternalTreeSelect = (props, ref) => { | ||
var _a; | ||
const { | ||
prefixCls: customizePrefixCls, | ||
@@ -80,4 +80,4 @@ size: customizeSize, | ||
tagRender | ||
} = _a, | ||
props = __rest(_a, ["prefixCls", "size", "disabled", "bordered", "className", "rootClassName", "treeCheckable", "multiple", "listHeight", "listItemHeight", "placement", "notFoundContent", "switcherIcon", "treeLine", "getPopupContainer", "popupClassName", "dropdownClassName", "treeIcon", "transitionName", "choiceTransitionName", "status", "treeExpandAction", "builtinPlacements", "dropdownMatchSelectWidth", "popupMatchSelectWidth", "allowClear", "variant", "dropdownStyle", "tagRender"]); | ||
} = props, | ||
restProps = __rest(props, ["prefixCls", "size", "disabled", "bordered", "className", "rootClassName", "treeCheckable", "multiple", "listHeight", "listItemHeight", "placement", "notFoundContent", "switcherIcon", "treeLine", "getPopupContainer", "popupClassName", "dropdownClassName", "treeIcon", "transitionName", "choiceTransitionName", "status", "treeExpandAction", "builtinPlacements", "dropdownMatchSelectWidth", "popupMatchSelectWidth", "allowClear", "variant", "dropdownStyle", "tagRender"]); | ||
const { | ||
@@ -118,3 +118,3 @@ getPopupContainer: getContextPopupContainer, | ||
const showSuffixIcon = (0, _useShowArrow.default)(props.suffixIcon, props.showArrow); | ||
const mergedPopupMatchSelectWidth = (_b = popupMatchSelectWidth !== null && popupMatchSelectWidth !== void 0 ? popupMatchSelectWidth : dropdownMatchSelectWidth) !== null && _b !== void 0 ? _b : contextPopupMatchSelectWidth; | ||
const mergedPopupMatchSelectWidth = (_a = popupMatchSelectWidth !== null && popupMatchSelectWidth !== void 0 ? popupMatchSelectWidth : dropdownMatchSelectWidth) !== null && _a !== void 0 ? _a : contextPopupMatchSelectWidth; | ||
// ===================== Form ===================== | ||
@@ -133,3 +133,3 @@ const { | ||
clearIcon | ||
} = (0, _useIcons.default)(Object.assign(Object.assign({}, props), { | ||
} = (0, _useIcons.default)(Object.assign(Object.assign({}, restProps), { | ||
multiple: isMultiple, | ||
@@ -155,3 +155,3 @@ showSuffixIcon, | ||
// ==================== Render ===================== | ||
const selectProps = (0, _omit.default)(props, ['suffixIcon', 'removeIcon', 'clearIcon', 'itemIcon', 'switcherIcon']); | ||
const selectProps = (0, _omit.default)(restProps, ['suffixIcon', 'removeIcon', 'clearIcon', 'itemIcon', 'switcherIcon']); | ||
// ===================== Placement ===================== | ||
@@ -158,0 +158,0 @@ const memoizedPlacement = React.useMemo(() => { |
import type { CSSInterpolation, CSSObject } from '@ant-design/cssinjs'; | ||
import type { AliasToken, FullToken, GetDefaultToken, CSSUtil } from '../../theme/internal'; | ||
import type { AliasToken, CSSUtil, FullToken, GetDefaultToken } from '../../theme/internal'; | ||
export interface TreeSharedToken { | ||
@@ -4,0 +4,0 @@ /** |
@@ -116,3 +116,3 @@ "use strict"; | ||
// ===================== TreeNode ===================== | ||
[`${treeNodeCls}`]: { | ||
[treeNodeCls]: { | ||
display: 'flex', | ||
@@ -149,3 +149,3 @@ alignItems: 'flex-start', | ||
width: titleHeight, | ||
lineHeight: `${(0, _cssinjs.unit)(titleHeight)}`, | ||
lineHeight: (0, _cssinjs.unit)(titleHeight), | ||
textAlign: 'center', | ||
@@ -187,3 +187,3 @@ visibility: 'visible', | ||
margin: 0, | ||
lineHeight: `${(0, _cssinjs.unit)(titleHeight)}`, | ||
lineHeight: (0, _cssinjs.unit)(titleHeight), | ||
textAlign: 'center', | ||
@@ -193,7 +193,20 @@ cursor: 'pointer', | ||
transition: `all ${token.motionDurationSlow}`, | ||
borderRadius: token.borderRadius, | ||
'&-noop': { | ||
cursor: 'unset' | ||
}, | ||
[`&:not(${treeCls}-switcher-noop):hover`]: { | ||
'&:before': { | ||
pointerEvents: 'none', | ||
content: '""', | ||
width: titleHeight, | ||
height: titleHeight, | ||
position: 'absolute', | ||
left: { | ||
_skip_check_: true, | ||
value: 0 | ||
}, | ||
top: 0, | ||
borderRadius: token.borderRadius, | ||
transition: `all ${token.motionDurationSlow}` | ||
}, | ||
[`&:not(${treeCls}-switcher-noop):hover:before`]: { | ||
backgroundColor: token.colorBgTextHover | ||
@@ -252,3 +265,3 @@ }, | ||
color: 'inherit', | ||
lineHeight: `${(0, _cssinjs.unit)(titleHeight)}`, | ||
lineHeight: (0, _cssinjs.unit)(titleHeight), | ||
background: 'transparent', | ||
@@ -269,3 +282,3 @@ borderRadius: token.borderRadius, | ||
height: titleHeight, | ||
lineHeight: `${(0, _cssinjs.unit)(titleHeight)}`, | ||
lineHeight: (0, _cssinjs.unit)(titleHeight), | ||
textAlign: 'center', | ||
@@ -284,3 +297,3 @@ verticalAlign: 'top', | ||
[`${treeCls}-node-content-wrapper`]: Object.assign({ | ||
lineHeight: `${(0, _cssinjs.unit)(titleHeight)}`, | ||
lineHeight: (0, _cssinjs.unit)(titleHeight), | ||
userSelect: 'none' | ||
@@ -287,0 +300,0 @@ }, getDropIndicatorStyle(prefixCls, token)), |
@@ -33,2 +33,3 @@ "use strict"; | ||
var _EllipsisTooltip = _interopRequireDefault(require("./EllipsisTooltip")); | ||
var _util = require("./util"); | ||
var __rest = void 0 && (void 0).__rest || function (s, e) { | ||
@@ -217,3 +218,4 @@ var t = {}; | ||
if (enableEllipsis && cssEllipsis && textEle) { | ||
const currentEllipsis = cssLineClamp ? textEle.offsetHeight < textEle.scrollHeight : textEle.offsetWidth < textEle.scrollWidth; | ||
const [offsetWidth, offsetHeight] = (0, _util.getEleSize)(textEle); | ||
const currentEllipsis = cssLineClamp ? offsetHeight < textEle.scrollHeight : offsetWidth < textEle.scrollWidth; | ||
if (isNativeEllipsis !== currentEllipsis) { | ||
@@ -220,0 +222,0 @@ setIsNativeEllipsis(currentEllipsis); |
export declare function toList<T>(val: T | T[]): T[]; | ||
export declare function getNode(dom: React.ReactNode, defaultNode: React.ReactNode, needDom?: boolean): import("react").ReactNode; | ||
/** | ||
* Get React of element with precision. | ||
* ref: https://github.com/ant-design/ant-design/issues/50143 | ||
*/ | ||
export declare function getEleSize(ele: HTMLElement): [width: number, height: number]; |
@@ -6,2 +6,3 @@ "use strict"; | ||
}); | ||
exports.getEleSize = getEleSize; | ||
exports.getNode = getNode; | ||
@@ -20,2 +21,20 @@ exports.toList = toList; | ||
return dom || needDom && defaultNode; | ||
} | ||
/** | ||
* Get React of element with precision. | ||
* ref: https://github.com/ant-design/ant-design/issues/50143 | ||
*/ | ||
function getEleSize(ele) { | ||
const rect = ele.getBoundingClientRect(); | ||
const { | ||
offsetWidth, | ||
offsetHeight | ||
} = ele; | ||
let returnWidth = offsetWidth; | ||
let returnHeight = offsetHeight; | ||
if (Math.abs(offsetWidth - rect.width) < 1 && Math.abs(offsetHeight - rect.height) < 1) { | ||
returnWidth = rect.width; | ||
returnHeight = rect.height; | ||
} | ||
return [returnWidth, returnHeight]; | ||
} |
@@ -194,3 +194,3 @@ "use strict"; | ||
}); | ||
} catch (e) { | ||
} catch (_a) { | ||
clone = new Blob([originFileObj], { | ||
@@ -218,3 +218,3 @@ type: originFileObj.type | ||
} | ||
} catch (e) { | ||
} catch (_a) { | ||
/* do nothing */ | ||
@@ -221,0 +221,0 @@ } |
@@ -1,1 +0,1 @@ | ||
{"Upload":{"global":["fontSizeHeading3","fontHeight","lineWidth","controlHeightLG","colorTextDisabled","colorText","fontSize","lineHeight","fontFamily","colorFillAlter","colorBorder","borderRadiusLG","motionDurationSlow","padding","lineWidthFocus","colorPrimaryBorder","colorPrimaryHover","margin","colorPrimary","marginXXS","colorTextHeading","fontSizeLG","colorTextDescription","paddingXS","lineType","paddingSM","fontSizeHeading2","colorError","colorErrorBg","colorTextLightSolid","marginXS","colorBgMask","marginXL","fontHeightSM","controlItemBgHover","motionEaseInOutCirc","motionDurationMid","motionEaseInOut"],"component":{"actionsColor":"rgba(0, 0, 0, 0.45)"}},"Form":{"global":["colorText","fontSize","lineHeight","fontFamily","marginLG","colorTextDescription","fontSizeLG","lineWidth","lineType","colorBorder","controlOutlineWidth","controlOutline","paddingSM","controlHeightSM","controlHeightLG","colorError","colorWarning","marginXXS","controlHeight","motionDurationMid","motionEaseOut","motionEaseOutBack","colorSuccess","colorPrimary","motionDurationSlow","motionEaseInOut","margin","screenXSMax","screenSMMax","screenMDMax","screenLGMax"],"component":{"labelRequiredMarkColor":"#ff4d4f","labelColor":"rgba(0, 0, 0, 0.88)","labelFontSize":14,"labelHeight":32,"labelColonMarginInlineStart":2,"labelColonMarginInlineEnd":8,"itemMarginBottom":24,"verticalLabelPadding":"0 0 8px","verticalLabelMargin":0,"inlineItemMarginBottom":0}},"FloatButton":{"global":["colorTextLightSolid","colorBgElevated","controlHeightLG","marginXXL","marginLG","fontSize","fontSizeIcon","controlItemBgHover","paddingXXS","margin","borderRadiusLG","borderRadiusSM","colorText","lineHeight","fontFamily","lineWidth","lineType","colorSplit","boxShadowSecondary","motionDurationMid","colorFillContent","fontSizeLG","fontSizeSM","colorPrimary","colorPrimaryHover","motionDurationSlow","motionEaseInOutCirc"],"component":{"dotOffsetInCircle":5.857864376269049,"dotOffsetInSquare":2.3431457505076194}},"Flex":{"global":["paddingXS","padding","paddingLG"],"component":{}},"Empty":{"global":["controlHeightLG","margin","marginXS","marginXL","fontSize","lineHeight","opacityImage","colorTextDescription"],"component":{}},"Dropdown":{"global":["marginXXS","sizePopupArrow","paddingXXS","motionDurationMid","fontSize","colorTextDisabled","fontSizeIcon","controlPaddingHorizontal","colorBgElevated","boxShadowPopoverArrow","borderRadiusXS","colorText","lineHeight","fontFamily","borderRadiusLG","boxShadowSecondary","lineWidthFocus","colorPrimaryBorder","colorTextDescription","marginXS","fontSizeSM","borderRadiusSM","controlItemBgHover","colorPrimary","controlItemBgActive","controlItemBgActiveHover","colorSplit","paddingXS","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc","colorError","colorTextLightSolid"],"component":{"zIndexPopup":1050,"paddingBlock":5,"arrowOffsetHorizontal":12,"arrowOffsetVertical":8,"arrowShadowWidth":8.970562748477143,"arrowPath":"path('M 0 8 A 4 4 0 0 0 2.82842712474619 6.82842712474619 L 6.585786437626905 3.0710678118654755 A 2 2 0 0 1 9.414213562373096 3.0710678118654755 L 13.17157287525381 6.82842712474619 A 4 4 0 0 0 16 8 Z')","arrowPolygon":"polygon(1.6568542494923806px 100%, 50% 1.6568542494923806px, 14.34314575050762px 100%, 1.6568542494923806px 100%)"}},"Drawer":{"global":["borderRadiusSM","colorBgMask","colorBgElevated","motionDurationSlow","motionDurationMid","paddingXS","padding","paddingLG","fontSizeLG","lineHeightLG","lineWidth","lineType","colorSplit","marginXS","colorIcon","colorIconHover","colorBgTextHover","colorBgTextActive","colorText","fontWeightStrong","boxShadowDrawerLeft","boxShadowDrawerRight","boxShadowDrawerUp","boxShadowDrawerDown","lineWidthFocus","colorPrimaryBorder"],"component":{"zIndexPopup":1000,"footerPaddingBlock":8,"footerPaddingInline":16}},"Select":{"global":["paddingSM","controlHeight","colorText","fontSize","lineHeight","fontFamily","motionDurationMid","motionEaseInOut","colorTextPlaceholder","fontSizeIcon","colorTextQuaternary","motionDurationSlow","colorTextTertiary","paddingXS","controlPaddingHorizontalSM","lineWidth","borderRadius","controlHeightSM","borderRadiusSM","fontSizeLG","borderRadiusLG","borderRadiusXS","controlHeightLG","controlPaddingHorizontal","paddingXXS","colorIcon","colorIconHover","colorBgElevated","boxShadowSecondary","colorTextDescription","fontSizeSM","colorPrimary","colorBgContainerDisabled","colorTextDisabled","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc","colorBorder","colorPrimaryHover","controlOutline","controlOutlineWidth","lineType","colorError","colorErrorHover","colorErrorOutline","colorWarning","colorWarningHover","colorWarningOutline","colorFillTertiary","colorFillSecondary","colorErrorBg","colorErrorBgHover","colorWarningBg","colorWarningBgHover","colorBgContainer","colorSplit"],"component":{"INTERNAL_FIXED_ITEM_MARGIN":2,"zIndexPopup":1050,"optionSelectedColor":"rgba(0, 0, 0, 0.88)","optionSelectedFontWeight":600,"optionSelectedBg":"#e6f4ff","optionActiveBg":"rgba(0, 0, 0, 0.04)","optionPadding":"5px 12px","optionFontSize":14,"optionLineHeight":1.5714285714285714,"optionHeight":32,"selectorBg":"#ffffff","clearBg":"#ffffff","singleItemHeightLG":40,"multipleItemBg":"rgba(0, 0, 0, 0.06)","multipleItemBorderColor":"transparent","multipleItemHeight":24,"multipleItemHeightSM":16,"multipleItemHeightLG":32,"multipleSelectorBgDisabled":"rgba(0, 0, 0, 0.04)","multipleItemColorDisabled":"rgba(0, 0, 0, 0.25)","multipleItemBorderColorDisabled":"transparent","showArrowPaddingInlineEnd":18}},"Checkbox":{"global":["controlInteractiveSize","colorText","fontSize","lineHeight","fontFamily","marginXS","borderRadiusSM","lineWidthFocus","colorPrimaryBorder","colorBgContainer","lineWidth","lineType","colorBorder","motionDurationSlow","lineWidthBold","colorWhite","motionDurationFast","motionEaseInBack","paddingXS","colorPrimary","colorPrimaryHover","motionDurationMid","motionEaseOutBack","fontSizeLG","colorBgContainerDisabled","colorTextDisabled"],"component":{}},"Cascader":{"global":["controlInteractiveSize","colorText","fontSize","lineHeight","fontFamily","marginXS","borderRadiusSM","lineWidthFocus","colorPrimaryBorder","colorBgContainer","lineWidth","lineType","colorBorder","motionDurationSlow","lineWidthBold","colorWhite","motionDurationFast","motionEaseInBack","paddingXS","colorPrimary","colorPrimaryHover","motionDurationMid","motionEaseOutBack","fontSizeLG","colorBgContainerDisabled","colorTextDisabled","colorSplit","controlItemBgHover","paddingXXS","colorTextDescription","fontSizeIcon","colorHighlight"],"component":{"controlWidth":184,"controlItemWidth":111,"dropdownHeight":180,"optionSelectedBg":"#e6f4ff","optionSelectedFontWeight":600,"optionPadding":"5px 12px","menuPadding":4}},"Segmented":{"global":["lineWidth","controlPaddingHorizontal","controlPaddingHorizontalSM","controlHeight","controlHeightLG","controlHeightSM","colorText","fontSize","lineHeight","fontFamily","borderRadius","motionDurationMid","motionEaseInOut","borderRadiusSM","boxShadowTertiary","marginSM","paddingXXS","borderRadiusLG","fontSizeLG","borderRadiusXS","colorTextDisabled","motionDurationSlow"],"component":{"trackPadding":2,"trackBg":"#f5f5f5","itemColor":"rgba(0, 0, 0, 0.65)","itemHoverColor":"rgba(0, 0, 0, 0.88)","itemHoverBg":"rgba(0, 0, 0, 0.06)","itemSelectedBg":"#ffffff","itemActiveBg":"rgba(0, 0, 0, 0.15)","itemSelectedColor":"rgba(0, 0, 0, 0.88)"}},"Result":{"global":["colorInfo","colorError","colorSuccess","colorWarning","lineHeightHeading3","padding","paddingXL","paddingXS","paddingLG","marginXS","lineHeight","colorTextHeading","colorTextDescription","colorFillAlter"],"component":{"titleFontSize":24,"subtitleFontSize":14,"iconFontSize":72,"extraMargin":"24px 0 0 0"}},"Rate":{"global":["colorText","fontSize","lineHeight","fontFamily","marginXS","motionDurationMid","lineWidth"],"component":{"starColor":"#fadb14","starSize":20,"starHoverScale":"scale(1.1)","starBg":"rgba(0, 0, 0, 0.06)"}},"Radio":{"global":["controlOutline","controlOutlineWidth","colorText","fontSize","lineHeight","fontFamily","colorPrimary","motionDurationSlow","motionDurationMid","motionEaseInOutCirc","colorBgContainer","colorBorder","lineWidth","colorBgContainerDisabled","colorTextDisabled","paddingXS","lineType","lineWidthFocus","colorPrimaryBorder","controlHeight","fontSizeLG","controlHeightLG","controlHeightSM","borderRadius","borderRadiusSM","borderRadiusLG","colorPrimaryHover","colorPrimaryActive"],"component":{"radioSize":16,"dotSize":8,"dotColorDisabled":"rgba(0, 0, 0, 0.25)","buttonSolidCheckedColor":"#fff","buttonSolidCheckedBg":"#1677ff","buttonSolidCheckedHoverBg":"#4096ff","buttonSolidCheckedActiveBg":"#0958d9","buttonBg":"#ffffff","buttonCheckedBg":"#ffffff","buttonColor":"rgba(0, 0, 0, 0.88)","buttonCheckedBgDisabled":"rgba(0, 0, 0, 0.15)","buttonCheckedColorDisabled":"rgba(0, 0, 0, 0.25)","buttonPaddingInline":15,"wrapperMarginInlineEnd":8,"radioColor":"#1677ff","radioBgColor":"#ffffff"}},"QRCode":{"global":["colorText","lineWidth","lineType","colorSplit","fontSize","lineHeight","fontFamily","paddingSM","colorWhite","borderRadiusLG","marginXS","controlHeight"],"component":{"QRCodeMaskBackgroundColor":"rgba(255, 255, 255, 0.96)"}},"Carousel":{"global":["colorText","fontSize","lineHeight","fontFamily","motionDurationSlow","colorBgContainer","marginXXS"],"component":{"arrowSize":16,"arrowOffset":8,"dotWidth":16,"dotHeight":3,"dotGap":4,"dotOffset":12,"dotWidthActive":24,"dotActiveWidth":24}},"Card":{"global":["boxShadowCard","padding","paddingLG","fontSize","colorBorderSecondary","boxShadowTertiary","colorText","lineHeight","fontFamily","colorBgContainer","borderRadiusLG","colorTextHeading","fontWeightStrong","lineWidth","lineType","motionDurationMid","colorTextDescription","colorPrimary","fontHeight","marginXXS","marginXS","fontSizeLG","colorFillAlter"],"component":{"headerBg":"transparent","headerFontSize":16,"headerFontSizeSM":14,"headerHeight":56,"headerHeightSM":38,"actionsBg":"#ffffff","actionsLiMargin":"12px 0","tabsMarginBottom":-17,"extraColor":"rgba(0, 0, 0, 0.88)"}},"Calendar":{"global":["controlHeightLG","paddingXXS","padding","controlHeightSM","fontHeightSM","marginXS","lineWidth","paddingSM","paddingXS","colorBgContainer","lineType","borderRadiusLG","colorPrimary","colorTextHeading","colorSplit","colorIcon","motionDurationMid","colorIconHover","fontWeightStrong","colorTextDisabled","colorText","fontSize","motionDurationSlow","borderRadiusSM","colorTextLightSolid","controlItemBgActive","marginXXS","colorFillSecondary","colorTextTertiary","lineHeight","fontFamily","controlItemBgHover","lineWidthBold","screenXS"],"component":{"fullBg":"#ffffff","fullPanelBg":"#ffffff","itemActiveBg":"#e6f4ff","yearControlWidth":80,"monthControlWidth":70,"miniContentHeight":256,"INTERNAL_FIXED_ITEM_MARGIN":2,"cellHoverBg":"rgba(0, 0, 0, 0.04)","cellActiveWithRangeBg":"#e6f4ff","cellHoverWithRangeBg":"#c8dfff","cellRangeBorderColor":"#7cb3ff","cellBgDisabled":"rgba(0, 0, 0, 0.04)","timeColumnWidth":56,"timeColumnHeight":224,"timeCellHeight":28,"cellWidth":36,"cellHeight":24,"textHeight":40,"withoutTimeCellHeight":66,"multipleItemBg":"rgba(0, 0, 0, 0.06)","multipleItemBorderColor":"transparent","multipleItemHeight":24,"multipleItemHeightSM":16,"multipleItemHeightLG":32,"multipleSelectorBgDisabled":"rgba(0, 0, 0, 0.04)","multipleItemColorDisabled":"rgba(0, 0, 0, 0.25)","multipleItemBorderColorDisabled":"transparent"}},"Typography":{"global":["colorText","lineHeight","colorTextDescription","colorSuccess","colorWarning","colorError","colorErrorActive","colorErrorHover","colorTextDisabled","fontSizeHeading1","lineHeightHeading1","colorTextHeading","fontWeightStrong","fontSizeHeading2","lineHeightHeading2","fontSizeHeading3","lineHeightHeading3","fontSizeHeading4","lineHeightHeading4","fontSizeHeading5","lineHeightHeading5","fontFamilyCode","colorLink","motionDurationSlow","colorLinkHover","colorLinkActive","linkDecoration","linkHoverDecoration","marginXXS","paddingSM","marginXS","fontSize"],"component":{"titleMarginTop":"1.2em","titleMarginBottom":"0.5em"}},"TreeSelect":{"global":["colorBgElevated","paddingXS","colorText","fontSize","lineHeight","fontFamily","borderRadius","motionDurationSlow","lineWidthFocus","colorPrimaryBorder","colorPrimary","colorTextDisabled","controlItemBgHover","colorBgTextHover","colorBorder","marginXXS","motionDurationMid","lineWidthBold","controlInteractiveSize","marginXS","borderRadiusSM","colorBgContainer","lineWidth","lineType","colorWhite","motionDurationFast","motionEaseInBack","colorPrimaryHover","motionEaseOutBack","fontSizeLG","colorBgContainerDisabled"],"component":{"titleHeight":24,"nodeHoverBg":"rgba(0, 0, 0, 0.04)","nodeSelectedBg":"#e6f4ff"}},"Tree":{"global":["controlInteractiveSize","colorText","fontSize","lineHeight","fontFamily","marginXS","borderRadiusSM","lineWidthFocus","colorPrimaryBorder","colorBgContainer","lineWidth","lineType","colorBorder","motionDurationSlow","lineWidthBold","colorWhite","motionDurationFast","motionEaseInBack","paddingXS","colorPrimary","colorPrimaryHover","motionDurationMid","motionEaseOutBack","fontSizeLG","colorBgContainerDisabled","colorTextDisabled","borderRadius","controlItemBgHover","colorBgTextHover","marginXXS","motionEaseInOut"],"component":{"titleHeight":24,"nodeHoverBg":"rgba(0, 0, 0, 0.04)","nodeSelectedBg":"#e6f4ff","directoryNodeSelectedColor":"#fff","directoryNodeSelectedBg":"#1677ff"}},"Transfer":{"global":["marginXS","marginXXS","fontSizeIcon","colorBgContainerDisabled","colorText","fontSize","lineHeight","fontFamily","colorBorder","colorSplit","lineWidth","controlItemBgActive","colorTextDisabled","paddingSM","lineType","motionDurationSlow","controlItemBgHover","borderRadiusLG","colorBgContainer","controlItemBgActiveHover","colorLinkHover","paddingXS","controlHeightLG","colorError","colorWarning"],"component":{"listWidth":180,"listHeight":200,"listWidthLG":250,"headerHeight":40,"itemHeight":32,"itemPaddingBlock":5,"transferHeaderVerticalPadding":9}},"Divider":{"global":["margin","marginLG","colorSplit","lineWidth","colorText","fontSize","lineHeight","fontFamily","colorTextHeading","fontSizeLG"],"component":{"textPaddingInline":"1em","orientationMargin":0.05,"verticalMarginInline":8}},"Descriptions":{"global":["colorText","fontSize","lineHeight","fontFamily","lineWidth","lineType","colorSplit","padding","paddingLG","colorTextSecondary","paddingSM","paddingXS","fontWeightStrong","fontSizeLG","lineHeightLG","borderRadiusLG","colorTextTertiary"],"component":{"labelBg":"rgba(0, 0, 0, 0.02)","titleColor":"rgba(0, 0, 0, 0.88)","titleMarginBottom":20,"itemPaddingBottom":16,"itemPaddingEnd":16,"colonMarginRight":8,"colonMarginLeft":2,"contentColor":"rgba(0, 0, 0, 0.88)","extraColor":"rgba(0, 0, 0, 0.88)"}},"DatePicker":{"global":["paddingXXS","controlHeightLG","padding","paddingSM","controlHeight","lineWidth","colorPrimary","colorPrimaryBorder","lineType","colorSplit","colorTextDisabled","colorBorder","borderRadius","motionDurationMid","colorTextPlaceholder","fontSizeLG","controlHeightSM","paddingXS","marginXS","colorTextDescription","lineWidthBold","motionDurationSlow","sizePopupArrow","colorBgElevated","borderRadiusLG","boxShadowSecondary","borderRadiusSM","boxShadowPopoverArrow","fontHeight","fontHeightLG","lineHeightLG","colorText","fontSize","lineHeight","fontFamily","colorBgContainer","colorTextHeading","colorIcon","colorIconHover","fontWeightStrong","colorTextLightSolid","controlItemBgActive","marginXXS","colorFillSecondary","colorTextTertiary","borderRadiusXS","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc","colorBgContainerDisabled","colorError","colorErrorBorderHover","colorWarning","colorWarningBorderHover","colorFillTertiary","colorErrorBg","colorErrorBgHover","colorErrorText","colorWarningBg","colorWarningBgHover","colorWarningText"],"component":{"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7,"paddingInline":11,"paddingInlineSM":7,"paddingInlineLG":11,"addonBg":"rgba(0, 0, 0, 0.02)","activeBorderColor":"#1677ff","hoverBorderColor":"#4096ff","activeShadow":"0 0 0 2px rgba(5, 145, 255, 0.1)","errorActiveShadow":"0 0 0 2px rgba(255, 38, 5, 0.06)","warningActiveShadow":"0 0 0 2px rgba(255, 215, 5, 0.1)","hoverBg":"#ffffff","activeBg":"#ffffff","inputFontSize":14,"inputFontSizeLG":16,"inputFontSizeSM":14,"INTERNAL_FIXED_ITEM_MARGIN":2,"cellHoverBg":"rgba(0, 0, 0, 0.04)","cellActiveWithRangeBg":"#e6f4ff","cellHoverWithRangeBg":"#c8dfff","cellRangeBorderColor":"#7cb3ff","cellBgDisabled":"rgba(0, 0, 0, 0.04)","timeColumnWidth":56,"timeColumnHeight":224,"timeCellHeight":28,"cellWidth":36,"cellHeight":24,"textHeight":40,"withoutTimeCellHeight":66,"multipleItemBg":"rgba(0, 0, 0, 0.06)","multipleItemBorderColor":"transparent","multipleItemHeight":24,"multipleItemHeightSM":16,"multipleItemHeightLG":32,"multipleSelectorBgDisabled":"rgba(0, 0, 0, 0.04)","multipleItemColorDisabled":"rgba(0, 0, 0, 0.25)","multipleItemBorderColorDisabled":"transparent","arrowShadowWidth":8.970562748477143,"arrowPath":"path('M 0 8 A 4 4 0 0 0 2.82842712474619 6.82842712474619 L 6.585786437626905 3.0710678118654755 A 2 2 0 0 1 9.414213562373096 3.0710678118654755 L 13.17157287525381 6.82842712474619 A 4 4 0 0 0 16 8 Z')","arrowPolygon":"polygon(1.6568542494923806px 100%, 50% 1.6568542494923806px, 14.34314575050762px 100%, 1.6568542494923806px 100%)","presetsWidth":120,"presetsMaxWidth":200,"zIndexPopup":1050}},"Button":{"global":["marginXS","lineWidth","lineType","motionDurationMid","motionEaseInOut","colorText","lineWidthFocus","colorPrimaryBorder","controlHeight","borderRadius","opacityLoading","motionDurationSlow","controlHeightSM","paddingXS","borderRadiusSM","controlHeightLG","borderRadiusLG","colorTextDisabled","colorBgContainerDisabled","colorBorder","colorError","colorErrorHover","colorErrorBorderHover","colorErrorActive","colorPrimary","colorTextLightSolid","colorPrimaryHover","colorPrimaryActive","colorLink","colorLinkHover","colorLinkActive","colorBgTextActive","colorErrorBg","colorErrorBgActive","colorBgContainer","fontSize"],"component":{"fontWeight":400,"defaultShadow":"0 2px 0 rgba(0, 0, 0, 0.02)","primaryShadow":"0 2px 0 rgba(5, 145, 255, 0.1)","dangerShadow":"0 2px 0 rgba(255, 38, 5, 0.06)","primaryColor":"#fff","dangerColor":"#fff","borderColorDisabled":"#d9d9d9","defaultGhostColor":"#ffffff","ghostBg":"transparent","defaultGhostBorderColor":"#ffffff","paddingInline":15,"paddingInlineLG":15,"paddingInlineSM":7,"onlyIconSize":16,"onlyIconSizeSM":14,"onlyIconSizeLG":18,"groupBorderColor":"#4096ff","linkHoverBg":"transparent","textHoverBg":"rgba(0, 0, 0, 0.06)","defaultColor":"rgba(0, 0, 0, 0.88)","defaultBg":"#ffffff","defaultBorderColor":"#d9d9d9","defaultBorderColorDisabled":"#d9d9d9","defaultHoverBg":"#ffffff","defaultHoverColor":"#4096ff","defaultHoverBorderColor":"#4096ff","defaultActiveBg":"#ffffff","defaultActiveColor":"#0958d9","defaultActiveBorderColor":"#0958d9","contentFontSize":14,"contentFontSizeSM":14,"contentFontSizeLG":16,"contentLineHeight":1.5714285714285714,"contentLineHeightSM":1.5714285714285714,"contentLineHeightLG":1.5,"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7}},"Breadcrumb":{"global":["colorText","fontSize","lineHeight","fontFamily","motionDurationMid","paddingXXS","borderRadiusSM","fontHeight","marginXXS","colorBgTextHover","lineWidthFocus","colorPrimaryBorder","fontSizeIcon"],"component":{"itemColor":"rgba(0, 0, 0, 0.45)","lastItemColor":"rgba(0, 0, 0, 0.88)","iconFontSize":14,"linkColor":"rgba(0, 0, 0, 0.45)","linkHoverColor":"rgba(0, 0, 0, 0.88)","separatorColor":"rgba(0, 0, 0, 0.45)","separatorMargin":8}},"Badge":{"global":["fontHeight","lineWidth","marginXS","colorBorderBg","colorBgContainer","colorError","colorErrorHover","motionDurationSlow","blue1","blue3","blue6","blue7","purple1","purple3","purple6","purple7","cyan1","cyan3","cyan6","cyan7","green1","green3","green6","green7","magenta1","magenta3","magenta6","magenta7","pink1","pink3","pink6","pink7","red1","red3","red6","red7","orange1","orange3","orange6","orange7","yellow1","yellow3","yellow6","yellow7","volcano1","volcano3","volcano6","volcano7","geekblue1","geekblue3","geekblue6","geekblue7","lime1","lime3","lime6","lime7","gold1","gold3","gold6","gold7","colorText","fontSize","lineHeight","fontFamily","motionDurationMid","paddingXS","colorSuccess","colorInfo","colorTextPlaceholder","colorWarning","motionEaseOutBack"],"component":{"indicatorZIndex":"auto","indicatorHeight":20,"indicatorHeightSM":14,"dotSize":6,"textFontSize":12,"textFontSizeSM":12,"textFontWeight":"normal","statusSize":6}},"BackTop":{"global":["fontSizeHeading3","colorTextDescription","colorTextLightSolid","colorText","controlHeightLG","fontSize","lineHeight","fontFamily","motionDurationMid","screenMD","screenXS"],"component":{"zIndexPopup":10}},"Statistic":{"global":["marginXXS","padding","colorTextDescription","colorTextHeading","fontFamily","colorText","fontSize","lineHeight"],"component":{"titleFontSize":14,"contentFontSize":24}},"Spin":{"global":["colorTextDescription","colorText","fontSize","lineHeight","fontFamily","colorPrimary","motionDurationSlow","motionEaseInOutCirc","colorBgMask","zIndexPopupBase","motionDurationMid","colorWhite","colorTextLightSolid","colorBgContainer","marginXXS","colorFillSecondary"],"component":{"contentHeight":400,"dotSize":20,"dotSizeSM":14,"dotSizeLG":32}},"Space":{"global":["paddingXS","padding","paddingLG"],"component":{}},"Tour":{"global":["borderRadiusLG","padding","paddingXS","borderRadius","borderRadiusXS","colorPrimary","colorFill","boxShadowTertiary","colorBgElevated","fontWeightStrong","marginXS","colorTextLightSolid","colorWhite","motionDurationSlow","colorText","fontSize","lineHeight","fontFamily","colorIcon","borderRadiusSM","motionDurationMid","colorIconHover","colorBgTextHover","colorBgTextActive","lineWidthFocus","colorPrimaryBorder","boxShadowPopoverArrow","sizePopupArrow"],"component":{"zIndexPopup":1070,"closeBtnSize":22,"primaryPrevBtnBg":"rgba(255, 255, 255, 0.15)","primaryNextBtnHoverBg":"rgb(240, 240, 240)","arrowOffsetHorizontal":12,"arrowOffsetVertical":8,"arrowShadowWidth":8.970562748477143,"arrowPath":"path('M 0 8 A 4 4 0 0 0 2.82842712474619 6.82842712474619 L 6.585786437626905 3.0710678118654755 A 2 2 0 0 1 9.414213562373096 3.0710678118654755 L 13.17157287525381 6.82842712474619 A 4 4 0 0 0 16 8 Z')","arrowPolygon":"polygon(1.6568542494923806px 100%, 50% 1.6568542494923806px, 14.34314575050762px 100%, 1.6568542494923806px 100%)"}},"Tooltip":{"global":["borderRadius","colorTextLightSolid","colorBgSpotlight","controlHeight","boxShadowSecondary","paddingSM","paddingXS","colorText","fontSize","lineHeight","fontFamily","blue1","blue3","blue6","blue7","purple1","purple3","purple6","purple7","cyan1","cyan3","cyan6","cyan7","green1","green3","green6","green7","magenta1","magenta3","magenta6","magenta7","pink1","pink3","pink6","pink7","red1","red3","red6","red7","orange1","orange3","orange6","orange7","yellow1","yellow3","yellow6","yellow7","volcano1","volcano3","volcano6","volcano7","geekblue1","geekblue3","geekblue6","geekblue7","lime1","lime3","lime6","lime7","gold1","gold3","gold6","gold7","boxShadowPopoverArrow","sizePopupArrow","borderRadiusXS","motionDurationFast","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"zIndexPopup":1070,"arrowOffsetHorizontal":12,"arrowOffsetVertical":8,"arrowShadowWidth":8.970562748477143,"arrowPath":"path('M 0 8 A 4 4 0 0 0 2.82842712474619 6.82842712474619 L 6.585786437626905 3.0710678118654755 A 2 2 0 0 1 9.414213562373096 3.0710678118654755 L 13.17157287525381 6.82842712474619 A 4 4 0 0 0 16 8 Z')","arrowPolygon":"polygon(1.6568542494923806px 100%, 50% 1.6568542494923806px, 14.34314575050762px 100%, 1.6568542494923806px 100%)"}},"Timeline":{"global":["paddingXXS","colorText","fontSize","lineHeight","fontFamily","lineType","fontSizeSM","colorPrimary","colorError","colorSuccess","colorTextDisabled","lineWidth","margin","controlHeightLG","marginXXS","marginSM","marginXS"],"component":{"tailColor":"rgba(5, 5, 5, 0.06)","tailWidth":2,"dotBorderWidth":2,"dotBg":"#ffffff","itemPaddingBottom":20}},"Tag":{"global":["lineWidth","fontSizeIcon","fontSizeSM","lineHeightSM","paddingXXS","colorText","fontSize","lineHeight","fontFamily","marginXS","lineType","colorBorder","borderRadiusSM","motionDurationMid","colorTextDescription","colorTextHeading","colorTextLightSolid","colorPrimary","colorFillSecondary","colorPrimaryHover","colorPrimaryActive"],"component":{"defaultBg":"#fafafa","defaultColor":"rgba(0, 0, 0, 0.88)"}},"Tabs":{"global":["paddingXXS","borderRadius","marginSM","marginXS","marginXXS","margin","colorBorderSecondary","lineWidth","lineType","lineWidthBold","motionDurationSlow","controlHeight","boxShadowTabsOverflowLeft","boxShadowTabsOverflowRight","boxShadowTabsOverflowTop","boxShadowTabsOverflowBottom","colorBorder","paddingLG","colorText","fontSize","lineHeight","fontFamily","colorBgContainer","borderRadiusLG","boxShadowSecondary","paddingSM","colorTextDescription","fontSizeSM","controlItemBgHover","colorTextDisabled","motionEaseInOut","controlHeightLG","paddingXS","lineWidthFocus","colorPrimaryBorder","colorTextHeading","motionDurationMid","motionEaseOutQuint","motionEaseInQuint"],"component":{"zIndexPopup":1050,"cardBg":"rgba(0, 0, 0, 0.02)","cardHeight":40,"cardPadding":"8px 16px","cardPaddingSM":"6px 16px","cardPaddingLG":"8px 16px 6px","titleFontSize":14,"titleFontSizeLG":16,"titleFontSizeSM":14,"inkBarColor":"#1677ff","horizontalMargin":"0 0 16px 0","horizontalItemGutter":32,"horizontalItemMargin":"","horizontalItemMarginRTL":"","horizontalItemPadding":"12px 0","horizontalItemPaddingSM":"8px 0","horizontalItemPaddingLG":"16px 0","verticalItemPadding":"8px 24px","verticalItemMargin":"16px 0 0 0","itemColor":"rgba(0, 0, 0, 0.88)","itemSelectedColor":"#1677ff","itemHoverColor":"#4096ff","itemActiveColor":"#0958d9","cardGutter":2}},"Table":{"global":["colorTextHeading","colorSplit","colorBgContainer","controlInteractiveSize","padding","fontWeightStrong","lineWidth","lineType","motionDurationMid","colorText","fontSize","lineHeight","fontFamily","margin","paddingXS","marginXXS","fontSizeIcon","motionDurationSlow","colorPrimary","paddingXXS","fontSizeSM","borderRadius","colorTextDescription","colorTextDisabled","controlItemBgHover","controlItemBgActive","boxShadowSecondary","colorLink","colorLinkHover","colorLinkActive","opacityLoading"],"component":{"headerBg":"#fafafa","headerColor":"rgba(0, 0, 0, 0.88)","headerSortActiveBg":"#f0f0f0","headerSortHoverBg":"#f0f0f0","bodySortBg":"#fafafa","rowHoverBg":"#fafafa","rowSelectedBg":"#e6f4ff","rowSelectedHoverBg":"#bae0ff","rowExpandedBg":"rgba(0, 0, 0, 0.02)","cellPaddingBlock":16,"cellPaddingInline":16,"cellPaddingBlockMD":12,"cellPaddingInlineMD":8,"cellPaddingBlockSM":8,"cellPaddingInlineSM":8,"borderColor":"#f0f0f0","headerBorderRadius":8,"footerBg":"#fafafa","footerColor":"rgba(0, 0, 0, 0.88)","cellFontSize":14,"cellFontSizeMD":14,"cellFontSizeSM":14,"headerSplitColor":"#f0f0f0","fixedHeaderSortActiveBg":"#f0f0f0","headerFilterHoverBg":"rgba(0, 0, 0, 0.06)","filterDropdownMenuBg":"#ffffff","filterDropdownBg":"#ffffff","expandIconBg":"#ffffff","selectionColumnWidth":32,"stickyScrollBarBg":"rgba(0, 0, 0, 0.25)","stickyScrollBarBorderRadius":100,"expandIconMarginTop":2.5,"headerIconColor":"rgba(0, 0, 0, 0.29)","headerIconHoverColor":"rgba(0, 0, 0, 0.57)","expandIconHalfInner":7,"expandIconSize":17,"expandIconScale":0.9411764705882353}},"Switch":{"global":["motionDurationMid","colorPrimary","opacityLoading","fontSizeIcon","colorText","fontSize","lineHeight","fontFamily","colorTextQuaternary","colorTextTertiary","lineWidthFocus","colorPrimaryBorder","colorPrimaryHover","colorTextLightSolid","fontSizeSM","marginXXS"],"component":{"trackHeight":22,"trackHeightSM":16,"trackMinWidth":44,"trackMinWidthSM":28,"trackPadding":2,"handleBg":"#fff","handleSize":18,"handleSizeSM":12,"handleShadow":"0 2px 4px 0 rgba(0, 35, 11, 0.2)","innerMinMargin":9,"innerMaxMargin":24,"innerMinMarginSM":6,"innerMaxMarginSM":18}},"Steps":{"global":["colorTextDisabled","controlHeightLG","colorTextLightSolid","colorText","colorPrimary","colorTextDescription","colorTextQuaternary","colorError","colorBorderSecondary","colorSplit","fontSize","lineHeight","fontFamily","motionDurationSlow","lineWidthFocus","colorPrimaryBorder","marginXS","lineWidth","lineType","padding","fontSizeLG","fontWeightStrong","fontSizeSM","paddingSM","paddingXXS","margin","controlHeight","marginXXS","paddingLG","marginSM","paddingXS","controlHeightSM","fontSizeIcon","lineWidthBold","marginLG","borderRadiusSM","motionDurationMid","controlItemBgHover","lineHeightSM","colorBorderBg"],"component":{"titleLineHeight":32,"customIconSize":32,"customIconTop":0,"customIconFontSize":24,"iconSize":32,"iconTop":-0.5,"iconFontSize":14,"iconSizeSM":24,"dotSize":8,"dotCurrentSize":10,"navArrowColor":"rgba(0, 0, 0, 0.25)","navContentMaxWidth":"auto","descriptionMaxWidth":140,"waitIconColor":"rgba(0, 0, 0, 0.25)","waitIconBgColor":"#ffffff","waitIconBorderColor":"rgba(0, 0, 0, 0.25)","finishIconBgColor":"#ffffff","finishIconBorderColor":"#1677ff"}},"Progress":{"global":["marginXXS","colorText","fontSize","lineHeight","fontFamily","motionDurationSlow","motionEaseInOutCirc","colorWhite","colorSuccess","marginXS","paddingXXS","colorBgContainer","motionEaseOutQuint","colorError","fontSizeSM"],"component":{"circleTextColor":"rgba(0, 0, 0, 0.88)","defaultColor":"#1677ff","remainingColor":"rgba(0, 0, 0, 0.06)","lineBorderRadius":100,"circleTextFontSize":"1em","circleIconFontSize":"1.1666666666666667em"}},"Popover":{"global":["colorBgElevated","colorText","fontWeightStrong","boxShadowSecondary","colorTextHeading","borderRadiusLG","fontSize","lineHeight","fontFamily","boxShadowPopoverArrow","sizePopupArrow","borderRadiusXS","blue6","purple6","cyan6","green6","magenta6","pink6","red6","orange6","yellow6","volcano6","geekblue6","lime6","gold6","motionDurationMid","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"titleMinWidth":177,"zIndexPopup":1030,"arrowShadowWidth":8.970562748477143,"arrowPath":"path('M 0 8 A 4 4 0 0 0 2.82842712474619 6.82842712474619 L 6.585786437626905 3.0710678118654755 A 2 2 0 0 1 9.414213562373096 3.0710678118654755 L 13.17157287525381 6.82842712474619 A 4 4 0 0 0 16 8 Z')","arrowPolygon":"polygon(1.6568542494923806px 100%, 50% 1.6568542494923806px, 14.34314575050762px 100%, 1.6568542494923806px 100%)","arrowOffsetHorizontal":12,"arrowOffsetVertical":8,"innerPadding":0,"titleMarginBottom":0,"titlePadding":"5px 16px 4px","titleBorderBottom":"1px solid rgba(5, 5, 5, 0.06)","innerContentPadding":"12px 16px"}},"Popconfirm":{"global":["colorText","colorWarning","marginXXS","marginXS","fontSize","fontWeightStrong","colorTextHeading"],"component":{"zIndexPopup":1060}},"Avatar":{"global":["colorTextLightSolid","colorTextPlaceholder","borderRadius","borderRadiusLG","borderRadiusSM","lineWidth","lineType","colorText","fontSize","lineHeight","fontFamily"],"component":{"containerSize":32,"containerSizeLG":40,"containerSizeSM":24,"textFontSize":18,"textFontSizeLG":24,"textFontSizeSM":14,"groupSpace":4,"groupOverlapping":-8,"groupBorderColor":"#ffffff"}},"App":{"global":["colorText","fontSize","lineHeight","fontFamily"],"component":{}},"Anchor":{"global":["fontSize","fontSizeLG","paddingXXS","motionDurationSlow","lineWidthBold","colorPrimary","lineType","colorSplit","colorText","lineHeight","fontFamily","lineWidth"],"component":{"linkPaddingBlock":4,"linkPaddingInlineStart":16}},"Pagination":{"global":["marginXXS","controlHeightLG","marginSM","paddingXXS","colorText","fontSize","lineHeight","fontFamily","marginXS","lineWidth","lineType","borderRadius","motionDurationMid","colorBgTextHover","colorBgTextActive","fontWeightStrong","colorPrimary","colorPrimaryHover","fontSizeSM","colorTextDisabled","margin","controlHeight","colorTextPlaceholder","motionDurationSlow","lineHeightLG","borderRadiusLG","borderRadiusSM","colorBorder","colorBgContainer","colorBgContainerDisabled","controlOutlineWidth","controlOutline","controlHeightSM","screenLG","screenSM","lineWidthFocus","colorPrimaryBorder"],"component":{"itemBg":"#ffffff","itemSize":32,"itemSizeSM":24,"itemActiveBg":"#ffffff","itemLinkBg":"#ffffff","itemActiveColorDisabled":"rgba(0, 0, 0, 0.25)","itemActiveBgDisabled":"rgba(0, 0, 0, 0.15)","itemInputBg":"#ffffff","miniOptionsSizeChangerTop":0,"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7,"paddingInline":11,"paddingInlineSM":7,"paddingInlineLG":11,"addonBg":"rgba(0, 0, 0, 0.02)","activeBorderColor":"#1677ff","hoverBorderColor":"#4096ff","activeShadow":"0 0 0 2px rgba(5, 145, 255, 0.1)","errorActiveShadow":"0 0 0 2px rgba(255, 38, 5, 0.06)","warningActiveShadow":"0 0 0 2px rgba(255, 215, 5, 0.1)","hoverBg":"#ffffff","activeBg":"#ffffff","inputFontSize":14,"inputFontSizeLG":16,"inputFontSizeSM":14}},"Notification":{"global":["paddingMD","paddingLG","colorBgElevated","fontSizeLG","lineHeightLG","controlHeightLG","margin","paddingContentHorizontalLG","marginLG","colorPrimaryBorderHover","colorPrimary","motionDurationMid","motionEaseInOut","colorText","fontSize","lineHeight","fontFamily","boxShadow","borderRadiusLG","colorSuccess","colorInfo","colorWarning","colorError","colorTextHeading","marginXS","marginSM","colorIcon","borderRadiusSM","colorIconHover","colorBgTextHover","colorBgTextActive","lineWidthFocus","colorPrimaryBorder","motionDurationSlow","colorBgBlur"],"component":{"zIndexPopup":2050,"width":384}},"Modal":{"global":["padding","fontSizeHeading5","lineHeightHeading5","colorSplit","lineType","lineWidth","colorIcon","colorIconHover","controlHeight","fontHeight","screenSMMax","marginXS","colorText","fontSize","lineHeight","fontFamily","margin","paddingLG","fontWeightStrong","borderRadiusLG","boxShadow","zIndexPopupBase","borderRadiusSM","motionDurationMid","fontSizeLG","colorBgTextHover","colorBgTextActive","lineWidthFocus","colorPrimaryBorder","motionDurationSlow","colorBgMask","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"footerBg":"transparent","headerBg":"#ffffff","titleLineHeight":1.5,"titleFontSize":16,"contentBg":"#ffffff","titleColor":"rgba(0, 0, 0, 0.88)","contentPadding":0,"headerPadding":"16px 24px","headerBorderBottom":"1px solid rgba(5, 5, 5, 0.06)","headerMarginBottom":0,"bodyPadding":24,"footerPadding":"8px 16px","footerBorderTop":"1px solid rgba(5, 5, 5, 0.06)","footerBorderRadius":"0 0 8px 8px","footerMarginTop":0,"confirmBodyPadding":"32px 32px 24px","confirmIconMarginInlineEnd":16,"confirmBtnsMarginTop":24}},"Message":{"global":["boxShadow","colorText","colorSuccess","colorError","colorWarning","colorInfo","fontSizeLG","motionEaseInOutCirc","motionDurationSlow","marginXS","paddingXS","borderRadiusLG","fontSize","lineHeight","fontFamily"],"component":{"zIndexPopup":2010,"contentBg":"#ffffff","contentPadding":"9px 12px"}},"Menu":{"global":["colorBgElevated","controlHeightLG","fontSize","motionDurationSlow","motionDurationMid","motionEaseInOut","paddingXS","padding","colorSplit","lineWidth","borderRadiusLG","lineType","colorText","lineHeight","fontFamily","motionEaseOut","borderRadius","margin","colorTextLightSolid","paddingXL","fontSizeLG","boxShadowSecondary","marginXS","lineWidthFocus","colorPrimaryBorder","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"dropdownWidth":160,"zIndexPopup":1050,"radiusItem":8,"itemBorderRadius":8,"radiusSubMenuItem":4,"subMenuItemBorderRadius":4,"colorItemText":"rgba(0, 0, 0, 0.88)","itemColor":"rgba(0, 0, 0, 0.88)","colorItemTextHover":"rgba(0, 0, 0, 0.88)","itemHoverColor":"rgba(0, 0, 0, 0.88)","colorItemTextHoverHorizontal":"#1677ff","horizontalItemHoverColor":"#1677ff","colorGroupTitle":"rgba(0, 0, 0, 0.45)","groupTitleColor":"rgba(0, 0, 0, 0.45)","colorItemTextSelected":"#1677ff","itemSelectedColor":"#1677ff","colorItemTextSelectedHorizontal":"#1677ff","horizontalItemSelectedColor":"#1677ff","colorItemBg":"#ffffff","itemBg":"#ffffff","colorItemBgHover":"rgba(0, 0, 0, 0.06)","itemHoverBg":"rgba(0, 0, 0, 0.06)","colorItemBgActive":"rgba(0, 0, 0, 0.06)","itemActiveBg":"#e6f4ff","colorSubItemBg":"rgba(0, 0, 0, 0.02)","subMenuItemBg":"rgba(0, 0, 0, 0.02)","colorItemBgSelected":"#e6f4ff","itemSelectedBg":"#e6f4ff","colorItemBgSelectedHorizontal":"transparent","horizontalItemSelectedBg":"transparent","colorActiveBarWidth":0,"activeBarWidth":0,"colorActiveBarHeight":2,"activeBarHeight":2,"colorActiveBarBorderSize":1,"activeBarBorderWidth":1,"colorItemTextDisabled":"rgba(0, 0, 0, 0.25)","itemDisabledColor":"rgba(0, 0, 0, 0.25)","colorDangerItemText":"#ff4d4f","dangerItemColor":"#ff4d4f","colorDangerItemTextHover":"#ff4d4f","dangerItemHoverColor":"#ff4d4f","colorDangerItemTextSelected":"#ff4d4f","dangerItemSelectedColor":"#ff4d4f","colorDangerItemBgActive":"#fff2f0","dangerItemActiveBg":"#fff2f0","colorDangerItemBgSelected":"#fff2f0","dangerItemSelectedBg":"#fff2f0","itemMarginInline":4,"horizontalItemBorderRadius":0,"horizontalItemHoverBg":"transparent","itemHeight":40,"groupTitleLineHeight":1.5714285714285714,"collapsedWidth":80,"popupBg":"#ffffff","itemMarginBlock":4,"itemPaddingInline":16,"horizontalLineHeight":"46px","iconSize":14,"iconMarginInlineEnd":10,"collapsedIconSize":16,"groupTitleFontSize":14,"darkItemDisabledColor":"rgba(255, 255, 255, 0.25)","darkItemColor":"rgba(255, 255, 255, 0.65)","darkDangerItemColor":"#ff4d4f","darkItemBg":"#001529","darkPopupBg":"#001529","darkSubMenuItemBg":"#000c17","darkItemSelectedColor":"#fff","darkItemSelectedBg":"#1677ff","darkDangerItemSelectedBg":"#ff4d4f","darkItemHoverBg":"transparent","darkGroupTitleColor":"rgba(255, 255, 255, 0.65)","darkItemHoverColor":"#fff","darkDangerItemHoverColor":"#ff7875","darkDangerItemSelectedColor":"#fff","darkDangerItemActiveBg":"#ff4d4f","itemWidth":"calc(100% - 8px)"}},"ColorPicker":{"global":["colorTextQuaternary","marginSM","colorPrimary","motionDurationMid","colorBgElevated","colorTextDisabled","colorText","colorBgContainerDisabled","borderRadius","marginXS","controlHeight","controlHeightSM","colorBgTextActive","lineWidth","colorBorder","paddingXXS","fontSize","colorPrimaryHover","controlOutline","controlHeightLG","borderRadiusSM","colorFillSecondary","lineWidthBold","colorPrimaryActive","fontSizeSM","lineHeightSM","marginXXS","fontSizeIcon","paddingXS","colorTextPlaceholder","colorFill","colorWhite","fontHeightSM","motionEaseInBack","motionDurationFast","motionEaseOutBack","colorSplit","red6","controlOutlineWidth","colorError","colorWarning","colorErrorHover","colorWarningHover","colorErrorOutline","colorWarningOutline","controlHeightXS","borderRadiusXS","borderRadiusLG","fontSizeLG"],"component":{}},"Collapse":{"global":["paddingXS","paddingSM","padding","paddingLG","borderRadiusLG","lineWidth","lineType","colorBorder","colorText","colorTextHeading","colorTextDisabled","fontSizeLG","lineHeight","lineHeightLG","marginSM","motionDurationSlow","fontSizeIcon","fontHeight","fontHeightLG","fontSize","fontFamily","paddingXXS","motionDurationMid","motionEaseInOut"],"component":{"headerPadding":"12px 16px","headerBg":"rgba(0, 0, 0, 0.02)","contentPadding":"16px 16px","contentBg":"#ffffff"}},"Mentions":{"global":["paddingXXS","colorTextDisabled","controlItemBgHover","controlPaddingHorizontal","colorText","motionDurationSlow","lineHeight","controlHeight","fontSize","fontSizeIcon","colorTextTertiary","colorTextQuaternary","colorBgElevated","paddingLG","borderRadius","borderRadiusLG","boxShadowSecondary","fontFamily","motionDurationMid","colorTextPlaceholder","lineHeightLG","borderRadiusSM","colorBorder","colorBgContainer","lineWidth","lineType","colorBgContainerDisabled","colorError","colorErrorBorderHover","colorWarning","colorWarningBorderHover","colorFillTertiary","colorFillSecondary","colorErrorBg","colorErrorBgHover","colorErrorText","colorWarningBg","colorWarningBgHover","colorWarningText","fontWeightStrong"],"component":{"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7,"paddingInline":11,"paddingInlineSM":7,"paddingInlineLG":11,"addonBg":"rgba(0, 0, 0, 0.02)","activeBorderColor":"#1677ff","hoverBorderColor":"#4096ff","activeShadow":"0 0 0 2px rgba(5, 145, 255, 0.1)","errorActiveShadow":"0 0 0 2px rgba(255, 38, 5, 0.06)","warningActiveShadow":"0 0 0 2px rgba(255, 215, 5, 0.1)","hoverBg":"#ffffff","activeBg":"#ffffff","inputFontSize":14,"inputFontSizeLG":16,"inputFontSizeSM":14,"dropdownHeight":250,"controlItemWidth":100,"zIndexPopup":1050,"itemPaddingVertical":5}},"List":{"global":["controlHeightLG","controlHeight","paddingSM","marginLG","padding","colorPrimary","paddingXS","margin","colorText","colorTextDescription","motionDurationSlow","lineWidth","fontSize","lineHeight","fontFamily","marginXXS","marginXXL","fontHeight","colorSplit","fontSizeSM","colorTextDisabled","fontSizeLG","lineHeightLG","lineType","paddingLG","borderRadiusLG","colorBorder","screenSM","screenMD","marginSM"],"component":{"contentWidth":220,"itemPadding":"12px 0","itemPaddingSM":"8px 16px","itemPaddingLG":"16px 24px","headerBg":"transparent","footerBg":"transparent","emptyTextPadding":16,"metaMarginBottom":16,"avatarMarginRight":16,"titleMarginBottom":12,"descriptionFontSize":14}},"Layout":{"global":["colorText","motionDurationMid","motionDurationSlow","fontSize","borderRadius","fontSizeXL"],"component":{"colorBgHeader":"#001529","colorBgBody":"#f5f5f5","colorBgTrigger":"#002140","bodyBg":"#f5f5f5","headerBg":"#001529","headerHeight":64,"headerPadding":"0 50px","headerColor":"rgba(0, 0, 0, 0.88)","footerPadding":"24px 50px","footerBg":"#f5f5f5","siderBg":"#001529","triggerHeight":48,"triggerBg":"#002140","triggerColor":"#fff","zeroTriggerWidth":40,"zeroTriggerHeight":40,"lightSiderBg":"#ffffff","lightTriggerBg":"#ffffff","lightTriggerColor":"rgba(0, 0, 0, 0.88)"}},"InputNumber":{"global":["paddingXXS","lineWidth","lineType","borderRadius","controlHeightLG","controlHeightSM","colorError","colorTextDescription","motionDurationMid","colorTextDisabled","borderRadiusSM","borderRadiusLG","lineHeightLG","colorText","fontSize","lineHeight","fontFamily","colorTextPlaceholder","controlHeight","motionDurationSlow","colorBorder","colorBgContainer","colorBgContainerDisabled","colorErrorBorderHover","colorWarning","colorWarningBorderHover","colorFillTertiary","colorFillSecondary","colorErrorBg","colorErrorBgHover","colorErrorText","colorWarningBg","colorWarningBgHover","colorWarningText","paddingXS","colorPrimary","fontSizeLG","colorSplit"],"component":{"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7,"paddingInline":11,"paddingInlineSM":7,"paddingInlineLG":11,"addonBg":"rgba(0, 0, 0, 0.02)","activeBorderColor":"#1677ff","hoverBorderColor":"#4096ff","activeShadow":"0 0 0 2px rgba(5, 145, 255, 0.1)","errorActiveShadow":"0 0 0 2px rgba(255, 38, 5, 0.06)","warningActiveShadow":"0 0 0 2px rgba(255, 215, 5, 0.1)","hoverBg":"#ffffff","activeBg":"#ffffff","inputFontSize":14,"inputFontSizeLG":16,"inputFontSizeSM":14,"controlWidth":90,"handleWidth":22,"handleFontSize":7,"handleVisible":"auto","handleActiveBg":"rgba(0, 0, 0, 0.02)","handleBg":"#ffffff","filledHandleBg":"#f0f0f0","handleHoverColor":"#1677ff","handleBorderColor":"#d9d9d9","handleOpacity":0}},"Input":{"global":["paddingXXS","controlHeightSM","lineWidth","colorText","fontSize","lineHeight","fontFamily","borderRadius","motionDurationMid","colorTextPlaceholder","controlHeight","motionDurationSlow","lineHeightLG","borderRadiusLG","borderRadiusSM","colorBorder","colorBgContainer","lineType","colorTextDisabled","colorBgContainerDisabled","colorError","colorErrorBorderHover","colorWarning","colorWarningBorderHover","colorFillTertiary","colorFillSecondary","colorErrorBg","colorErrorBgHover","colorErrorText","colorWarningBg","colorWarningBgHover","colorWarningText","controlHeightLG","paddingLG","colorTextDescription","paddingXS","colorIcon","colorIconHover","colorTextQuaternary","fontSizeIcon","colorTextTertiary","colorPrimary","colorSplit","colorPrimaryHover","colorPrimaryActive"],"component":{"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7,"paddingInline":11,"paddingInlineSM":7,"paddingInlineLG":11,"addonBg":"rgba(0, 0, 0, 0.02)","activeBorderColor":"#1677ff","hoverBorderColor":"#4096ff","activeShadow":"0 0 0 2px rgba(5, 145, 255, 0.1)","errorActiveShadow":"0 0 0 2px rgba(255, 38, 5, 0.06)","warningActiveShadow":"0 0 0 2px rgba(255, 215, 5, 0.1)","hoverBg":"#ffffff","activeBg":"#ffffff","inputFontSize":14,"inputFontSizeLG":16,"inputFontSizeSM":14}},"Skeleton":{"global":["controlHeight","controlHeightLG","controlHeightSM","padding","marginSM","controlHeightXS","borderRadiusSM"],"component":{"color":"rgba(0, 0, 0, 0.06)","colorGradientEnd":"rgba(0, 0, 0, 0.15)","gradientFromColor":"rgba(0, 0, 0, 0.06)","gradientToColor":"rgba(0, 0, 0, 0.15)","titleHeight":16,"blockRadius":4,"paragraphMarginTop":28,"paragraphLiHeight":16}},"Slider":{"global":["controlHeight","controlHeightLG","colorFillContentHover","motionDurationMid","colorText","fontSize","lineHeight","fontFamily","borderRadiusXS","colorPrimaryBorderHover","colorBgElevated","colorTextDescription","motionDurationSlow"],"component":{"controlSize":10,"railSize":4,"handleSize":10,"handleSizeHover":12,"dotSize":8,"handleLineWidth":2,"handleLineWidthHover":2.5,"railBg":"rgba(0, 0, 0, 0.04)","railHoverBg":"rgba(0, 0, 0, 0.06)","trackBg":"#91caff","trackHoverBg":"#69b1ff","handleColor":"#91caff","handleActiveColor":"#1677ff","handleActiveOutlineColor":"rgba(22, 119, 255, 0.2)","handleColorDisabled":"#bfbfbf","dotBorderColor":"#f0f0f0","dotActiveBorderColor":"#91caff","trackBgDisabled":"rgba(0, 0, 0, 0.04)"}},"Image":{"global":["controlHeightLG","colorBgContainerDisabled","motionDurationSlow","paddingXXS","marginXXS","colorTextLightSolid","motionEaseOut","paddingSM","marginXL","margin","paddingLG","marginSM","zIndexPopupBase","colorBgMask","motionDurationMid","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"zIndexPopup":1080,"previewOperationColor":"rgba(255, 255, 255, 0.65)","previewOperationHoverColor":"rgba(255, 255, 255, 0.85)","previewOperationColorDisabled":"rgba(255, 255, 255, 0.25)","previewOperationSize":18}},"Grid":{"global":[],"component":{}},"Alert":{"global":["motionDurationSlow","marginXS","marginSM","fontSize","fontSizeLG","lineHeight","borderRadiusLG","motionEaseInOutCirc","colorText","colorTextHeading","fontFamily","colorSuccess","colorSuccessBorder","colorSuccessBg","colorWarning","colorWarningBorder","colorWarningBg","colorError","colorErrorBorder","colorErrorBg","colorInfo","colorInfoBorder","colorInfoBg","lineWidth","lineType","motionDurationMid","fontSizeIcon","colorIcon","colorIconHover"],"component":{"withDescriptionIconSize":24,"defaultPadding":"8px 12px","withDescriptionPadding":"20px 24px"}},"Affix":{"global":[],"component":{"zIndexPopup":10}}} | ||
{"Typography":{"global":["colorText","lineHeight","colorTextDescription","colorSuccess","colorWarning","colorError","colorErrorActive","colorErrorHover","colorTextDisabled","fontSizeHeading1","lineHeightHeading1","colorTextHeading","fontWeightStrong","fontSizeHeading2","lineHeightHeading2","fontSizeHeading3","lineHeightHeading3","fontSizeHeading4","lineHeightHeading4","fontSizeHeading5","lineHeightHeading5","fontFamilyCode","colorLink","motionDurationSlow","colorLinkHover","colorLinkActive","linkDecoration","linkHoverDecoration","marginXXS","paddingSM","marginXS","fontSize"],"component":{"titleMarginTop":"1.2em","titleMarginBottom":"0.5em"}},"Slider":{"global":["controlHeight","controlHeightLG","colorFillContentHover","motionDurationMid","colorText","fontSize","lineHeight","fontFamily","borderRadiusXS","colorPrimaryBorderHover","colorBgElevated","colorTextDescription","motionDurationSlow"],"component":{"controlSize":10,"railSize":4,"handleSize":10,"handleSizeHover":12,"dotSize":8,"handleLineWidth":2,"handleLineWidthHover":2.5,"railBg":"rgba(0, 0, 0, 0.04)","railHoverBg":"rgba(0, 0, 0, 0.06)","trackBg":"#91caff","trackHoverBg":"#69b1ff","handleColor":"#91caff","handleActiveColor":"#1677ff","handleActiveOutlineColor":"rgba(22, 119, 255, 0.2)","handleColorDisabled":"#bfbfbf","dotBorderColor":"#f0f0f0","dotActiveBorderColor":"#91caff","trackBgDisabled":"rgba(0, 0, 0, 0.04)"}},"Skeleton":{"global":["controlHeight","controlHeightLG","controlHeightSM","padding","marginSM","controlHeightXS","borderRadiusSM"],"component":{"color":"rgba(0, 0, 0, 0.06)","colorGradientEnd":"rgba(0, 0, 0, 0.15)","gradientFromColor":"rgba(0, 0, 0, 0.06)","gradientToColor":"rgba(0, 0, 0, 0.15)","titleHeight":16,"blockRadius":4,"paragraphMarginTop":28,"paragraphLiHeight":16}},"Select":{"global":["paddingSM","controlHeight","colorText","fontSize","lineHeight","fontFamily","motionDurationMid","motionEaseInOut","colorTextPlaceholder","fontSizeIcon","colorTextQuaternary","motionDurationSlow","colorTextTertiary","paddingXS","controlPaddingHorizontalSM","lineWidth","borderRadius","controlHeightSM","borderRadiusSM","fontSizeLG","borderRadiusLG","borderRadiusXS","controlHeightLG","controlPaddingHorizontal","paddingXXS","colorIcon","colorIconHover","colorBgElevated","boxShadowSecondary","colorTextDescription","fontSizeSM","colorPrimary","colorBgContainerDisabled","colorTextDisabled","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc","colorBorder","colorPrimaryHover","controlOutline","controlOutlineWidth","lineType","colorError","colorErrorHover","colorErrorOutline","colorWarning","colorWarningHover","colorWarningOutline","colorFillTertiary","colorFillSecondary","colorErrorBg","colorErrorBgHover","colorWarningBg","colorWarningBgHover","colorBgContainer","colorSplit"],"component":{"INTERNAL_FIXED_ITEM_MARGIN":2,"zIndexPopup":1050,"optionSelectedColor":"rgba(0, 0, 0, 0.88)","optionSelectedFontWeight":600,"optionSelectedBg":"#e6f4ff","optionActiveBg":"rgba(0, 0, 0, 0.04)","optionPadding":"5px 12px","optionFontSize":14,"optionLineHeight":1.5714285714285714,"optionHeight":32,"selectorBg":"#ffffff","clearBg":"#ffffff","singleItemHeightLG":40,"multipleItemBg":"rgba(0, 0, 0, 0.06)","multipleItemBorderColor":"transparent","multipleItemHeight":24,"multipleItemHeightSM":16,"multipleItemHeightLG":32,"multipleSelectorBgDisabled":"rgba(0, 0, 0, 0.04)","multipleItemColorDisabled":"rgba(0, 0, 0, 0.25)","multipleItemBorderColorDisabled":"transparent","showArrowPaddingInlineEnd":18}},"Message":{"global":["boxShadow","colorText","colorSuccess","colorError","colorWarning","colorInfo","fontSizeLG","motionEaseInOutCirc","motionDurationSlow","marginXS","paddingXS","borderRadiusLG","fontSize","lineHeight","fontFamily"],"component":{"zIndexPopup":2010,"contentBg":"#ffffff","contentPadding":"9px 12px"}},"Menu":{"global":["colorBgElevated","controlHeightLG","fontSize","motionDurationSlow","motionDurationMid","motionEaseInOut","paddingXS","padding","colorSplit","lineWidth","borderRadiusLG","lineType","colorText","lineHeight","fontFamily","motionEaseOut","borderRadius","margin","colorTextLightSolid","paddingXL","fontSizeLG","boxShadowSecondary","marginXS","lineWidthFocus","colorPrimaryBorder","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"dropdownWidth":160,"zIndexPopup":1050,"radiusItem":8,"itemBorderRadius":8,"radiusSubMenuItem":4,"subMenuItemBorderRadius":4,"colorItemText":"rgba(0, 0, 0, 0.88)","itemColor":"rgba(0, 0, 0, 0.88)","colorItemTextHover":"rgba(0, 0, 0, 0.88)","itemHoverColor":"rgba(0, 0, 0, 0.88)","colorItemTextHoverHorizontal":"#1677ff","horizontalItemHoverColor":"#1677ff","colorGroupTitle":"rgba(0, 0, 0, 0.45)","groupTitleColor":"rgba(0, 0, 0, 0.45)","colorItemTextSelected":"#1677ff","itemSelectedColor":"#1677ff","colorItemTextSelectedHorizontal":"#1677ff","horizontalItemSelectedColor":"#1677ff","colorItemBg":"#ffffff","itemBg":"#ffffff","colorItemBgHover":"rgba(0, 0, 0, 0.06)","itemHoverBg":"rgba(0, 0, 0, 0.06)","colorItemBgActive":"rgba(0, 0, 0, 0.06)","itemActiveBg":"#e6f4ff","colorSubItemBg":"rgba(0, 0, 0, 0.02)","subMenuItemBg":"rgba(0, 0, 0, 0.02)","colorItemBgSelected":"#e6f4ff","itemSelectedBg":"#e6f4ff","colorItemBgSelectedHorizontal":"transparent","horizontalItemSelectedBg":"transparent","colorActiveBarWidth":0,"activeBarWidth":0,"colorActiveBarHeight":2,"activeBarHeight":2,"colorActiveBarBorderSize":1,"activeBarBorderWidth":1,"colorItemTextDisabled":"rgba(0, 0, 0, 0.25)","itemDisabledColor":"rgba(0, 0, 0, 0.25)","colorDangerItemText":"#ff4d4f","dangerItemColor":"#ff4d4f","colorDangerItemTextHover":"#ff4d4f","dangerItemHoverColor":"#ff4d4f","colorDangerItemTextSelected":"#ff4d4f","dangerItemSelectedColor":"#ff4d4f","colorDangerItemBgActive":"#fff2f0","dangerItemActiveBg":"#fff2f0","colorDangerItemBgSelected":"#fff2f0","dangerItemSelectedBg":"#fff2f0","itemMarginInline":4,"horizontalItemBorderRadius":0,"horizontalItemHoverBg":"transparent","itemHeight":40,"groupTitleLineHeight":1.5714285714285714,"collapsedWidth":80,"popupBg":"#ffffff","itemMarginBlock":4,"itemPaddingInline":16,"horizontalLineHeight":"46px","iconSize":14,"iconMarginInlineEnd":10,"collapsedIconSize":16,"groupTitleFontSize":14,"darkItemDisabledColor":"rgba(255, 255, 255, 0.25)","darkItemColor":"rgba(255, 255, 255, 0.65)","darkDangerItemColor":"#ff4d4f","darkItemBg":"#001529","darkPopupBg":"#001529","darkSubMenuItemBg":"#000c17","darkItemSelectedColor":"#fff","darkItemSelectedBg":"#1677ff","darkDangerItemSelectedBg":"#ff4d4f","darkItemHoverBg":"transparent","darkGroupTitleColor":"rgba(255, 255, 255, 0.65)","darkItemHoverColor":"#fff","darkDangerItemHoverColor":"#ff7875","darkDangerItemSelectedColor":"#fff","darkDangerItemActiveBg":"#ff4d4f","itemWidth":"calc(100% - 8px)"}},"Mentions":{"global":["paddingXXS","colorTextDisabled","controlItemBgHover","controlPaddingHorizontal","colorText","motionDurationSlow","lineHeight","controlHeight","fontSize","fontSizeIcon","colorTextTertiary","colorTextQuaternary","colorBgElevated","paddingLG","borderRadius","borderRadiusLG","boxShadowSecondary","fontFamily","motionDurationMid","colorTextPlaceholder","lineHeightLG","borderRadiusSM","colorBorder","colorBgContainer","lineWidth","lineType","colorBgContainerDisabled","colorError","colorErrorBorderHover","colorWarning","colorWarningBorderHover","colorFillTertiary","colorFillSecondary","colorErrorBg","colorErrorBgHover","colorErrorText","colorWarningBg","colorWarningBgHover","colorWarningText","fontWeightStrong"],"component":{"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7,"paddingInline":11,"paddingInlineSM":7,"paddingInlineLG":11,"addonBg":"rgba(0, 0, 0, 0.02)","activeBorderColor":"#1677ff","hoverBorderColor":"#4096ff","activeShadow":"0 0 0 2px rgba(5, 145, 255, 0.1)","errorActiveShadow":"0 0 0 2px rgba(255, 38, 5, 0.06)","warningActiveShadow":"0 0 0 2px rgba(255, 215, 5, 0.1)","hoverBg":"#ffffff","activeBg":"#ffffff","inputFontSize":14,"inputFontSizeLG":16,"inputFontSizeSM":14,"dropdownHeight":250,"controlItemWidth":100,"zIndexPopup":1050,"itemPaddingVertical":5}},"Flex":{"global":["paddingXS","padding","paddingLG"],"component":{}},"Empty":{"global":["controlHeightLG","margin","marginXS","marginXL","fontSize","lineHeight","opacityImage","colorTextDescription"],"component":{}},"Space":{"global":["paddingXS","padding","paddingLG"],"component":{}},"List":{"global":["controlHeightLG","controlHeight","paddingSM","marginLG","padding","colorPrimary","paddingXS","margin","colorText","colorTextDescription","motionDurationSlow","lineWidth","fontSize","lineHeight","fontFamily","marginXXS","marginXXL","fontHeight","colorSplit","fontSizeSM","colorTextDisabled","fontSizeLG","lineHeightLG","lineType","paddingLG","borderRadiusLG","colorBorder","screenSM","screenMD","marginSM"],"component":{"contentWidth":220,"itemPadding":"12px 0","itemPaddingSM":"8px 16px","itemPaddingLG":"16px 24px","headerBg":"transparent","footerBg":"transparent","emptyTextPadding":16,"metaMarginBottom":16,"avatarMarginRight":16,"titleMarginBottom":12,"descriptionFontSize":14}},"Statistic":{"global":["marginXXS","padding","colorTextDescription","colorTextHeading","fontFamily","colorText","fontSize","lineHeight"],"component":{"titleFontSize":14,"contentFontSize":24}},"Layout":{"global":["colorText","motionDurationMid","motionDurationSlow","fontSize","borderRadius","fontSizeXL"],"component":{"colorBgHeader":"#001529","colorBgBody":"#f5f5f5","colorBgTrigger":"#002140","bodyBg":"#f5f5f5","headerBg":"#001529","headerHeight":64,"headerPadding":"0 50px","headerColor":"rgba(0, 0, 0, 0.88)","footerPadding":"24px 50px","footerBg":"#f5f5f5","siderBg":"#001529","triggerHeight":48,"triggerBg":"#002140","triggerColor":"#fff","zeroTriggerWidth":40,"zeroTriggerHeight":40,"lightSiderBg":"#ffffff","lightTriggerBg":"#ffffff","lightTriggerColor":"rgba(0, 0, 0, 0.88)"}},"InputNumber":{"global":["paddingXXS","lineWidth","lineType","borderRadius","controlHeightLG","controlHeightSM","colorError","colorTextDescription","motionDurationMid","colorTextDisabled","borderRadiusSM","borderRadiusLG","lineHeightLG","colorText","fontSize","lineHeight","fontFamily","colorTextPlaceholder","controlHeight","motionDurationSlow","colorBorder","colorBgContainer","colorBgContainerDisabled","colorErrorBorderHover","colorWarning","colorWarningBorderHover","colorFillTertiary","colorFillSecondary","colorErrorBg","colorErrorBgHover","colorErrorText","colorWarningBg","colorWarningBgHover","colorWarningText","paddingXS","colorPrimary","fontSizeLG","colorSplit"],"component":{"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7,"paddingInline":11,"paddingInlineSM":7,"paddingInlineLG":11,"addonBg":"rgba(0, 0, 0, 0.02)","activeBorderColor":"#1677ff","hoverBorderColor":"#4096ff","activeShadow":"0 0 0 2px rgba(5, 145, 255, 0.1)","errorActiveShadow":"0 0 0 2px rgba(255, 38, 5, 0.06)","warningActiveShadow":"0 0 0 2px rgba(255, 215, 5, 0.1)","hoverBg":"#ffffff","activeBg":"#ffffff","inputFontSize":14,"inputFontSizeLG":16,"inputFontSizeSM":14,"controlWidth":90,"handleWidth":22,"handleFontSize":7,"handleVisible":"auto","handleActiveBg":"rgba(0, 0, 0, 0.02)","handleBg":"#ffffff","filledHandleBg":"#f0f0f0","handleHoverColor":"#1677ff","handleBorderColor":"#d9d9d9","handleOpacity":0}},"TreeSelect":{"global":["colorBgElevated","paddingXS","colorText","fontSize","lineHeight","fontFamily","borderRadius","motionDurationSlow","lineWidthFocus","colorPrimaryBorder","colorPrimary","colorTextDisabled","controlItemBgHover","colorBgTextHover","colorBorder","marginXXS","motionDurationMid","lineWidthBold","controlInteractiveSize","marginXS","borderRadiusSM","colorBgContainer","lineWidth","lineType","colorWhite","motionDurationFast","motionEaseInBack","colorPrimaryHover","motionEaseOutBack","fontSizeLG","colorBgContainerDisabled"],"component":{"titleHeight":24,"nodeHoverBg":"rgba(0, 0, 0, 0.04)","nodeSelectedBg":"#e6f4ff"}},"Segmented":{"global":["lineWidth","controlPaddingHorizontal","controlPaddingHorizontalSM","controlHeight","controlHeightLG","controlHeightSM","colorText","fontSize","lineHeight","fontFamily","borderRadius","motionDurationMid","motionEaseInOut","borderRadiusSM","boxShadowTertiary","marginSM","paddingXXS","borderRadiusLG","fontSizeLG","borderRadiusXS","colorTextDisabled","motionDurationSlow"],"component":{"trackPadding":2,"trackBg":"#f5f5f5","itemColor":"rgba(0, 0, 0, 0.65)","itemHoverColor":"rgba(0, 0, 0, 0.88)","itemHoverBg":"rgba(0, 0, 0, 0.06)","itemSelectedBg":"#ffffff","itemActiveBg":"rgba(0, 0, 0, 0.15)","itemSelectedColor":"rgba(0, 0, 0, 0.88)"}},"Result":{"global":["colorInfo","colorError","colorSuccess","colorWarning","lineHeightHeading3","padding","paddingXL","paddingXS","paddingLG","marginXS","lineHeight","colorTextHeading","colorTextDescription","colorFillAlter"],"component":{"titleFontSize":24,"subtitleFontSize":14,"iconFontSize":72,"extraMargin":"24px 0 0 0"}},"Tree":{"global":["controlInteractiveSize","colorText","fontSize","lineHeight","fontFamily","marginXS","borderRadiusSM","lineWidthFocus","colorPrimaryBorder","colorBgContainer","lineWidth","lineType","colorBorder","motionDurationSlow","lineWidthBold","colorWhite","motionDurationFast","motionEaseInBack","paddingXS","colorPrimary","colorPrimaryHover","motionDurationMid","motionEaseOutBack","fontSizeLG","colorBgContainerDisabled","colorTextDisabled","borderRadius","controlItemBgHover","colorBgTextHover","marginXXS","motionEaseInOut"],"component":{"titleHeight":24,"nodeHoverBg":"rgba(0, 0, 0, 0.04)","nodeSelectedBg":"#e6f4ff","directoryNodeSelectedColor":"#fff","directoryNodeSelectedBg":"#1677ff"}},"Transfer":{"global":["marginXS","marginXXS","fontSizeIcon","colorBgContainerDisabled","colorText","fontSize","lineHeight","fontFamily","colorBorder","colorSplit","lineWidth","controlItemBgActive","colorTextDisabled","paddingSM","lineType","motionDurationSlow","controlItemBgHover","borderRadiusLG","colorBgContainer","controlItemBgActiveHover","colorLinkHover","paddingXS","controlHeightLG","colorError","colorWarning"],"component":{"listWidth":180,"listHeight":200,"listWidthLG":250,"headerHeight":40,"itemHeight":32,"itemPaddingBlock":5,"transferHeaderVerticalPadding":9}},"Tour":{"global":["borderRadiusLG","padding","paddingXS","borderRadius","borderRadiusXS","colorPrimary","colorFill","boxShadowTertiary","colorBgElevated","fontWeightStrong","marginXS","colorTextLightSolid","colorWhite","motionDurationSlow","colorText","fontSize","lineHeight","fontFamily","colorIcon","borderRadiusSM","motionDurationMid","colorIconHover","colorBgTextHover","colorBgTextActive","lineWidthFocus","colorPrimaryBorder","boxShadowPopoverArrow","sizePopupArrow"],"component":{"zIndexPopup":1070,"closeBtnSize":22,"primaryPrevBtnBg":"rgba(255, 255, 255, 0.15)","primaryNextBtnHoverBg":"rgb(240, 240, 240)","arrowOffsetHorizontal":12,"arrowOffsetVertical":8,"arrowShadowWidth":8.970562748477143,"arrowPath":"path('M 0 8 A 4 4 0 0 0 2.82842712474619 6.82842712474619 L 6.585786437626905 3.0710678118654755 A 2 2 0 0 1 9.414213562373096 3.0710678118654755 L 13.17157287525381 6.82842712474619 A 4 4 0 0 0 16 8 Z')","arrowPolygon":"polygon(1.6568542494923806px 100%, 50% 1.6568542494923806px, 14.34314575050762px 100%, 1.6568542494923806px 100%)"}},"Tooltip":{"global":["borderRadius","colorTextLightSolid","colorBgSpotlight","controlHeight","boxShadowSecondary","paddingSM","paddingXS","colorText","fontSize","lineHeight","fontFamily","blue1","blue3","blue6","blue7","purple1","purple3","purple6","purple7","cyan1","cyan3","cyan6","cyan7","green1","green3","green6","green7","magenta1","magenta3","magenta6","magenta7","pink1","pink3","pink6","pink7","red1","red3","red6","red7","orange1","orange3","orange6","orange7","yellow1","yellow3","yellow6","yellow7","volcano1","volcano3","volcano6","volcano7","geekblue1","geekblue3","geekblue6","geekblue7","lime1","lime3","lime6","lime7","gold1","gold3","gold6","gold7","boxShadowPopoverArrow","sizePopupArrow","borderRadiusXS","motionDurationFast","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"zIndexPopup":1070,"arrowOffsetHorizontal":12,"arrowOffsetVertical":8,"arrowShadowWidth":8.970562748477143,"arrowPath":"path('M 0 8 A 4 4 0 0 0 2.82842712474619 6.82842712474619 L 6.585786437626905 3.0710678118654755 A 2 2 0 0 1 9.414213562373096 3.0710678118654755 L 13.17157287525381 6.82842712474619 A 4 4 0 0 0 16 8 Z')","arrowPolygon":"polygon(1.6568542494923806px 100%, 50% 1.6568542494923806px, 14.34314575050762px 100%, 1.6568542494923806px 100%)"}},"Upload":{"global":["fontSizeHeading3","fontHeight","lineWidth","controlHeightLG","colorTextDisabled","colorText","fontSize","lineHeight","fontFamily","colorFillAlter","colorBorder","borderRadiusLG","motionDurationSlow","padding","lineWidthFocus","colorPrimaryBorder","colorPrimaryHover","margin","colorPrimary","marginXXS","colorTextHeading","fontSizeLG","colorTextDescription","paddingXS","lineType","paddingSM","fontSizeHeading2","colorError","colorErrorBg","colorTextLightSolid","marginXS","colorBgMask","marginXL","fontHeightSM","controlItemBgHover","motionEaseInOutCirc","motionDurationMid","motionEaseInOut"],"component":{"actionsColor":"rgba(0, 0, 0, 0.45)"}},"Timeline":{"global":["paddingXXS","colorText","fontSize","lineHeight","fontFamily","lineType","fontSizeSM","colorPrimary","colorError","colorSuccess","colorTextDisabled","lineWidth","margin","controlHeightLG","marginXXS","marginSM","marginXS"],"component":{"tailColor":"rgba(5, 5, 5, 0.06)","tailWidth":2,"dotBorderWidth":2,"dotBg":"#ffffff","itemPaddingBottom":20}},"Tag":{"global":["lineWidth","fontSizeIcon","fontSizeSM","lineHeightSM","paddingXXS","colorText","fontSize","lineHeight","fontFamily","marginXS","lineType","colorBorder","borderRadiusSM","motionDurationMid","colorTextDescription","colorTextHeading","colorTextLightSolid","colorPrimary","colorFillSecondary","colorPrimaryHover","colorPrimaryActive"],"component":{"defaultBg":"#fafafa","defaultColor":"rgba(0, 0, 0, 0.88)"}},"Tabs":{"global":["paddingXXS","borderRadius","marginSM","marginXS","marginXXS","margin","colorBorderSecondary","lineWidth","lineType","lineWidthBold","motionDurationSlow","controlHeight","boxShadowTabsOverflowLeft","boxShadowTabsOverflowRight","boxShadowTabsOverflowTop","boxShadowTabsOverflowBottom","colorBorder","paddingLG","colorText","fontSize","lineHeight","fontFamily","colorBgContainer","borderRadiusLG","boxShadowSecondary","paddingSM","colorTextDescription","fontSizeSM","controlItemBgHover","colorTextDisabled","motionEaseInOut","controlHeightLG","paddingXS","lineWidthFocus","colorPrimaryBorder","colorTextHeading","motionDurationMid","motionEaseOutQuint","motionEaseInQuint"],"component":{"zIndexPopup":1050,"cardBg":"rgba(0, 0, 0, 0.02)","cardHeight":40,"cardPadding":"8px 16px","cardPaddingSM":"6px 16px","cardPaddingLG":"8px 16px 6px","titleFontSize":14,"titleFontSizeLG":16,"titleFontSizeSM":14,"inkBarColor":"#1677ff","horizontalMargin":"0 0 16px 0","horizontalItemGutter":32,"horizontalItemMargin":"","horizontalItemMarginRTL":"","horizontalItemPadding":"12px 0","horizontalItemPaddingSM":"8px 0","horizontalItemPaddingLG":"16px 0","verticalItemPadding":"8px 24px","verticalItemMargin":"16px 0 0 0","itemColor":"rgba(0, 0, 0, 0.88)","itemSelectedColor":"#1677ff","itemHoverColor":"#4096ff","itemActiveColor":"#0958d9","cardGutter":2}},"Table":{"global":["colorTextHeading","colorSplit","colorBgContainer","controlInteractiveSize","padding","fontWeightStrong","lineWidth","lineType","motionDurationMid","colorText","fontSize","lineHeight","fontFamily","margin","paddingXS","marginXXS","fontSizeIcon","motionDurationSlow","colorPrimary","paddingXXS","fontSizeSM","borderRadius","colorTextDescription","colorTextDisabled","controlItemBgHover","controlItemBgActive","boxShadowSecondary","colorLink","colorLinkHover","colorLinkActive","opacityLoading"],"component":{"headerBg":"#fafafa","headerColor":"rgba(0, 0, 0, 0.88)","headerSortActiveBg":"#f0f0f0","headerSortHoverBg":"#f0f0f0","bodySortBg":"#fafafa","rowHoverBg":"#fafafa","rowSelectedBg":"#e6f4ff","rowSelectedHoverBg":"#bae0ff","rowExpandedBg":"rgba(0, 0, 0, 0.02)","cellPaddingBlock":16,"cellPaddingInline":16,"cellPaddingBlockMD":12,"cellPaddingInlineMD":8,"cellPaddingBlockSM":8,"cellPaddingInlineSM":8,"borderColor":"#f0f0f0","headerBorderRadius":8,"footerBg":"#fafafa","footerColor":"rgba(0, 0, 0, 0.88)","cellFontSize":14,"cellFontSizeMD":14,"cellFontSizeSM":14,"headerSplitColor":"#f0f0f0","fixedHeaderSortActiveBg":"#f0f0f0","headerFilterHoverBg":"rgba(0, 0, 0, 0.06)","filterDropdownMenuBg":"#ffffff","filterDropdownBg":"#ffffff","expandIconBg":"#ffffff","selectionColumnWidth":32,"stickyScrollBarBg":"rgba(0, 0, 0, 0.25)","stickyScrollBarBorderRadius":100,"expandIconMarginTop":2.5,"headerIconColor":"rgba(0, 0, 0, 0.29)","headerIconHoverColor":"rgba(0, 0, 0, 0.57)","expandIconHalfInner":7,"expandIconSize":17,"expandIconScale":0.9411764705882353}},"Steps":{"global":["colorTextDisabled","controlHeightLG","colorTextLightSolid","colorText","colorPrimary","colorTextDescription","colorTextQuaternary","colorError","colorBorderSecondary","colorSplit","fontSize","lineHeight","fontFamily","motionDurationSlow","lineWidthFocus","colorPrimaryBorder","marginXS","lineWidth","lineType","padding","fontSizeLG","fontWeightStrong","fontSizeSM","paddingSM","paddingXXS","margin","controlHeight","marginXXS","paddingLG","marginSM","paddingXS","controlHeightSM","fontSizeIcon","lineWidthBold","marginLG","borderRadiusSM","motionDurationMid","controlItemBgHover","lineHeightSM","colorBorderBg"],"component":{"titleLineHeight":32,"customIconSize":32,"customIconTop":0,"customIconFontSize":24,"iconSize":32,"iconTop":-0.5,"iconFontSize":14,"iconSizeSM":24,"dotSize":8,"dotCurrentSize":10,"navArrowColor":"rgba(0, 0, 0, 0.25)","navContentMaxWidth":"auto","descriptionMaxWidth":140,"waitIconColor":"rgba(0, 0, 0, 0.25)","waitIconBgColor":"#ffffff","waitIconBorderColor":"rgba(0, 0, 0, 0.25)","finishIconBgColor":"#ffffff","finishIconBorderColor":"#1677ff"}},"Input":{"global":["paddingXXS","controlHeightSM","lineWidth","colorText","fontSize","lineHeight","fontFamily","borderRadius","motionDurationMid","colorTextPlaceholder","controlHeight","motionDurationSlow","lineHeightLG","borderRadiusLG","borderRadiusSM","colorBorder","colorBgContainer","lineType","colorTextDisabled","colorBgContainerDisabled","colorError","colorErrorBorderHover","colorWarning","colorWarningBorderHover","colorFillTertiary","colorFillSecondary","colorErrorBg","colorErrorBgHover","colorErrorText","colorWarningBg","colorWarningBgHover","colorWarningText","controlHeightLG","paddingLG","colorTextDescription","paddingXS","colorIcon","colorIconHover","colorTextQuaternary","fontSizeIcon","colorTextTertiary","colorPrimary","colorSplit","colorPrimaryHover","colorPrimaryActive"],"component":{"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7,"paddingInline":11,"paddingInlineSM":7,"paddingInlineLG":11,"addonBg":"rgba(0, 0, 0, 0.02)","activeBorderColor":"#1677ff","hoverBorderColor":"#4096ff","activeShadow":"0 0 0 2px rgba(5, 145, 255, 0.1)","errorActiveShadow":"0 0 0 2px rgba(255, 38, 5, 0.06)","warningActiveShadow":"0 0 0 2px rgba(255, 215, 5, 0.1)","hoverBg":"#ffffff","activeBg":"#ffffff","inputFontSize":14,"inputFontSizeLG":16,"inputFontSizeSM":14}},"Image":{"global":["controlHeightLG","colorBgContainerDisabled","motionDurationSlow","paddingXXS","marginXXS","colorTextLightSolid","motionEaseOut","paddingSM","marginXL","margin","paddingLG","marginSM","zIndexPopupBase","colorBgMask","motionDurationMid","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"zIndexPopup":1080,"previewOperationColor":"rgba(255, 255, 255, 0.65)","previewOperationHoverColor":"rgba(255, 255, 255, 0.85)","previewOperationColorDisabled":"rgba(255, 255, 255, 0.25)","previewOperationSize":18}},"Spin":{"global":["colorTextDescription","colorText","fontSize","lineHeight","fontFamily","colorPrimary","motionDurationSlow","motionEaseInOutCirc","colorBgMask","zIndexPopupBase","motionDurationMid","colorWhite","colorTextLightSolid","colorBgContainer","marginXXS","colorFillSecondary"],"component":{"contentHeight":400,"dotSize":20,"dotSizeSM":14,"dotSizeLG":32}},"Rate":{"global":["colorText","fontSize","lineHeight","fontFamily","marginXS","motionDurationMid","lineWidth"],"component":{"starColor":"#fadb14","starSize":20,"starHoverScale":"scale(1.1)","starBg":"rgba(0, 0, 0, 0.06)"}},"Radio":{"global":["controlOutline","controlOutlineWidth","colorText","fontSize","lineHeight","fontFamily","colorPrimary","motionDurationSlow","motionDurationMid","motionEaseInOutCirc","colorBgContainer","colorBorder","lineWidth","colorBgContainerDisabled","colorTextDisabled","paddingXS","lineType","lineWidthFocus","colorPrimaryBorder","controlHeight","fontSizeLG","controlHeightLG","controlHeightSM","borderRadius","borderRadiusSM","borderRadiusLG","colorPrimaryHover","colorPrimaryActive"],"component":{"radioSize":16,"dotSize":8,"dotColorDisabled":"rgba(0, 0, 0, 0.25)","buttonSolidCheckedColor":"#fff","buttonSolidCheckedBg":"#1677ff","buttonSolidCheckedHoverBg":"#4096ff","buttonSolidCheckedActiveBg":"#0958d9","buttonBg":"#ffffff","buttonCheckedBg":"#ffffff","buttonColor":"rgba(0, 0, 0, 0.88)","buttonCheckedBgDisabled":"rgba(0, 0, 0, 0.15)","buttonCheckedColorDisabled":"rgba(0, 0, 0, 0.25)","buttonPaddingInline":15,"wrapperMarginInlineEnd":8,"radioColor":"#1677ff","radioBgColor":"#ffffff"}},"QRCode":{"global":["colorText","lineWidth","lineType","colorSplit","fontSize","lineHeight","fontFamily","paddingSM","colorWhite","borderRadiusLG","marginXS","controlHeight"],"component":{"QRCodeMaskBackgroundColor":"rgba(255, 255, 255, 0.96)"}},"Progress":{"global":["marginXXS","colorText","fontSize","lineHeight","fontFamily","motionDurationSlow","motionEaseInOutCirc","colorWhite","colorSuccess","marginXS","paddingXXS","colorBgContainer","motionEaseOutQuint","colorError","fontSizeSM"],"component":{"circleTextColor":"rgba(0, 0, 0, 0.88)","defaultColor":"#1677ff","remainingColor":"rgba(0, 0, 0, 0.06)","lineBorderRadius":100,"circleTextFontSize":"1em","circleIconFontSize":"1.1666666666666667em"}},"Popover":{"global":["colorBgElevated","colorText","fontWeightStrong","boxShadowSecondary","colorTextHeading","borderRadiusLG","fontSize","lineHeight","fontFamily","boxShadowPopoverArrow","sizePopupArrow","borderRadiusXS","blue6","purple6","cyan6","green6","magenta6","pink6","red6","orange6","yellow6","volcano6","geekblue6","lime6","gold6","motionDurationMid","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"titleMinWidth":177,"zIndexPopup":1030,"arrowShadowWidth":8.970562748477143,"arrowPath":"path('M 0 8 A 4 4 0 0 0 2.82842712474619 6.82842712474619 L 6.585786437626905 3.0710678118654755 A 2 2 0 0 1 9.414213562373096 3.0710678118654755 L 13.17157287525381 6.82842712474619 A 4 4 0 0 0 16 8 Z')","arrowPolygon":"polygon(1.6568542494923806px 100%, 50% 1.6568542494923806px, 14.34314575050762px 100%, 1.6568542494923806px 100%)","arrowOffsetHorizontal":12,"arrowOffsetVertical":8,"innerPadding":0,"titleMarginBottom":0,"titlePadding":"5px 16px 4px","titleBorderBottom":"1px solid rgba(5, 5, 5, 0.06)","innerContentPadding":"12px 16px"}},"Popconfirm":{"global":["colorText","colorWarning","marginXXS","marginXS","fontSize","fontWeightStrong","colorTextHeading"],"component":{"zIndexPopup":1060}},"Pagination":{"global":["marginXXS","controlHeightLG","marginSM","paddingXXS","colorText","fontSize","lineHeight","fontFamily","marginXS","lineWidth","lineType","borderRadius","motionDurationMid","colorBgTextHover","colorBgTextActive","fontWeightStrong","colorPrimary","colorPrimaryHover","fontSizeSM","colorTextDisabled","margin","controlHeight","colorTextPlaceholder","motionDurationSlow","lineHeightLG","borderRadiusLG","borderRadiusSM","colorBorder","colorBgContainer","colorBgContainerDisabled","controlOutlineWidth","controlOutline","controlHeightSM","screenLG","screenSM","lineWidthFocus","colorPrimaryBorder"],"component":{"itemBg":"#ffffff","itemSize":32,"itemSizeSM":24,"itemActiveBg":"#ffffff","itemLinkBg":"#ffffff","itemActiveColorDisabled":"rgba(0, 0, 0, 0.25)","itemActiveBgDisabled":"rgba(0, 0, 0, 0.15)","itemInputBg":"#ffffff","miniOptionsSizeChangerTop":0,"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7,"paddingInline":11,"paddingInlineSM":7,"paddingInlineLG":11,"addonBg":"rgba(0, 0, 0, 0.02)","activeBorderColor":"#1677ff","hoverBorderColor":"#4096ff","activeShadow":"0 0 0 2px rgba(5, 145, 255, 0.1)","errorActiveShadow":"0 0 0 2px rgba(255, 38, 5, 0.06)","warningActiveShadow":"0 0 0 2px rgba(255, 215, 5, 0.1)","hoverBg":"#ffffff","activeBg":"#ffffff","inputFontSize":14,"inputFontSizeLG":16,"inputFontSizeSM":14}},"Notification":{"global":["paddingMD","paddingLG","colorBgElevated","fontSizeLG","lineHeightLG","controlHeightLG","margin","paddingContentHorizontalLG","marginLG","colorPrimaryBorderHover","colorPrimary","motionDurationMid","motionEaseInOut","colorText","fontSize","lineHeight","fontFamily","boxShadow","borderRadiusLG","colorSuccess","colorInfo","colorWarning","colorError","colorTextHeading","marginXS","marginSM","colorIcon","borderRadiusSM","colorIconHover","colorBgTextHover","colorBgTextActive","lineWidthFocus","colorPrimaryBorder","motionDurationSlow","colorBgBlur"],"component":{"zIndexPopup":2050,"width":384}},"Modal":{"global":["padding","fontSizeHeading5","lineHeightHeading5","colorSplit","lineType","lineWidth","colorIcon","colorIconHover","controlHeight","fontHeight","screenSMMax","marginXS","colorText","fontSize","lineHeight","fontFamily","margin","paddingLG","fontWeightStrong","borderRadiusLG","boxShadow","zIndexPopupBase","borderRadiusSM","motionDurationMid","fontSizeLG","colorBgTextHover","colorBgTextActive","lineWidthFocus","colorPrimaryBorder","motionDurationSlow","colorBgMask","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"footerBg":"transparent","headerBg":"#ffffff","titleLineHeight":1.5,"titleFontSize":16,"contentBg":"#ffffff","titleColor":"rgba(0, 0, 0, 0.88)","contentPadding":0,"headerPadding":"16px 24px","headerBorderBottom":"1px solid rgba(5, 5, 5, 0.06)","headerMarginBottom":0,"bodyPadding":24,"footerPadding":"8px 16px","footerBorderTop":"1px solid rgba(5, 5, 5, 0.06)","footerBorderRadius":"0 0 8px 8px","footerMarginTop":0,"confirmBodyPadding":"32px 32px 24px","confirmIconMarginInlineEnd":16,"confirmBtnsMarginTop":24}},"Grid":{"global":[],"component":{}},"Form":{"global":["colorText","fontSize","lineHeight","fontFamily","marginLG","colorTextDescription","fontSizeLG","lineWidth","lineType","colorBorder","controlOutlineWidth","controlOutline","paddingSM","controlHeightSM","controlHeightLG","colorError","colorWarning","marginXXS","controlHeight","motionDurationMid","motionEaseOut","motionEaseOutBack","colorSuccess","colorPrimary","motionDurationSlow","motionEaseInOut","margin","screenXSMax","screenSMMax","screenMDMax","screenLGMax"],"component":{"labelRequiredMarkColor":"#ff4d4f","labelColor":"rgba(0, 0, 0, 0.88)","labelFontSize":14,"labelHeight":32,"labelColonMarginInlineStart":2,"labelColonMarginInlineEnd":8,"itemMarginBottom":24,"verticalLabelPadding":"0 0 8px","verticalLabelMargin":0,"inlineItemMarginBottom":0}},"FloatButton":{"global":["colorTextLightSolid","colorBgElevated","controlHeightLG","marginXXL","marginLG","fontSize","fontSizeIcon","controlItemBgHover","paddingXXS","margin","borderRadiusLG","borderRadiusSM","colorText","lineHeight","fontFamily","zIndexPopupBase","lineWidth","lineType","colorSplit","boxShadowSecondary","motionDurationMid","colorFillContent","fontSizeLG","fontSizeSM","colorPrimary","colorPrimaryHover","motionDurationSlow","motionEaseInOutCirc"],"component":{"dotOffsetInCircle":5.857864376269049,"dotOffsetInSquare":2.3431457505076194}},"Dropdown":{"global":["marginXXS","sizePopupArrow","paddingXXS","motionDurationMid","fontSize","colorTextDisabled","fontSizeIcon","controlPaddingHorizontal","colorBgElevated","boxShadowPopoverArrow","borderRadiusXS","colorText","lineHeight","fontFamily","borderRadiusLG","boxShadowSecondary","lineWidthFocus","colorPrimaryBorder","colorTextDescription","marginXS","fontSizeSM","borderRadiusSM","controlItemBgHover","colorPrimary","controlItemBgActive","controlItemBgActiveHover","colorSplit","paddingXS","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc","colorError","colorTextLightSolid"],"component":{"zIndexPopup":1050,"paddingBlock":5,"arrowOffsetHorizontal":12,"arrowOffsetVertical":8,"arrowShadowWidth":8.970562748477143,"arrowPath":"path('M 0 8 A 4 4 0 0 0 2.82842712474619 6.82842712474619 L 6.585786437626905 3.0710678118654755 A 2 2 0 0 1 9.414213562373096 3.0710678118654755 L 13.17157287525381 6.82842712474619 A 4 4 0 0 0 16 8 Z')","arrowPolygon":"polygon(1.6568542494923806px 100%, 50% 1.6568542494923806px, 14.34314575050762px 100%, 1.6568542494923806px 100%)"}},"Drawer":{"global":["borderRadiusSM","colorBgMask","colorBgElevated","motionDurationSlow","motionDurationMid","paddingXS","padding","paddingLG","fontSizeLG","lineHeightLG","lineWidth","lineType","colorSplit","marginXS","colorIcon","colorIconHover","colorBgTextHover","colorBgTextActive","colorText","fontWeightStrong","boxShadowDrawerLeft","boxShadowDrawerRight","boxShadowDrawerUp","boxShadowDrawerDown","lineWidthFocus","colorPrimaryBorder"],"component":{"zIndexPopup":1000,"footerPaddingBlock":8,"footerPaddingInline":16}},"Divider":{"global":["margin","marginLG","colorSplit","lineWidth","colorText","fontSize","lineHeight","fontFamily","colorTextHeading","fontSizeLG"],"component":{"textPaddingInline":"1em","orientationMargin":0.05,"verticalMarginInline":8}},"Descriptions":{"global":["colorText","fontSize","lineHeight","fontFamily","lineWidth","lineType","colorSplit","padding","paddingLG","colorTextSecondary","paddingSM","paddingXS","fontWeightStrong","fontSizeLG","lineHeightLG","borderRadiusLG","colorTextTertiary"],"component":{"labelBg":"rgba(0, 0, 0, 0.02)","titleColor":"rgba(0, 0, 0, 0.88)","titleMarginBottom":20,"itemPaddingBottom":16,"itemPaddingEnd":16,"colonMarginRight":8,"colonMarginLeft":2,"contentColor":"rgba(0, 0, 0, 0.88)","extraColor":"rgba(0, 0, 0, 0.88)"}},"DatePicker":{"global":["paddingXXS","controlHeightLG","padding","paddingSM","controlHeight","lineWidth","colorPrimary","colorPrimaryBorder","lineType","colorSplit","colorTextDisabled","colorBorder","borderRadius","motionDurationMid","colorTextPlaceholder","fontSizeLG","controlHeightSM","paddingXS","marginXS","colorTextDescription","lineWidthBold","motionDurationSlow","sizePopupArrow","colorBgElevated","borderRadiusLG","boxShadowSecondary","borderRadiusSM","boxShadowPopoverArrow","fontHeight","fontHeightLG","lineHeightLG","colorText","fontSize","lineHeight","fontFamily","colorBgContainer","colorTextHeading","colorIcon","colorIconHover","fontWeightStrong","colorTextLightSolid","controlItemBgActive","marginXXS","colorFillSecondary","colorTextTertiary","borderRadiusXS","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc","colorBgContainerDisabled","colorError","colorErrorBorderHover","colorWarning","colorWarningBorderHover","colorFillTertiary","colorErrorBg","colorErrorBgHover","colorErrorText","colorWarningBg","colorWarningBgHover","colorWarningText"],"component":{"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7,"paddingInline":11,"paddingInlineSM":7,"paddingInlineLG":11,"addonBg":"rgba(0, 0, 0, 0.02)","activeBorderColor":"#1677ff","hoverBorderColor":"#4096ff","activeShadow":"0 0 0 2px rgba(5, 145, 255, 0.1)","errorActiveShadow":"0 0 0 2px rgba(255, 38, 5, 0.06)","warningActiveShadow":"0 0 0 2px rgba(255, 215, 5, 0.1)","hoverBg":"#ffffff","activeBg":"#ffffff","inputFontSize":14,"inputFontSizeLG":16,"inputFontSizeSM":14,"INTERNAL_FIXED_ITEM_MARGIN":2,"cellHoverBg":"rgba(0, 0, 0, 0.04)","cellActiveWithRangeBg":"#e6f4ff","cellHoverWithRangeBg":"#c8dfff","cellRangeBorderColor":"#7cb3ff","cellBgDisabled":"rgba(0, 0, 0, 0.04)","timeColumnWidth":56,"timeColumnHeight":224,"timeCellHeight":28,"cellWidth":36,"cellHeight":24,"textHeight":40,"withoutTimeCellHeight":66,"multipleItemBg":"rgba(0, 0, 0, 0.06)","multipleItemBorderColor":"transparent","multipleItemHeight":24,"multipleItemHeightSM":16,"multipleItemHeightLG":32,"multipleSelectorBgDisabled":"rgba(0, 0, 0, 0.04)","multipleItemColorDisabled":"rgba(0, 0, 0, 0.25)","multipleItemBorderColorDisabled":"transparent","arrowShadowWidth":8.970562748477143,"arrowPath":"path('M 0 8 A 4 4 0 0 0 2.82842712474619 6.82842712474619 L 6.585786437626905 3.0710678118654755 A 2 2 0 0 1 9.414213562373096 3.0710678118654755 L 13.17157287525381 6.82842712474619 A 4 4 0 0 0 16 8 Z')","arrowPolygon":"polygon(1.6568542494923806px 100%, 50% 1.6568542494923806px, 14.34314575050762px 100%, 1.6568542494923806px 100%)","presetsWidth":120,"presetsMaxWidth":200,"zIndexPopup":1050}},"ColorPicker":{"global":["colorTextQuaternary","marginSM","colorPrimary","motionDurationMid","colorBgElevated","colorTextDisabled","colorText","colorBgContainerDisabled","borderRadius","marginXS","controlHeight","controlHeightSM","colorBgTextActive","lineWidth","colorBorder","paddingXXS","fontSize","colorPrimaryHover","controlOutline","controlHeightLG","borderRadiusSM","colorFillSecondary","lineWidthBold","colorPrimaryActive","fontSizeSM","lineHeightSM","marginXXS","fontSizeIcon","paddingXS","colorTextPlaceholder","colorFill","colorWhite","fontHeightSM","motionEaseInBack","motionDurationFast","motionEaseOutBack","colorSplit","red6","controlOutlineWidth","colorError","colorWarning","colorErrorHover","colorWarningHover","colorErrorOutline","colorWarningOutline","controlHeightXS","borderRadiusXS","borderRadiusLG","fontSizeLG"],"component":{}},"Collapse":{"global":["paddingXS","paddingSM","padding","paddingLG","borderRadiusLG","lineWidth","lineType","colorBorder","colorText","colorTextHeading","colorTextDisabled","fontSizeLG","lineHeight","lineHeightLG","marginSM","motionDurationSlow","fontSizeIcon","fontHeight","fontHeightLG","fontSize","fontFamily","paddingXXS","motionDurationMid","motionEaseInOut"],"component":{"headerPadding":"12px 16px","headerBg":"rgba(0, 0, 0, 0.02)","contentPadding":"16px 16px","contentBg":"#ffffff"}},"Checkbox":{"global":["controlInteractiveSize","colorText","fontSize","lineHeight","fontFamily","marginXS","borderRadiusSM","lineWidthFocus","colorPrimaryBorder","colorBgContainer","lineWidth","lineType","colorBorder","motionDurationSlow","lineWidthBold","colorWhite","motionDurationFast","motionEaseInBack","paddingXS","colorPrimary","colorPrimaryHover","motionDurationMid","motionEaseOutBack","fontSizeLG","colorBgContainerDisabled","colorTextDisabled"],"component":{}},"Cascader":{"global":["controlInteractiveSize","colorText","fontSize","lineHeight","fontFamily","marginXS","borderRadiusSM","lineWidthFocus","colorPrimaryBorder","colorBgContainer","lineWidth","lineType","colorBorder","motionDurationSlow","lineWidthBold","colorWhite","motionDurationFast","motionEaseInBack","paddingXS","colorPrimary","colorPrimaryHover","motionDurationMid","motionEaseOutBack","fontSizeLG","colorBgContainerDisabled","colorTextDisabled","colorSplit","controlItemBgHover","paddingXXS","colorTextDescription","fontSizeIcon","colorHighlight"],"component":{"controlWidth":184,"controlItemWidth":111,"dropdownHeight":180,"optionSelectedBg":"#e6f4ff","optionSelectedFontWeight":600,"optionPadding":"5px 12px","menuPadding":4}},"Carousel":{"global":["colorText","fontSize","lineHeight","fontFamily","motionDurationSlow","colorBgContainer","marginXXS"],"component":{"arrowSize":16,"arrowOffset":8,"dotWidth":16,"dotHeight":3,"dotGap":4,"dotOffset":12,"dotWidthActive":24,"dotActiveWidth":24}},"Card":{"global":["boxShadowCard","padding","paddingLG","fontSize","colorBorderSecondary","boxShadowTertiary","colorText","lineHeight","fontFamily","colorBgContainer","borderRadiusLG","colorTextHeading","fontWeightStrong","lineWidth","lineType","motionDurationMid","colorTextDescription","colorPrimary","fontHeight","marginXXS","marginXS","fontSizeLG","colorFillAlter"],"component":{"headerBg":"transparent","headerFontSize":16,"headerFontSizeSM":14,"headerHeight":56,"headerHeightSM":38,"actionsBg":"#ffffff","actionsLiMargin":"12px 0","tabsMarginBottom":-17,"extraColor":"rgba(0, 0, 0, 0.88)"}},"Calendar":{"global":["controlHeightLG","paddingXXS","padding","controlHeightSM","fontHeightSM","marginXS","lineWidth","paddingSM","paddingXS","colorBgContainer","lineType","borderRadiusLG","colorPrimary","colorTextHeading","colorSplit","colorIcon","motionDurationMid","colorIconHover","fontWeightStrong","colorTextDisabled","colorText","fontSize","motionDurationSlow","borderRadiusSM","colorTextLightSolid","controlItemBgActive","marginXXS","colorFillSecondary","colorTextTertiary","lineHeight","fontFamily","controlItemBgHover","lineWidthBold","screenXS"],"component":{"fullBg":"#ffffff","fullPanelBg":"#ffffff","itemActiveBg":"#e6f4ff","yearControlWidth":80,"monthControlWidth":70,"miniContentHeight":256,"INTERNAL_FIXED_ITEM_MARGIN":2,"cellHoverBg":"rgba(0, 0, 0, 0.04)","cellActiveWithRangeBg":"#e6f4ff","cellHoverWithRangeBg":"#c8dfff","cellRangeBorderColor":"#7cb3ff","cellBgDisabled":"rgba(0, 0, 0, 0.04)","timeColumnWidth":56,"timeColumnHeight":224,"timeCellHeight":28,"cellWidth":36,"cellHeight":24,"textHeight":40,"withoutTimeCellHeight":66,"multipleItemBg":"rgba(0, 0, 0, 0.06)","multipleItemBorderColor":"transparent","multipleItemHeight":24,"multipleItemHeightSM":16,"multipleItemHeightLG":32,"multipleSelectorBgDisabled":"rgba(0, 0, 0, 0.04)","multipleItemColorDisabled":"rgba(0, 0, 0, 0.25)","multipleItemBorderColorDisabled":"transparent"}},"Button":{"global":["marginXS","lineWidth","lineType","motionDurationMid","motionEaseInOut","colorText","lineWidthFocus","colorPrimaryBorder","controlHeight","borderRadius","opacityLoading","motionDurationSlow","controlHeightSM","paddingXS","borderRadiusSM","controlHeightLG","borderRadiusLG","colorTextDisabled","colorBgContainerDisabled","colorBorder","colorError","colorErrorHover","colorErrorBorderHover","colorErrorActive","colorPrimary","colorTextLightSolid","colorPrimaryHover","colorPrimaryActive","colorLink","colorLinkHover","colorLinkActive","colorBgTextActive","colorErrorBg","colorErrorBgActive","colorBgContainer","fontSize"],"component":{"fontWeight":400,"defaultShadow":"0 2px 0 rgba(0, 0, 0, 0.02)","primaryShadow":"0 2px 0 rgba(5, 145, 255, 0.1)","dangerShadow":"0 2px 0 rgba(255, 38, 5, 0.06)","primaryColor":"#fff","dangerColor":"#fff","borderColorDisabled":"#d9d9d9","defaultGhostColor":"#ffffff","ghostBg":"transparent","defaultGhostBorderColor":"#ffffff","paddingInline":15,"paddingInlineLG":15,"paddingInlineSM":7,"onlyIconSize":16,"onlyIconSizeSM":14,"onlyIconSizeLG":18,"groupBorderColor":"#4096ff","linkHoverBg":"transparent","textHoverBg":"rgba(0, 0, 0, 0.06)","defaultColor":"rgba(0, 0, 0, 0.88)","defaultBg":"#ffffff","defaultBorderColor":"#d9d9d9","defaultBorderColorDisabled":"#d9d9d9","defaultHoverBg":"#ffffff","defaultHoverColor":"#4096ff","defaultHoverBorderColor":"#4096ff","defaultActiveBg":"#ffffff","defaultActiveColor":"#0958d9","defaultActiveBorderColor":"#0958d9","contentFontSize":14,"contentFontSizeSM":14,"contentFontSizeLG":16,"contentLineHeight":1.5714285714285714,"contentLineHeightSM":1.5714285714285714,"contentLineHeightLG":1.5,"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7}},"Breadcrumb":{"global":["colorText","fontSize","lineHeight","fontFamily","motionDurationMid","paddingXXS","borderRadiusSM","fontHeight","marginXXS","colorBgTextHover","lineWidthFocus","colorPrimaryBorder","fontSizeIcon"],"component":{"itemColor":"rgba(0, 0, 0, 0.45)","lastItemColor":"rgba(0, 0, 0, 0.88)","iconFontSize":14,"linkColor":"rgba(0, 0, 0, 0.45)","linkHoverColor":"rgba(0, 0, 0, 0.88)","separatorColor":"rgba(0, 0, 0, 0.45)","separatorMargin":8}},"Badge":{"global":["fontHeight","lineWidth","marginXS","colorBorderBg","colorBgContainer","colorError","colorErrorHover","motionDurationSlow","blue1","blue3","blue6","blue7","purple1","purple3","purple6","purple7","cyan1","cyan3","cyan6","cyan7","green1","green3","green6","green7","magenta1","magenta3","magenta6","magenta7","pink1","pink3","pink6","pink7","red1","red3","red6","red7","orange1","orange3","orange6","orange7","yellow1","yellow3","yellow6","yellow7","volcano1","volcano3","volcano6","volcano7","geekblue1","geekblue3","geekblue6","geekblue7","lime1","lime3","lime6","lime7","gold1","gold3","gold6","gold7","colorText","fontSize","lineHeight","fontFamily","motionDurationMid","paddingXS","colorSuccess","colorInfo","colorTextPlaceholder","colorWarning","motionEaseOutBack"],"component":{"indicatorZIndex":"auto","indicatorHeight":20,"indicatorHeightSM":14,"dotSize":6,"textFontSize":12,"textFontSizeSM":12,"textFontWeight":"normal","statusSize":6}},"BackTop":{"global":["fontSizeHeading3","colorTextDescription","colorTextLightSolid","colorText","controlHeightLG","fontSize","lineHeight","fontFamily","motionDurationMid","screenMD","screenXS"],"component":{"zIndexPopup":10}},"Avatar":{"global":["colorTextLightSolid","colorTextPlaceholder","borderRadius","borderRadiusLG","borderRadiusSM","lineWidth","lineType","colorText","fontSize","lineHeight","fontFamily"],"component":{"containerSize":32,"containerSizeLG":40,"containerSizeSM":24,"textFontSize":18,"textFontSizeLG":24,"textFontSizeSM":14,"groupSpace":4,"groupOverlapping":-8,"groupBorderColor":"#ffffff"}},"App":{"global":["colorText","fontSize","lineHeight","fontFamily"],"component":{}},"Anchor":{"global":["fontSize","fontSizeLG","paddingXXS","motionDurationSlow","lineWidthBold","colorPrimary","lineType","colorSplit","colorText","lineHeight","fontFamily","lineWidth"],"component":{"linkPaddingBlock":4,"linkPaddingInlineStart":16}},"Alert":{"global":["motionDurationSlow","marginXS","marginSM","fontSize","fontSizeLG","lineHeight","borderRadiusLG","motionEaseInOutCirc","colorText","colorTextHeading","fontFamily","colorSuccess","colorSuccessBorder","colorSuccessBg","colorWarning","colorWarningBorder","colorWarningBg","colorError","colorErrorBorder","colorErrorBg","colorInfo","colorInfoBorder","colorInfoBg","lineWidth","lineType","motionDurationMid","fontSizeIcon","colorIcon","colorIconHover"],"component":{"withDescriptionIconSize":24,"defaultPadding":"8px 12px","withDescriptionPadding":"20px 24px"}},"Switch":{"global":["motionDurationMid","colorPrimary","opacityLoading","fontSizeIcon","colorText","fontSize","lineHeight","fontFamily","colorTextQuaternary","colorTextTertiary","lineWidthFocus","colorPrimaryBorder","colorPrimaryHover","colorTextLightSolid","fontSizeSM","marginXXS"],"component":{"trackHeight":22,"trackHeightSM":16,"trackMinWidth":44,"trackMinWidthSM":28,"trackPadding":2,"handleBg":"#fff","handleSize":18,"handleSizeSM":12,"handleShadow":"0 2px 4px 0 rgba(0, 35, 11, 0.2)","innerMinMargin":9,"innerMaxMargin":24,"innerMinMarginSM":6,"innerMaxMarginSM":18}},"Affix":{"global":[],"component":{"zIndexPopup":10}}} |
@@ -1,2 +0,2 @@ | ||
declare const _default: "5.20.0"; | ||
declare const _default: "5.20.1"; | ||
export default _default; |
@@ -7,2 +7,2 @@ "use strict"; | ||
exports.default = void 0; | ||
var _default = exports.default = '5.20.0'; | ||
var _default = exports.default = '5.20.1'; |
{ | ||
"name": "antd", | ||
"version": "5.20.0", | ||
"version": "5.20.1", | ||
"description": "An enterprise-class UI design language and React components implementation", | ||
@@ -109,7 +109,7 @@ "keywords": [ | ||
"@ctrl/tinycolor": "^3.6.1", | ||
"@rc-component/color-picker": "~2.0.0", | ||
"@rc-component/color-picker": "~2.0.1", | ||
"@rc-component/mutate-observer": "^1.1.0", | ||
"@rc-component/qrcode": "~1.0.0", | ||
"@rc-component/tour": "~1.15.0", | ||
"@rc-component/trigger": "^2.2.0", | ||
"@rc-component/trigger": "^2.2.1", | ||
"classnames": "^2.5.1", | ||
@@ -124,5 +124,5 @@ "copy-to-clipboard": "^3.3.3", | ||
"rc-dropdown": "~4.2.0", | ||
"rc-field-form": "~2.2.1", | ||
"rc-field-form": "~2.3.0", | ||
"rc-image": "~7.9.0", | ||
"rc-input": "~1.6.2", | ||
"rc-input": "~1.6.3", | ||
"rc-input-number": "~9.2.0", | ||
@@ -134,3 +134,3 @@ "rc-mentions": "~2.15.0", | ||
"rc-pagination": "~4.2.0", | ||
"rc-picker": "~4.6.11", | ||
"rc-picker": "~4.6.12", | ||
"rc-progress": "~4.0.0", | ||
@@ -141,3 +141,3 @@ "rc-rate": "~2.13.0", | ||
"rc-select": "~14.15.1", | ||
"rc-slider": "~11.1.3", | ||
"rc-slider": "~11.1.5", | ||
"rc-steps": "~6.0.1", | ||
@@ -216,4 +216,4 @@ "rc-switch": "~4.1.0", | ||
"@types/warning": "^3.0.3", | ||
"@typescript-eslint/eslint-plugin": "^7.16.1", | ||
"@typescript-eslint/parser": "^7.16.1", | ||
"@typescript-eslint/eslint-plugin": "^8.0.0", | ||
"@typescript-eslint/parser": "^8.0.0", | ||
"adm-zip": "^0.5.14", | ||
@@ -226,3 +226,3 @@ "ali-oss": "^6.20.0", | ||
"chalk": "^4.1.2", | ||
"cheerio": "1.0.0-rc.12", | ||
"cheerio": "^1.0.0", | ||
"circular-dependency-plugin": "^5.2.2", | ||
@@ -229,0 +229,0 @@ "cli-progress": "^3.12.0", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
46606962
174070
+ Addedrc-field-form@2.3.0(transitive)
- Removedrc-field-form@2.2.1(transitive)
Updated@rc-component/trigger@^2.2.1
Updatedrc-field-form@~2.3.0
Updatedrc-input@~1.6.3
Updatedrc-picker@~4.6.12
Updatedrc-slider@~11.1.5