ant-design-vue
Advanced tools
Comparing version 4.0.0 to 4.0.1
/*! | ||
* | ||
* ant-design-vue v4.0.0 | ||
* ant-design-vue v4.0.1 | ||
* | ||
@@ -5,0 +5,0 @@ * Copyright 2017-present, Ant Design Vue. |
/*! | ||
* | ||
* ant-design-vue v4.0.0 | ||
* ant-design-vue v4.0.1 | ||
* | ||
@@ -5,0 +5,0 @@ * Copyright 2017-present, Ant Design Vue. |
@@ -10,2 +10,3 @@ import type * as CSS from 'csstype'; | ||
declare const SKIP_CHECK = "_skip_check_"; | ||
declare const MULTI_VALUE = "_multi_value_"; | ||
export type CSSProperties = Omit<CSS.PropertiesFallback<number | string>, 'animationName'> & { | ||
@@ -17,2 +18,3 @@ animationName?: CSS.PropertiesFallback<number | string>['animationName'] | Keyframes; | ||
[SKIP_CHECK]: boolean; | ||
[MULTI_VALUE]?: boolean; | ||
value: CSSProperties[K] | Extract<CSSProperties[K], string>[]; | ||
@@ -59,3 +61,3 @@ }; | ||
}>, styleFn: () => CSSInterpolation): (node: VueNode) => VueNode; | ||
export declare function extractStyle(cache: Cache): string; | ||
export declare function extractStyle(cache: Cache, plain?: boolean): string; | ||
export {}; |
@@ -15,2 +15,3 @@ import _extends from "@babel/runtime/helpers/esm/extends"; | ||
const SKIP_CHECK = '_skip_check_'; | ||
const MULTI_VALUE = '_multi_value_'; | ||
// ============================================================================ | ||
@@ -25,3 +26,3 @@ // == Parser == | ||
function isCompoundCSSProperty(value) { | ||
return typeof value === 'object' && value && SKIP_CHECK in value; | ||
return typeof value === 'object' && value && (SKIP_CHECK in value || MULTI_VALUE in value); | ||
} | ||
@@ -146,23 +147,32 @@ // 注入 hash 值 | ||
} else { | ||
function appendStyle(cssKey, cssValue) { | ||
if (process.env.NODE_ENV !== 'production' && (typeof value !== 'object' || !(value === null || value === void 0 ? void 0 : value[SKIP_CHECK]))) { | ||
[contentQuotesLinter, hashedAnimationLinter, ...linters].forEach(linter => linter(cssKey, cssValue, { | ||
path, | ||
hashId, | ||
parentSelectors | ||
})); | ||
} | ||
// 如果是样式则直接插入 | ||
const styleName = cssKey.replace(/[A-Z]/g, match => `-${match.toLowerCase()}`); | ||
// Auto suffix with px | ||
let formatValue = cssValue; | ||
if (!unitless[cssKey] && typeof formatValue === 'number' && formatValue !== 0) { | ||
formatValue = `${formatValue}px`; | ||
} | ||
// handle animationName & Keyframe value | ||
if (cssKey === 'animationName' && (cssValue === null || cssValue === void 0 ? void 0 : cssValue._keyframe)) { | ||
parseKeyframes(cssValue); | ||
formatValue = cssValue.getName(hashId); | ||
} | ||
styleStr += `${styleName}:${formatValue};`; | ||
} | ||
const actualValue = (_a = value === null || value === void 0 ? void 0 : value.value) !== null && _a !== void 0 ? _a : value; | ||
if (process.env.NODE_ENV !== 'production' && (typeof value !== 'object' || !(value === null || value === void 0 ? void 0 : value[SKIP_CHECK]))) { | ||
[contentQuotesLinter, hashedAnimationLinter, ...linters].forEach(linter => linter(key, actualValue, { | ||
path, | ||
hashId, | ||
parentSelectors | ||
})); | ||
if (typeof value === 'object' && (value === null || value === void 0 ? void 0 : value[MULTI_VALUE]) && Array.isArray(actualValue)) { | ||
actualValue.forEach(item => { | ||
appendStyle(key, item); | ||
}); | ||
} else { | ||
appendStyle(key, actualValue); | ||
} | ||
// 如果是样式则直接插入 | ||
const styleName = key.replace(/[A-Z]/g, match => `-${match.toLowerCase()}`); | ||
// Auto suffix with px | ||
let formatValue = actualValue; | ||
if (!unitless[key] && typeof formatValue === 'number' && formatValue !== 0) { | ||
formatValue = `${formatValue}px`; | ||
} | ||
// handle animationName & Keyframe value | ||
if (key === 'animationName' && (value === null || value === void 0 ? void 0 : value._keyframe)) { | ||
parseKeyframes(value); | ||
formatValue = value.getName(hashId); | ||
} | ||
styleStr += `${styleName}:${formatValue};`; | ||
} | ||
@@ -298,2 +308,3 @@ }); | ||
export function extractStyle(cache) { | ||
let plain = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; | ||
// prefix with `style` is used for `useStyleRegister` to cache style context | ||
@@ -305,5 +316,5 @@ const styleKeys = Array.from(cache.cache.keys()).filter(key => key.startsWith('style%')); | ||
const [styleStr, tokenKey, styleId] = cache.cache.get(key)[1]; | ||
styleText += `<style ${ATTR_TOKEN}="${tokenKey}" ${ATTR_MARK}="${styleId}">${styleStr}</style>`; | ||
styleText += plain ? styleStr : `<style ${ATTR_TOKEN}="${tokenKey}" ${ATTR_MARK}="${styleId}">${styleStr}</style>`; | ||
}); | ||
return styleText; | ||
} |
@@ -6,3 +6,3 @@ import useCacheToken from './hooks/useCacheToken'; | ||
import type { Linter } from './linters'; | ||
import { legacyNotSelectorLinter, logicalPropertiesLinter } from './linters'; | ||
import { legacyNotSelectorLinter, logicalPropertiesLinter, parentSelectorLinter } from './linters'; | ||
import type { StyleContextProps, StyleProviderProps } from './StyleContext'; | ||
@@ -14,2 +14,3 @@ import { createCache, useStyleInject, useStyleProvider, StyleProvider } from './StyleContext'; | ||
import legacyLogicalPropertiesTransformer from './transformers/legacyLogicalProperties'; | ||
import px2remTransformer from './transformers/px2rem'; | ||
declare const cssinjs: { | ||
@@ -26,4 +27,6 @@ Theme: typeof Theme; | ||
legacyLogicalPropertiesTransformer: Transformer; | ||
px2remTransformer: (options?: import("./transformers/px2rem").Options) => Transformer; | ||
logicalPropertiesLinter: Linter; | ||
legacyNotSelectorLinter: Linter; | ||
parentSelectorLinter: Linter; | ||
StyleProvider: { | ||
@@ -266,4 +269,4 @@ new (...args: any[]): { | ||
}; | ||
export { Theme, createTheme, useStyleRegister, useCacheToken, createCache, useStyleInject, useStyleProvider, Keyframes, extractStyle, legacyLogicalPropertiesTransformer, logicalPropertiesLinter, legacyNotSelectorLinter, StyleProvider, }; | ||
export { Theme, createTheme, useStyleRegister, useCacheToken, createCache, useStyleInject, useStyleProvider, Keyframes, extractStyle, legacyLogicalPropertiesTransformer, px2remTransformer, logicalPropertiesLinter, legacyNotSelectorLinter, parentSelectorLinter, StyleProvider, }; | ||
export type { TokenType, CSSObject, CSSInterpolation, DerivativeFunc, Transformer, Linter, StyleContextProps, StyleProviderProps, }; | ||
export default cssinjs; |
import useCacheToken from './hooks/useCacheToken'; | ||
import useStyleRegister, { extractStyle } from './hooks/useStyleRegister'; | ||
import Keyframes from './Keyframes'; | ||
import { legacyNotSelectorLinter, logicalPropertiesLinter } from './linters'; | ||
import { legacyNotSelectorLinter, logicalPropertiesLinter, parentSelectorLinter } from './linters'; | ||
import { createCache, useStyleInject, useStyleProvider, StyleProvider } from './StyleContext'; | ||
import { createTheme, Theme } from './theme'; | ||
import legacyLogicalPropertiesTransformer from './transformers/legacyLogicalProperties'; | ||
import px2remTransformer from './transformers/px2rem'; | ||
const cssinjs = { | ||
@@ -20,5 +21,7 @@ Theme, | ||
legacyLogicalPropertiesTransformer, | ||
px2remTransformer, | ||
// Linters | ||
logicalPropertiesLinter, | ||
legacyNotSelectorLinter, | ||
parentSelectorLinter, | ||
// cssinjs | ||
@@ -29,7 +32,7 @@ StyleProvider | ||
// Transformer | ||
legacyLogicalPropertiesTransformer, | ||
legacyLogicalPropertiesTransformer, px2remTransformer, | ||
// Linters | ||
logicalPropertiesLinter, legacyNotSelectorLinter, | ||
logicalPropertiesLinter, legacyNotSelectorLinter, parentSelectorLinter, | ||
// cssinjs | ||
StyleProvider }; | ||
export default cssinjs; |
@@ -6,1 +6,2 @@ export { default as contentQuotesLinter } from './contentQuotesLinter'; | ||
export { default as logicalPropertiesLinter } from './logicalPropertiesLinter'; | ||
export { default as parentSelectorLinter } from './parentSelectorLinter'; |
export { default as contentQuotesLinter } from './contentQuotesLinter'; | ||
export { default as hashedAnimationLinter } from './hashedAnimationLinter'; | ||
export { default as legacyNotSelectorLinter } from './legacyNotSelectorLinter'; | ||
export { default as logicalPropertiesLinter } from './logicalPropertiesLinter'; | ||
export { default as logicalPropertiesLinter } from './logicalPropertiesLinter'; | ||
export { default as parentSelectorLinter } from './parentSelectorLinter'; |
@@ -51,3 +51,3 @@ import _extends from "@babel/runtime/helpers/esm/extends"; | ||
const context = shallowRef(_extends({}, defaultStyleContext)); | ||
watch([props, parentContext], () => { | ||
watch([() => unref(props), parentContext], () => { | ||
const mergedContext = _extends({}, parentContext.value); | ||
@@ -54,0 +54,0 @@ const propsValue = unref(props); |
import { computed, watchEffect } from 'vue'; | ||
import { updateCSS, removeCSS } from '../../vc-util/Dom/dynamicCSS'; | ||
import getScrollBarSize from '../../_util/getScrollBarSize'; | ||
import canUseDom from '../../_util/canUseDom'; | ||
const UNIQUE_ID = `vc-util-locker-${Date.now()}`; | ||
@@ -17,2 +18,5 @@ let uuid = 0; | ||
watchEffect(onClear => { | ||
if (!canUseDom()) { | ||
return; | ||
} | ||
if (mergedLock.value) { | ||
@@ -19,0 +23,0 @@ const scrollbarSize = getScrollBarSize(); |
@@ -80,3 +80,3 @@ import { createVNode as _createVNode, resolveDirective as _resolveDirective } from "vue"; | ||
// attachToParent(); | ||
const defaultContainer = document.createElement('div'); | ||
const defaultContainer = canUseDom() && document.createElement('div'); | ||
const getContainer = () => { | ||
@@ -83,0 +83,0 @@ if (!supportDom) { |
@@ -311,2 +311,3 @@ import type { App, VNode, ExtractPropTypes, CSSProperties, PropType } from 'vue'; | ||
dataSource: any; | ||
clearIcon: any; | ||
}>; | ||
@@ -509,2 +510,3 @@ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>; | ||
dataSource: any; | ||
clearIcon: any; | ||
}>> & { | ||
@@ -891,2 +893,3 @@ beforeCreate?: (() => void) | (() => void)[]; | ||
dataSource: any; | ||
clearIcon: any; | ||
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & { | ||
@@ -893,0 +896,0 @@ Option: import("./Option").OptionFC; |
@@ -13,3 +13,3 @@ import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2"; | ||
import useStyle from './style'; | ||
import { useInjectSize } from './SizeContext'; | ||
import { useAvatarInjectContext } from './AvatarContext'; | ||
export const avatarProps = () => ({ | ||
@@ -62,5 +62,5 @@ prefixCls: String, | ||
const [wrapSSR, hashId] = useStyle(prefixCls); | ||
const groupSize = useInjectSize(); | ||
const avatarCtx = useAvatarInjectContext(); | ||
const size = computed(() => { | ||
return props.size === 'default' ? groupSize.value : props.size; | ||
return props.size === 'default' ? avatarCtx.size : props.size; | ||
}); | ||
@@ -130,3 +130,3 @@ const screens = useBreakpoint(); | ||
return () => { | ||
var _a; | ||
var _a, _b; | ||
const { | ||
@@ -140,2 +140,3 @@ shape, | ||
} = props; | ||
const mergeShape = (_a = avatarCtx.shape) !== null && _a !== void 0 ? _a : shape; | ||
const icon = getPropsSlot(slots, props, 'icon'); | ||
@@ -148,3 +149,3 @@ const pre = prefixCls.value; | ||
[`${pre}-sm`]: size.value === 'small', | ||
[`${pre}-${shape}`]: shape, | ||
[`${pre}-${mergeShape}`]: true, | ||
[`${pre}-image`]: src && isImgExist.value, | ||
@@ -160,3 +161,3 @@ [`${pre}-icon`]: icon, | ||
} : {}; | ||
const children = (_a = slots.default) === null || _a === void 0 ? void 0 : _a.call(slots); | ||
const children = (_b = slots.default) === null || _b === void 0 ? void 0 : _b.call(slots); | ||
let childrenToRender; | ||
@@ -163,0 +164,0 @@ if (src && isImgExist.value) { |
@@ -19,2 +19,6 @@ import type { AvatarSize } from './Avatar'; | ||
}; | ||
shape: { | ||
type: PropType<"circle" | "square">; | ||
default: string; | ||
}; | ||
}; | ||
@@ -38,2 +42,6 @@ export type AvatarGroupProps = Partial<ExtractPropTypes<ReturnType<typeof groupProps>>>; | ||
}; | ||
shape: { | ||
type: PropType<"circle" | "square">; | ||
default: string; | ||
}; | ||
}, () => import("../_util/type").VueNode, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{ | ||
@@ -55,4 +63,9 @@ prefixCls: StringConstructor; | ||
}; | ||
shape: { | ||
type: PropType<"circle" | "square">; | ||
default: string; | ||
}; | ||
}>>, { | ||
size: number | "default" | "small" | "large" | Partial<Record<import("../_util/responsiveObserve").Breakpoint, number>>; | ||
shape: "circle" | "square"; | ||
maxStyle: CSSProperties; | ||
@@ -59,0 +72,0 @@ maxPopoverPlacement: "top" | "bottom"; |
@@ -6,7 +6,7 @@ import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2"; | ||
import Popover from '../popover'; | ||
import { computed, defineComponent } from 'vue'; | ||
import { computed, defineComponent, watchEffect } from 'vue'; | ||
import { flattenChildren, getPropsSlot } from '../_util/props-util'; | ||
import useConfigInject from '../config-provider/hooks/useConfigInject'; | ||
import useStyle from './style'; | ||
import { useProviderSize } from './SizeContext'; | ||
import { useAvatarProviderContext } from './AvatarContext'; | ||
export const groupProps = () => ({ | ||
@@ -31,2 +31,6 @@ prefixCls: String, | ||
default: 'default' | ||
}, | ||
shape: { | ||
type: String, | ||
default: 'circle' | ||
} | ||
@@ -52,3 +56,9 @@ }); | ||
const [wrapSSR, hashId] = useStyle(prefixCls); | ||
useProviderSize(computed(() => props.size)); | ||
watchEffect(() => { | ||
const context = { | ||
size: props.size, | ||
shape: props.shape | ||
}; | ||
useAvatarProviderContext(context); | ||
}); | ||
return () => { | ||
@@ -59,3 +69,4 @@ const { | ||
maxStyle, | ||
maxPopoverTrigger = 'hover' | ||
maxPopoverTrigger = 'hover', | ||
shape | ||
} = props; | ||
@@ -84,3 +95,4 @@ const cls = { | ||
default: () => [_createVNode(Avatar, { | ||
"style": maxStyle | ||
"style": maxStyle, | ||
"shape": shape | ||
}, { | ||
@@ -87,0 +99,0 @@ default: () => [`+${numOfChildren - maxCount}`] |
export interface ComponentToken { | ||
/** | ||
* @desc 头像背景色 | ||
* @descEN Background color of Avatar | ||
*/ | ||
containerSize: number; | ||
/** | ||
* @desc 大号头像尺寸 | ||
* @descEN Size of large Avatar | ||
*/ | ||
containerSizeLG: number; | ||
/** | ||
* @desc 小号头像尺寸 | ||
* @descEN Size of small Avatar | ||
*/ | ||
containerSizeSM: number; | ||
/** | ||
* @desc 头像文字大小 | ||
* @descEN Font size of Avatar | ||
*/ | ||
textFontSize: number; | ||
/** | ||
* @desc 大号头像文字大小 | ||
* @descEN Font size of large Avatar | ||
*/ | ||
textFontSizeLG: number; | ||
/** | ||
* @desc 小号头像文字大小 | ||
* @descEN Font size of small Avatar | ||
*/ | ||
textFontSizeSM: number; | ||
/** | ||
* @desc 头像组间距 | ||
* @descEN Spacing between avatars in a group | ||
*/ | ||
groupSpace: number; | ||
/** | ||
* @desc 头像组重叠宽度 | ||
* @descEN Overlapping of avatars in a group | ||
*/ | ||
groupOverlapping: number; | ||
/** | ||
* @desc 头像组边框颜色 | ||
* @descEN Border color of avatars in a group | ||
*/ | ||
groupBorderColor: string; | ||
} | ||
declare const _default: (_prefixCls?: import("vue").Ref<string>) => import("../../theme/internal").UseComponentStyleResult; | ||
export default _default; |
@@ -11,8 +11,8 @@ import _extends from "@babel/runtime/helpers/esm/extends"; | ||
avatarColor, | ||
avatarSizeBase, | ||
avatarSizeLG, | ||
avatarSizeSM, | ||
avatarFontSizeBase, | ||
avatarFontSizeLG, | ||
avatarFontSizeSM, | ||
containerSize, | ||
containerSizeLG, | ||
containerSizeSM, | ||
textFontSize, | ||
textFontSizeLG, | ||
textFontSizeSM, | ||
borderRadius, | ||
@@ -65,5 +65,5 @@ borderRadiusLG, | ||
} | ||
}), avatarSizeStyle(avatarSizeBase, avatarFontSizeBase, borderRadius)), { | ||
[`&-lg`]: _extends({}, avatarSizeStyle(avatarSizeLG, avatarFontSizeLG, borderRadiusLG)), | ||
[`&-sm`]: _extends({}, avatarSizeStyle(avatarSizeSM, avatarFontSizeSM, borderRadiusSM)), | ||
}), avatarSizeStyle(containerSize, textFontSize, borderRadius)), { | ||
[`&-lg`]: _extends({}, avatarSizeStyle(containerSizeLG, textFontSizeLG, borderRadiusLG)), | ||
[`&-sm`]: _extends({}, avatarSizeStyle(containerSizeSM, textFontSizeSM, borderRadiusSM)), | ||
'> img': { | ||
@@ -81,4 +81,5 @@ display: 'block', | ||
componentCls, | ||
avatarGroupBorderColor, | ||
avatarGroupSpace | ||
groupBorderColor, | ||
groupOverlapping, | ||
groupSpace | ||
} = token; | ||
@@ -89,7 +90,12 @@ return { | ||
[`${componentCls}`]: { | ||
borderColor: avatarGroupBorderColor | ||
borderColor: groupBorderColor | ||
}, | ||
[`> *:not(:first-child)`]: { | ||
marginInlineStart: avatarGroupSpace | ||
marginInlineStart: groupOverlapping | ||
} | ||
}, | ||
[`${componentCls}-group-popover`]: { | ||
[`${componentCls} + ${componentCls}`]: { | ||
marginInlineStart: groupSpace | ||
} | ||
} | ||
@@ -101,2 +107,11 @@ }; | ||
colorTextLightSolid, | ||
colorTextPlaceholder | ||
} = token; | ||
const avatarToken = mergeToken(token, { | ||
avatarBg: colorTextPlaceholder, | ||
avatarColor: colorTextLightSolid | ||
}); | ||
return [genBaseStyle(avatarToken), genGroupStyle(avatarToken)]; | ||
}, token => { | ||
const { | ||
controlHeight, | ||
@@ -110,18 +125,16 @@ controlHeightLG, | ||
marginXS, | ||
colorBorderBg, | ||
colorTextPlaceholder | ||
marginXXS, | ||
colorBorderBg | ||
} = token; | ||
const avatarToken = mergeToken(token, { | ||
avatarBg: colorTextPlaceholder, | ||
avatarColor: colorTextLightSolid, | ||
avatarSizeBase: controlHeight, | ||
avatarSizeLG: controlHeightLG, | ||
avatarSizeSM: controlHeightSM, | ||
avatarFontSizeBase: Math.round((fontSizeLG + fontSizeXL) / 2), | ||
avatarFontSizeLG: fontSizeHeading3, | ||
avatarFontSizeSM: fontSize, | ||
avatarGroupSpace: -marginXS, | ||
avatarGroupBorderColor: colorBorderBg | ||
}); | ||
return [genBaseStyle(avatarToken), genGroupStyle(avatarToken)]; | ||
return { | ||
containerSize: controlHeight, | ||
containerSizeLG: controlHeightLG, | ||
containerSizeSM: controlHeightSM, | ||
textFontSize: Math.round((fontSizeLG + fontSizeXL) / 2), | ||
textFontSizeLG: fontSizeHeading3, | ||
textFontSizeSM: fontSize, | ||
groupSpace: marginXXS, | ||
groupOverlapping: -marginXS, | ||
groupBorderColor: colorBorderBg | ||
}; | ||
}); |
@@ -104,3 +104,3 @@ import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2"; | ||
[`${prefixCls.value}-status-${props.status}`]: !!props.status, | ||
[`${prefixCls.value}-status-${props.color}`]: isInternalColor.value | ||
[`${prefixCls.value}-color-${props.color}`]: isInternalColor.value | ||
})); | ||
@@ -123,3 +123,3 @@ const statusStyle = computed(() => { | ||
[`${prefixCls.value}-status-${props.status}`]: !!props.status, | ||
[`${prefixCls.value}-status-${props.color}`]: isInternalColor.value | ||
[`${prefixCls.value}-color-${props.color}`]: isInternalColor.value | ||
})); | ||
@@ -126,0 +126,0 @@ return () => { |
@@ -76,3 +76,3 @@ import _extends from "@babel/runtime/helpers/esm/extends"; | ||
const ribbonWrapperPrefixCls = `${antCls}-ribbon-wrapper`; | ||
const statusPreset = genPresetColor(token, (colorKey, _ref) => { | ||
const colorPreset = genPresetColor(token, (colorKey, _ref) => { | ||
let { | ||
@@ -82,4 +82,7 @@ darkColor | ||
return { | ||
[`${componentCls}-status-${colorKey}`]: { | ||
background: darkColor | ||
[`&${componentCls} ${componentCls}-color-${colorKey}`]: { | ||
background: darkColor, | ||
[`&:not(${componentCls}-count)`]: { | ||
color: darkColor | ||
} | ||
} | ||
@@ -100,3 +103,3 @@ }; | ||
return { | ||
[componentCls]: _extends(_extends({}, resetComponent(token)), { | ||
[componentCls]: _extends(_extends(_extends(_extends({}, resetComponent(token)), { | ||
position: 'relative', | ||
@@ -158,5 +161,5 @@ display: 'inline-block', | ||
transformOrigin: '100% 0%', | ||
[`${iconCls}-spin`]: { | ||
[`&${iconCls}-spin`]: { | ||
animationName: antBadgeLoadingCircle, | ||
animationDuration: token.motionDurationMid, | ||
animationDuration: '1s', | ||
animationIterationCount: 'infinite', | ||
@@ -166,3 +169,3 @@ animationTimingFunction: 'linear' | ||
}, | ||
[`&${componentCls}-status`]: _extends(_extends({ | ||
[`&${componentCls}-status`]: { | ||
lineHeight: 'inherit', | ||
@@ -183,3 +186,3 @@ verticalAlign: 'baseline', | ||
[`${componentCls}-status-processing`]: { | ||
position: 'relative', | ||
overflow: 'visible', | ||
color: token.colorPrimary, | ||
@@ -212,4 +215,3 @@ backgroundColor: token.colorPrimary, | ||
backgroundColor: token.colorWarning | ||
} | ||
}, statusPreset), { | ||
}, | ||
[`${componentCls}-status-text`]: { | ||
@@ -220,3 +222,4 @@ marginInlineStart: marginXS, | ||
} | ||
}), | ||
} | ||
}), colorPreset), { | ||
[`${componentCls}-zoom-appear, ${componentCls}-zoom-enter`]: { | ||
@@ -292,3 +295,2 @@ animationName: antZoomBadgeIn, | ||
top: marginXS, | ||
height: badgeFontHeight, | ||
padding: `0 ${token.paddingXS}px`, | ||
@@ -295,0 +297,0 @@ color: token.colorPrimary, |
@@ -68,2 +68,3 @@ import type { CalendarProps } from './generateCalendar'; | ||
readonly valueFormat?: string; | ||
readonly fullscreen?: boolean; | ||
readonly validRange?: [Date, Date]; | ||
@@ -80,3 +81,2 @@ readonly dateFullCellRender?: (config: { | ||
readonly headerRender?: import("./generateCalendar").HeaderRender<Date>; | ||
readonly fullscreen?: boolean; | ||
}; | ||
@@ -83,0 +83,0 @@ $attrs: { |
@@ -68,2 +68,3 @@ import type { CalendarProps } from './generateCalendar'; | ||
readonly valueFormat?: string; | ||
readonly fullscreen?: boolean; | ||
readonly validRange?: [import("dayjs").Dayjs, import("dayjs").Dayjs]; | ||
@@ -80,3 +81,2 @@ readonly dateFullCellRender?: (config: { | ||
readonly headerRender?: import("./generateCalendar").HeaderRender<import("dayjs").Dayjs>; | ||
readonly fullscreen?: boolean; | ||
}; | ||
@@ -83,0 +83,0 @@ $attrs: { |
@@ -69,2 +69,3 @@ import type { Moment } from 'moment'; | ||
readonly valueFormat?: string; | ||
readonly fullscreen?: boolean; | ||
readonly validRange?: [Moment, Moment]; | ||
@@ -81,3 +82,2 @@ readonly dateFullCellRender?: (config: { | ||
readonly headerRender?: import("./generateCalendar").HeaderRender<Moment>; | ||
readonly fullscreen?: boolean; | ||
}; | ||
@@ -84,0 +84,0 @@ $attrs: { |
@@ -69,2 +69,3 @@ import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2"; | ||
emit('change', event); | ||
formItemContext.onFieldChange(); | ||
}; | ||
@@ -71,0 +72,0 @@ const checkboxRef = ref(); |
@@ -137,1 +137,3 @@ export type { AffixProps } from './affix'; | ||
export { default as Tour } from './tour'; | ||
export type { AppProps } from './app'; | ||
export { default as App } from './app'; |
@@ -69,2 +69,3 @@ export { default as Affix } from './affix'; | ||
export { default as QRCode } from './qrcode'; | ||
export { default as Tour } from './tour'; | ||
export { default as Tour } from './tour'; | ||
export { default as App } from './app'; |
@@ -24,2 +24,6 @@ declare const BackTop: import("vue").DefineComponent<{ | ||
href: StringConstructor; | ||
badge: { | ||
type: import("vue").PropType<import("./interface").FloatButtonBadgeProps>; | ||
default: import("./interface").FloatButtonBadgeProps; | ||
}; | ||
}, () => import("../_util/type").VueNode, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{ | ||
@@ -48,2 +52,6 @@ prefixCls: StringConstructor; | ||
href: StringConstructor; | ||
badge: { | ||
type: import("vue").PropType<import("./interface").FloatButtonBadgeProps>; | ||
default: import("./interface").FloatButtonBadgeProps; | ||
}; | ||
}>>, { | ||
@@ -54,3 +62,4 @@ type: import("./interface").FloatButtonType; | ||
shape: import("./interface").FloatButtonShape; | ||
badge: import("./interface").FloatButtonBadgeProps; | ||
}, {}>; | ||
export default BackTop; |
@@ -19,2 +19,6 @@ export declare const floatButtonPrefixCls = "float-btn"; | ||
}; | ||
badge: { | ||
type: import("vue").PropType<import("./interface").FloatButtonBadgeProps>; | ||
default: import("./interface").FloatButtonBadgeProps; | ||
}; | ||
onClick: { | ||
@@ -41,2 +45,6 @@ type: import("vue").PropType<import("../_util/EventInterface").MouseEventHandler>; | ||
}; | ||
badge: { | ||
type: import("vue").PropType<import("./interface").FloatButtonBadgeProps>; | ||
default: import("./interface").FloatButtonBadgeProps; | ||
}; | ||
onClick: { | ||
@@ -51,3 +59,4 @@ type: import("vue").PropType<import("../_util/EventInterface").MouseEventHandler>; | ||
shape: import("./interface").FloatButtonShape; | ||
badge: import("./interface").FloatButtonBadgeProps; | ||
}, {}>; | ||
export default FloatButton; |
@@ -14,2 +14,3 @@ import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2"; | ||
import Tooltip from '../tooltip'; | ||
import Badge from '../badge'; | ||
import Content from './FloatButtonContent'; | ||
@@ -59,5 +60,6 @@ import useConfigInject from '../config-provider/hooks/useConfigInject'; | ||
description = (_a = slots.description) === null || _a === void 0 ? void 0 : _a.call(slots), | ||
tooltip | ||
tooltip, | ||
badge = {} | ||
} = props, | ||
restProps = __rest(props, ["prefixCls", "type", "shape", "description", "tooltip"]); | ||
restProps = __rest(props, ["prefixCls", "type", "shape", "description", "tooltip", "badge"]); | ||
const classString = classNames(prefixCls.value, `${prefixCls.value}-${type}`, `${prefixCls.value}-${mergeShape.value}`, { | ||
@@ -70,10 +72,12 @@ [`${prefixCls.value}-rtl`]: direction.value === 'rtl' | ||
title: slots.tooltip || tooltip ? () => slots.tooltip && slots.tooltip() || tooltip : undefined, | ||
default: () => _createVNode("div", { | ||
"class": `${prefixCls.value}-body` | ||
}, [_createVNode(Content, { | ||
"prefixCls": prefixCls.value | ||
}, { | ||
icon: slots.icon, | ||
description: () => description | ||
})]) | ||
default: () => _createVNode(Badge, badge, { | ||
default: () => [_createVNode("div", { | ||
"class": `${prefixCls.value}-body` | ||
}, [_createVNode(Content, { | ||
"prefixCls": prefixCls.value | ||
}, { | ||
icon: slots.icon, | ||
description: () => description | ||
})])] | ||
}) | ||
}); | ||
@@ -80,0 +84,0 @@ if (process.env.NODE_ENV !== 'production') { |
@@ -34,2 +34,6 @@ declare const FloatButtonGroup: import("vue").DefineComponent<{ | ||
}; | ||
badge: { | ||
type: import("vue").PropType<import("./interface").FloatButtonBadgeProps>; | ||
default: import("./interface").FloatButtonBadgeProps; | ||
}; | ||
onClick: { | ||
@@ -72,2 +76,6 @@ type: import("vue").PropType<import("../_util/EventInterface").MouseEventHandler>; | ||
}; | ||
badge: { | ||
type: import("vue").PropType<import("./interface").FloatButtonBadgeProps>; | ||
default: import("./interface").FloatButtonBadgeProps; | ||
}; | ||
onClick: { | ||
@@ -86,3 +94,4 @@ type: import("vue").PropType<import("../_util/EventInterface").MouseEventHandler>; | ||
shape: import("./interface").FloatButtonShape; | ||
badge: import("./interface").FloatButtonBadgeProps; | ||
}, {}>; | ||
export default FloatButtonGroup; |
@@ -13,2 +13,3 @@ import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2"; | ||
import { floatButtonGroupProps } from './interface'; | ||
import canUseDom from '../_util/canUseDom'; | ||
// CSSINJS | ||
@@ -84,2 +85,5 @@ import useStyle from './style'; | ||
watch(computed(() => props.trigger), value => { | ||
if (!canUseDom()) { | ||
return; | ||
} | ||
document.removeEventListener('click', onClick); | ||
@@ -86,0 +90,0 @@ if (value === 'click') { |
@@ -17,2 +17,3 @@ import type { Plugin } from 'vue'; | ||
shape?: FloatButtonShape; | ||
badge?: import("./interface").FloatButtonBadgeProps; | ||
key?: string | number | symbol; | ||
@@ -99,2 +100,6 @@ ref?: import("vue").VNodeRef; | ||
}; | ||
badge: { | ||
type: import("vue").PropType<import("./interface").FloatButtonBadgeProps>; | ||
default: import("./interface").FloatButtonBadgeProps; | ||
}; | ||
onClick: { | ||
@@ -109,2 +114,3 @@ type: import("vue").PropType<import("../_util/EventInterface").MouseEventHandler>; | ||
shape: FloatButtonShape; | ||
badge: import("./interface").FloatButtonBadgeProps; | ||
}, {}, string, {}> & { | ||
@@ -147,2 +153,6 @@ beforeCreate?: (() => void) | (() => void)[]; | ||
}; | ||
badge: { | ||
type: import("vue").PropType<import("./interface").FloatButtonBadgeProps>; | ||
default: import("./interface").FloatButtonBadgeProps; | ||
}; | ||
onClick: { | ||
@@ -173,2 +183,6 @@ type: import("vue").PropType<import("../_util/EventInterface").MouseEventHandler>; | ||
}; | ||
badge: { | ||
type: import("vue").PropType<import("./interface").FloatButtonBadgeProps>; | ||
default: import("./interface").FloatButtonBadgeProps; | ||
}; | ||
onClick: { | ||
@@ -183,2 +197,3 @@ type: import("vue").PropType<import("../_util/EventInterface").MouseEventHandler>; | ||
shape: FloatButtonShape; | ||
badge: import("./interface").FloatButtonBadgeProps; | ||
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Plugin<any[]> & { | ||
@@ -185,0 +200,0 @@ readonly Group: typeof FloatButtonGroup; |
import type { ExtractPropTypes } from 'vue'; | ||
import type { MouseEventHandler } from '../_util/EventInterface'; | ||
import type { BadgeProps } from '../badge'; | ||
export type FloatButtonType = 'default' | 'primary'; | ||
export type FloatButtonShape = 'circle' | 'square'; | ||
export type FloatButtonGroupTrigger = 'click' | 'hover'; | ||
export type FloatButtonBadgeProps = Omit<BadgeProps, 'status' | 'text' | 'title' | 'children'>; | ||
export declare const floatButtonProps: () => { | ||
@@ -23,2 +25,6 @@ prefixCls: StringConstructor; | ||
}; | ||
badge: { | ||
type: import("vue").PropType<FloatButtonBadgeProps>; | ||
default: FloatButtonBadgeProps; | ||
}; | ||
onClick: { | ||
@@ -70,2 +76,6 @@ type: import("vue").PropType<MouseEventHandler>; | ||
}; | ||
badge: { | ||
type: import("vue").PropType<FloatButtonBadgeProps>; | ||
default: FloatButtonBadgeProps; | ||
}; | ||
onClick: { | ||
@@ -100,3 +110,7 @@ type: import("vue").PropType<MouseEventHandler>; | ||
href: StringConstructor; | ||
badge: { | ||
type: import("vue").PropType<FloatButtonBadgeProps>; | ||
default: FloatButtonBadgeProps; | ||
}; | ||
}; | ||
export type BackTopProps = Partial<ExtractPropTypes<ReturnType<typeof backTopProps>>>; |
import _extends from "@babel/runtime/helpers/esm/extends"; | ||
import PropTypes from '../_util/vue-types'; | ||
import { stringType, booleanType, functionType } from '../_util/type'; | ||
import { stringType, booleanType, functionType, objectType } from '../_util/type'; | ||
export const floatButtonProps = () => { | ||
@@ -13,2 +13,3 @@ return { | ||
target: functionType(), | ||
badge: objectType(), | ||
onClick: functionType() | ||
@@ -15,0 +16,0 @@ }; |
@@ -7,2 +7,3 @@ import _extends from "@babel/runtime/helpers/esm/extends"; | ||
import { initMotion } from '../../style/motion/motion'; | ||
import getOffset from '../util'; | ||
const initFloatButtonGroupMotion = token => { | ||
@@ -60,6 +61,10 @@ const { | ||
const { | ||
antCls, | ||
componentCls, | ||
floatButtonSize, | ||
margin, | ||
borderRadiusLG | ||
borderRadiusLG, | ||
borderRadiusSM, | ||
badgeOffset, | ||
floatButtonBodyPadding | ||
} = token; | ||
@@ -98,3 +103,4 @@ const groupPrefixCls = `${componentCls}-group`; | ||
width: floatButtonSize, | ||
height: floatButtonSize | ||
height: floatButtonSize, | ||
borderRadius: '50%' | ||
} | ||
@@ -117,2 +123,8 @@ } | ||
borderBottom: `${token.lineWidth}px ${token.lineType} ${token.colorSplit}` | ||
}, | ||
[`${antCls}-badge`]: { | ||
[`${antCls}-badge-count`]: { | ||
top: -(floatButtonBodyPadding + badgeOffset), | ||
insetInlineEnd: -(floatButtonBodyPadding + badgeOffset) | ||
} | ||
} | ||
@@ -124,3 +136,2 @@ }, | ||
boxShadow: token.boxShadowSecondary, | ||
overflow: 'hidden', | ||
[`${componentCls}-square`]: { | ||
@@ -130,3 +141,3 @@ boxShadow: 'none', | ||
borderRadius: 0, | ||
padding: token.paddingXXS, | ||
padding: floatButtonBodyPadding, | ||
'&:first-child': { | ||
@@ -144,4 +155,4 @@ borderStartStartRadius: borderRadiusLG, | ||
[`${componentCls}-body`]: { | ||
width: floatButtonSize - token.paddingXXS * 2, | ||
height: floatButtonSize - token.paddingXXS * 2 | ||
width: token.floatButtonBodySize, | ||
height: token.floatButtonBodySize | ||
} | ||
@@ -158,6 +169,7 @@ } | ||
boxShadow: 'none', | ||
padding: token.paddingXXS, | ||
padding: floatButtonBodyPadding, | ||
[`${componentCls}-body`]: { | ||
width: floatButtonSize - token.paddingXXS * 2, | ||
height: floatButtonSize - token.paddingXXS * 2 | ||
width: token.floatButtonBodySize, | ||
height: token.floatButtonBodySize, | ||
borderRadius: borderRadiusSM | ||
} | ||
@@ -171,6 +183,11 @@ } | ||
const { | ||
antCls, | ||
componentCls, | ||
floatButtonBodyPadding, | ||
floatButtonIconSize, | ||
floatButtonSize, | ||
borderRadiusLG | ||
borderRadiusLG, | ||
badgeOffset, | ||
dotOffsetInSquare, | ||
dotOffsetInCircle | ||
} = token; | ||
@@ -182,3 +199,2 @@ return { | ||
cursor: 'pointer', | ||
overflow: 'hidden', | ||
zIndex: 99, | ||
@@ -201,2 +217,12 @@ display: 'block', | ||
}, | ||
[`${antCls}-badge`]: { | ||
width: '100%', | ||
height: '100%', | ||
[`${antCls}-badge-count`]: { | ||
transform: 'translate(0, 0)', | ||
transformOrigin: 'center', | ||
top: -badgeOffset, | ||
insetInlineEnd: -badgeOffset | ||
} | ||
}, | ||
[`${componentCls}-body`]: { | ||
@@ -217,3 +243,3 @@ width: '100%', | ||
alignItems: 'center', | ||
padding: `2px 4px`, | ||
padding: `${floatButtonBodyPadding / 2}px ${floatButtonBodyPadding}px`, | ||
[`${componentCls}-icon`]: { | ||
@@ -229,5 +255,14 @@ textAlign: 'center', | ||
}), | ||
[`${componentCls}-rtl`]: { | ||
direction: 'rtl' | ||
}, | ||
[`${componentCls}-circle`]: { | ||
height: floatButtonSize, | ||
borderRadius: '50%', | ||
[`${antCls}-badge`]: { | ||
[`${antCls}-badge-dot`]: { | ||
top: dotOffsetInCircle, | ||
insetInlineEnd: dotOffsetInCircle | ||
} | ||
}, | ||
[`${componentCls}-body`]: { | ||
@@ -241,5 +276,11 @@ borderRadius: '50%' | ||
borderRadius: borderRadiusLG, | ||
[`${antCls}-badge`]: { | ||
[`${antCls}-badge-dot`]: { | ||
top: dotOffsetInSquare, | ||
insetInlineEnd: dotOffsetInSquare | ||
} | ||
}, | ||
[`${componentCls}-body`]: { | ||
height: 'auto', | ||
borderRadius: token.borderRadiusSM | ||
borderRadius: borderRadiusLG | ||
} | ||
@@ -304,3 +345,5 @@ }, | ||
fontSizeIcon, | ||
controlItemBgHover | ||
controlItemBgHover, | ||
paddingXXS, | ||
borderRadiusLG | ||
} = token; | ||
@@ -315,5 +358,11 @@ const floatButtonToken = mergeToken(token, { | ||
floatButtonInsetBlockEnd: marginXXL, | ||
floatButtonInsetInlineEnd: marginLG | ||
floatButtonInsetInlineEnd: marginLG, | ||
floatButtonBodySize: controlHeightLG - paddingXXS * 2, | ||
// 这里的 paddingXXS 是简写,完整逻辑是 (controlHeightLG - (controlHeightLG - paddingXXS * 2)) / 2, | ||
floatButtonBodyPadding: paddingXXS, | ||
badgeOffset: paddingXXS * 1.5, | ||
dotOffsetInCircle: getOffset(controlHeightLG / 2), | ||
dotOffsetInSquare: getOffset(borderRadiusLG) | ||
}); | ||
return [floatButtonGroupStyle(floatButtonToken), sharedFloatButtonStyle(floatButtonToken), initFadeMotion(token), initFloatButtonGroupMotion(floatButtonToken)]; | ||
}); |
@@ -231,6 +231,6 @@ import type { ExtractPropTypes, ImgHTMLAttributes, Plugin } from 'vue'; | ||
readonly preview?: boolean | import("../vc-image").ImagePreviewType; | ||
readonly wrapperStyle?: import("vue").CSSProperties; | ||
readonly src?: string; | ||
readonly srcset?: string; | ||
readonly alt?: string; | ||
readonly wrapperStyle?: import("vue").CSSProperties; | ||
readonly previewPrefixCls?: string; | ||
@@ -237,0 +237,0 @@ readonly previewMask?: false | (() => any); |
@@ -11,2 +11,4 @@ import type { PreviewGroupPreview } from '../vc-image/src/PreviewGroup'; | ||
right: JSX.Element; | ||
flipX: JSX.Element; | ||
flipY: JSX.Element; | ||
}; | ||
@@ -13,0 +15,0 @@ declare const previewGroupProps: () => { |
@@ -14,2 +14,3 @@ import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2"; | ||
import RightOutlined from "@ant-design/icons-vue/es/icons/RightOutlined"; | ||
import SwapOutlined from "@ant-design/icons-vue/es/icons/SwapOutlined"; | ||
import useStyle from './style'; | ||
@@ -24,3 +25,7 @@ import { anyType } from '../_util/type'; | ||
left: _createVNode(LeftOutlined, null, null), | ||
right: _createVNode(RightOutlined, null, null) | ||
right: _createVNode(RightOutlined, null, null), | ||
flipX: _createVNode(SwapOutlined, null, null), | ||
flipY: _createVNode(SwapOutlined, { | ||
"rotate": 90 | ||
}, null) | ||
}; | ||
@@ -27,0 +32,0 @@ const previewGroupProps = () => ({ |
@@ -208,2 +208,3 @@ import type { ExtractPropTypes, App } from 'vue'; | ||
tabindex?: number; | ||
readonly precision?: number; | ||
role?: string; | ||
@@ -216,3 +217,2 @@ readonly id?: string; | ||
readonly addonAfter?: any; | ||
readonly precision?: number; | ||
readonly decimalSeparator?: string; | ||
@@ -219,0 +219,0 @@ }; |
@@ -187,3 +187,3 @@ import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2"; | ||
"style": style, | ||
"onMouseup": () => inputNumberRef.value.focus() | ||
"onClick": focus | ||
}, [hasPrefix && _createVNode("span", { | ||
@@ -190,0 +190,0 @@ "class": `${preCls}-prefix` |
@@ -150,2 +150,3 @@ import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2"; | ||
"onFocus": handleFocus, | ||
"prefix": prefix, | ||
"suffix": suffixNode, | ||
@@ -152,0 +153,0 @@ "allowClear": allowClear, |
@@ -0,1 +1,2 @@ | ||
import type { PropType } from 'vue'; | ||
declare const _default: import("vue").DefineComponent<{ | ||
@@ -12,16 +13,21 @@ prefixCls: StringConstructor; | ||
}; | ||
visible: { | ||
type: BooleanConstructor; | ||
default: any; | ||
}; | ||
'onUpdate:visible': PropType<(visible: boolean) => void>; | ||
iconRender: FunctionConstructor; | ||
name: StringConstructor; | ||
type: { | ||
type: import("vue").PropType<"number" | "button" | "time" | "reset" | "submit" | "image" | "text" | "search" | "checkbox" | "radio" | "hidden" | "color" | "range" | "date" | "url" | "email" | "week" | "month" | "tel" | "datetime-local" | "file" | "password">; | ||
type: PropType<"number" | "button" | "time" | "reset" | "submit" | "image" | "text" | "search" | "checkbox" | "radio" | "hidden" | "color" | "range" | "date" | "url" | "email" | "week" | "month" | "tel" | "datetime-local" | "file" | "password">; | ||
default: "number" | "button" | "time" | "reset" | "submit" | "image" | "text" | "search" | "checkbox" | "radio" | "hidden" | "color" | "range" | "date" | "url" | "email" | "week" | "month" | "tel" | "datetime-local" | "file" | "password"; | ||
}; | ||
onCompositionend: import("vue").PropType<import("../_util/EventInterface").CompositionEventHandler>; | ||
onCompositionstart: import("vue").PropType<import("../_util/EventInterface").CompositionEventHandler>; | ||
onFocus: import("vue").PropType<import("../_util/EventInterface").FocusEventHandler>; | ||
onBlur: import("vue").PropType<import("../_util/EventInterface").FocusEventHandler>; | ||
onChange: import("vue").PropType<import("../_util/EventInterface").ChangeEventHandler>; | ||
onInput: import("vue").PropType<import("../_util/EventInterface").ChangeEventHandler>; | ||
onKeydown: import("vue").PropType<import("../_util/EventInterface").KeyboardEventHandler>; | ||
onKeyup: import("vue").PropType<import("../_util/EventInterface").KeyboardEventHandler>; | ||
onCompositionend: PropType<import("../_util/EventInterface").CompositionEventHandler>; | ||
onCompositionstart: PropType<import("../_util/EventInterface").CompositionEventHandler>; | ||
onFocus: PropType<import("../_util/EventInterface").FocusEventHandler>; | ||
onBlur: PropType<import("../_util/EventInterface").FocusEventHandler>; | ||
onChange: PropType<import("../_util/EventInterface").ChangeEventHandler>; | ||
onInput: PropType<import("../_util/EventInterface").ChangeEventHandler>; | ||
onKeydown: PropType<import("../_util/EventInterface").KeyboardEventHandler>; | ||
onKeyup: PropType<import("../_util/EventInterface").KeyboardEventHandler>; | ||
focused: { | ||
@@ -36,3 +42,3 @@ type: BooleanConstructor; | ||
size: { | ||
type: import("vue").PropType<import("../config-provider").SizeType>; | ||
type: PropType<import("../config-provider").SizeType>; | ||
}; | ||
@@ -44,3 +50,3 @@ disabled: { | ||
value: { | ||
type: import("vue").PropType<string | number>; | ||
type: PropType<string | number>; | ||
default: any; | ||
@@ -58,11 +64,11 @@ }; | ||
}; | ||
status: import("vue").PropType<"" | "error" | "warning">; | ||
status: PropType<"" | "error" | "warning">; | ||
defaultValue: { | ||
type: import("vue").PropType<string | number>; | ||
type: PropType<string | number>; | ||
default: any; | ||
}; | ||
'onUpdate:value': import("vue").PropType<(val: string) => void>; | ||
'onUpdate:value': PropType<(val: string) => void>; | ||
suffix: import("vue-types").VueTypeValidableDef<any>; | ||
placeholder: { | ||
type: import("vue").PropType<string | number>; | ||
type: PropType<string | number>; | ||
}; | ||
@@ -84,10 +90,10 @@ prefix: import("vue-types").VueTypeValidableDef<any>; | ||
showCount: { | ||
type: import("vue").PropType<boolean | import("../vc-input/inputProps").ShowCountProps>; | ||
type: PropType<boolean | import("../vc-input/inputProps").ShowCountProps>; | ||
}; | ||
htmlSize: NumberConstructor; | ||
onPressEnter: import("vue").PropType<import("../_util/EventInterface").KeyboardEventHandler>; | ||
onPressEnter: PropType<import("../_util/EventInterface").KeyboardEventHandler>; | ||
valueModifiers: ObjectConstructor; | ||
inputElement: import("vue-types").VueTypeValidableDef<any>; | ||
triggerFocus: import("vue").PropType<() => void>; | ||
handleReset: import("vue").PropType<import("../_util/EventInterface").MouseEventHandler>; | ||
triggerFocus: PropType<() => void>; | ||
handleReset: PropType<import("../_util/EventInterface").MouseEventHandler>; | ||
addonBefore: import("vue-types").VueTypeValidableDef<any>; | ||
@@ -111,16 +117,21 @@ addonAfter: import("vue-types").VueTypeValidableDef<any>; | ||
}; | ||
visible: { | ||
type: BooleanConstructor; | ||
default: any; | ||
}; | ||
'onUpdate:visible': PropType<(visible: boolean) => void>; | ||
iconRender: FunctionConstructor; | ||
name: StringConstructor; | ||
type: { | ||
type: import("vue").PropType<"number" | "button" | "time" | "reset" | "submit" | "image" | "text" | "search" | "checkbox" | "radio" | "hidden" | "color" | "range" | "date" | "url" | "email" | "week" | "month" | "tel" | "datetime-local" | "file" | "password">; | ||
type: PropType<"number" | "button" | "time" | "reset" | "submit" | "image" | "text" | "search" | "checkbox" | "radio" | "hidden" | "color" | "range" | "date" | "url" | "email" | "week" | "month" | "tel" | "datetime-local" | "file" | "password">; | ||
default: "number" | "button" | "time" | "reset" | "submit" | "image" | "text" | "search" | "checkbox" | "radio" | "hidden" | "color" | "range" | "date" | "url" | "email" | "week" | "month" | "tel" | "datetime-local" | "file" | "password"; | ||
}; | ||
onCompositionend: import("vue").PropType<import("../_util/EventInterface").CompositionEventHandler>; | ||
onCompositionstart: import("vue").PropType<import("../_util/EventInterface").CompositionEventHandler>; | ||
onFocus: import("vue").PropType<import("../_util/EventInterface").FocusEventHandler>; | ||
onBlur: import("vue").PropType<import("../_util/EventInterface").FocusEventHandler>; | ||
onChange: import("vue").PropType<import("../_util/EventInterface").ChangeEventHandler>; | ||
onInput: import("vue").PropType<import("../_util/EventInterface").ChangeEventHandler>; | ||
onKeydown: import("vue").PropType<import("../_util/EventInterface").KeyboardEventHandler>; | ||
onKeyup: import("vue").PropType<import("../_util/EventInterface").KeyboardEventHandler>; | ||
onCompositionend: PropType<import("../_util/EventInterface").CompositionEventHandler>; | ||
onCompositionstart: PropType<import("../_util/EventInterface").CompositionEventHandler>; | ||
onFocus: PropType<import("../_util/EventInterface").FocusEventHandler>; | ||
onBlur: PropType<import("../_util/EventInterface").FocusEventHandler>; | ||
onChange: PropType<import("../_util/EventInterface").ChangeEventHandler>; | ||
onInput: PropType<import("../_util/EventInterface").ChangeEventHandler>; | ||
onKeydown: PropType<import("../_util/EventInterface").KeyboardEventHandler>; | ||
onKeyup: PropType<import("../_util/EventInterface").KeyboardEventHandler>; | ||
focused: { | ||
@@ -135,3 +146,3 @@ type: BooleanConstructor; | ||
size: { | ||
type: import("vue").PropType<import("../config-provider").SizeType>; | ||
type: PropType<import("../config-provider").SizeType>; | ||
}; | ||
@@ -143,3 +154,3 @@ disabled: { | ||
value: { | ||
type: import("vue").PropType<string | number>; | ||
type: PropType<string | number>; | ||
default: any; | ||
@@ -157,11 +168,11 @@ }; | ||
}; | ||
status: import("vue").PropType<"" | "error" | "warning">; | ||
status: PropType<"" | "error" | "warning">; | ||
defaultValue: { | ||
type: import("vue").PropType<string | number>; | ||
type: PropType<string | number>; | ||
default: any; | ||
}; | ||
'onUpdate:value': import("vue").PropType<(val: string) => void>; | ||
'onUpdate:value': PropType<(val: string) => void>; | ||
suffix: import("vue-types").VueTypeValidableDef<any>; | ||
placeholder: { | ||
type: import("vue").PropType<string | number>; | ||
type: PropType<string | number>; | ||
}; | ||
@@ -183,10 +194,10 @@ prefix: import("vue-types").VueTypeValidableDef<any>; | ||
showCount: { | ||
type: import("vue").PropType<boolean | import("../vc-input/inputProps").ShowCountProps>; | ||
type: PropType<boolean | import("../vc-input/inputProps").ShowCountProps>; | ||
}; | ||
htmlSize: NumberConstructor; | ||
onPressEnter: import("vue").PropType<import("../_util/EventInterface").KeyboardEventHandler>; | ||
onPressEnter: PropType<import("../_util/EventInterface").KeyboardEventHandler>; | ||
valueModifiers: ObjectConstructor; | ||
inputElement: import("vue-types").VueTypeValidableDef<any>; | ||
triggerFocus: import("vue").PropType<() => void>; | ||
handleReset: import("vue").PropType<import("../_util/EventInterface").MouseEventHandler>; | ||
triggerFocus: PropType<() => void>; | ||
handleReset: PropType<import("../_util/EventInterface").MouseEventHandler>; | ||
addonBefore: import("vue-types").VueTypeValidableDef<any>; | ||
@@ -203,2 +214,3 @@ addonAfter: import("vue-types").VueTypeValidableDef<any>; | ||
hidden: boolean; | ||
visible: boolean; | ||
disabled: boolean; | ||
@@ -205,0 +217,0 @@ value: string | number; |
@@ -19,3 +19,3 @@ import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2"; | ||
import inputProps from './inputProps'; | ||
import { computed, defineComponent, shallowRef } from 'vue'; | ||
import { computed, defineComponent, shallowRef, watchEffect } from 'vue'; | ||
import useConfigInject from '../config-provider/hooks/useConfigInject'; | ||
@@ -45,2 +45,7 @@ import omit from '../_util/omit'; | ||
}, | ||
visible: { | ||
type: Boolean, | ||
default: undefined | ||
}, | ||
'onUpdate:visible': Function, | ||
iconRender: Function | ||
@@ -52,3 +57,4 @@ }), | ||
attrs, | ||
expose | ||
expose, | ||
emit | ||
} = _ref; | ||
@@ -64,3 +70,9 @@ const visible = shallowRef(false); | ||
visible.value = !visible.value; | ||
emit('update:visible', visible.value); | ||
}; | ||
watchEffect(() => { | ||
if (props.visible !== undefined) { | ||
visible.value = !!props.visible; | ||
} | ||
}); | ||
const inputRef = shallowRef(); | ||
@@ -67,0 +79,0 @@ const focus = () => { |
@@ -169,9 +169,2 @@ import _extends from "@babel/runtime/helpers/esm/extends"; | ||
[`&-sm ${componentCls}, &-sm > ${componentCls}-group-addon`]: _extends({}, genInputSmallStyle(token)), | ||
// Fix https://github.com/ant-design/ant-design/issues/5754 | ||
[`&-lg ${antCls}-select-single ${antCls}-select-selector`]: { | ||
height: token.controlHeightLG | ||
}, | ||
[`&-sm ${antCls}-select-single ${antCls}-select-selector`]: { | ||
height: token.controlHeightSM | ||
}, | ||
[`> ${componentCls}`]: { | ||
@@ -395,3 +388,34 @@ display: 'table-cell', | ||
} | ||
}) | ||
}), | ||
[`&&-sm ${antCls}-btn`]: { | ||
fontSize: token.fontSizeSM, | ||
height: token.controlHeightSM, | ||
lineHeight: 'normal' | ||
}, | ||
[`&&-lg ${antCls}-btn`]: { | ||
fontSize: token.fontSizeLG, | ||
height: token.controlHeightLG, | ||
lineHeight: 'normal' | ||
}, | ||
// Fix https://github.com/ant-design/ant-design/issues/5754 | ||
[`&&-lg ${antCls}-select-single ${antCls}-select-selector`]: { | ||
height: `${token.controlHeightLG}px`, | ||
[`${antCls}-select-selection-item, ${antCls}-select-selection-placeholder`]: { | ||
// -2 is for the border size & override default | ||
lineHeight: `${token.controlHeightLG - 2}px` | ||
}, | ||
[`${antCls}-select-selection-search-input`]: { | ||
height: `${token.controlHeightLG}px` | ||
} | ||
}, | ||
[`&&-sm ${antCls}-select-single ${antCls}-select-selector`]: { | ||
height: `${token.controlHeightSM}px`, | ||
[`${antCls}-select-selection-item, ${antCls}-select-selection-placeholder`]: { | ||
// -2 is for the border size & override default | ||
lineHeight: `${token.controlHeightSM - 2}px` | ||
}, | ||
[`${antCls}-select-selection-search-input`]: { | ||
height: `${token.controlHeightSM}px` | ||
} | ||
} | ||
}; | ||
@@ -398,0 +422,0 @@ }; |
@@ -37,2 +37,3 @@ import { createVNode as _createVNode } from "vue"; | ||
close, | ||
okText, | ||
closable = false, | ||
@@ -86,3 +87,2 @@ zIndex, | ||
const style = attrs.style || {}; | ||
const okText = renderSomeContent(props.okText) || (okCancel ? locale.value.okText : locale.value.justOkText); | ||
const mergedOkCancel = okCancel !== null && okCancel !== void 0 ? okCancel : type === 'confirm'; | ||
@@ -94,2 +94,3 @@ const autoFocusButton = props.autoFocusButton === null ? false : props.autoFocusButton || 'ok'; | ||
}, attrs.class); | ||
const mergedLocal = locale.value; | ||
const cancelButton = mergedOkCancel && _createVNode(ActionButton, { | ||
@@ -102,3 +103,3 @@ "actionFn": onCancel, | ||
}, { | ||
default: () => [renderSomeContent(props.cancelText) || locale.value.cancelText] | ||
default: () => [renderSomeContent(props.cancelText) || mergedLocal.cancelText] | ||
}); | ||
@@ -153,3 +154,3 @@ return _createVNode(Dialog, { | ||
}, { | ||
default: () => [okText] | ||
default: () => [renderSomeContent(okText) || (mergedOkCancel ? mergedLocal.okText : mergedLocal.justOkText)] | ||
})])])] | ||
@@ -156,0 +157,0 @@ }); |
@@ -15,3 +15,3 @@ import _extends from "@babel/runtime/helpers/esm/extends"; | ||
backgroundColor: token.colorBgContainer, | ||
[`${componentCls}-ghost`]: { | ||
[`&${componentCls}-ghost`]: { | ||
backgroundColor: token.pageHeaderGhostBg | ||
@@ -114,3 +114,3 @@ }, | ||
pageHeaderBackColor: token.colorTextBase, | ||
pageHeaderGhostBg: 'inherit', | ||
pageHeaderGhostBg: 'transparent', | ||
pageHeaderHeadingTitle: token.fontSizeHeading4, | ||
@@ -117,0 +117,0 @@ pageHeaderHeadingSubTitle: token.fontSize, |
@@ -330,3 +330,3 @@ import _extends from "@babel/runtime/helpers/esm/extends"; | ||
outline: 'none', | ||
transition: `border ${token.motionDurationMid}` | ||
transition: `all ${token.motionDurationMid}` | ||
}, | ||
@@ -333,0 +333,0 @@ [`&:focus-visible ${componentCls}-item-link`]: _extends({}, genFocusOutline(token)), |
@@ -65,2 +65,3 @@ import type { Plugin } from 'vue'; | ||
tabindex?: string | number; | ||
readonly precision?: number; | ||
readonly prefixCls?: string; | ||
@@ -71,3 +72,2 @@ readonly format?: string; | ||
readonly prefix?: import("../_util/type").VueNode; | ||
readonly precision?: number; | ||
readonly decimalSeparator?: string; | ||
@@ -74,0 +74,0 @@ readonly groupSeparator?: string; |
import _extends from "@babel/runtime/helpers/esm/extends"; | ||
import { PresetColors } from '../theme/internal'; | ||
import { PresetColors } from '../theme/interface'; | ||
export function genPresetColor(token, genCss) { | ||
@@ -4,0 +4,0 @@ return PresetColors.reduce((prev, colorKey) => { |
export const roundedArrow = (width, innerRadius, outerRadius, bgColor, boxShadow) => { | ||
const unitWidth = width / 2; | ||
const ax = unitWidth - outerRadius * (Math.sqrt(2) - 1); | ||
const ax = 0; | ||
const ay = unitWidth; | ||
const bx = unitWidth + outerRadius * (1 - 1 / Math.sqrt(2)); | ||
const bx = outerRadius * 1 / Math.sqrt(2); | ||
const by = unitWidth - outerRadius * (1 - 1 / Math.sqrt(2)); | ||
const cx = 2 * unitWidth - innerRadius * (1 / Math.sqrt(2)); | ||
const cy = innerRadius * (1 / Math.sqrt(2)); | ||
const dx = 4 * unitWidth - cx; | ||
const cx = unitWidth - innerRadius * (1 / Math.sqrt(2)); | ||
const cy = outerRadius * (Math.sqrt(2) - 1) + innerRadius * (1 / Math.sqrt(2)); | ||
const dx = 2 * unitWidth - cx; | ||
const dy = cy; | ||
const ex = 4 * unitWidth - bx; | ||
const ex = 2 * unitWidth - bx; | ||
const ey = by; | ||
const fx = 4 * unitWidth - ax; | ||
const fx = 2 * unitWidth - ax; | ||
const fy = ay; | ||
const shadowWidth = unitWidth * Math.sqrt(2) + outerRadius * (Math.sqrt(2) - 2); | ||
const polygonOffset = outerRadius * (Math.sqrt(2) - 1); | ||
return { | ||
borderRadius: { | ||
_skip_check_: true, | ||
value: `0 0 ${innerRadius}px` | ||
}, | ||
pointerEvents: 'none', | ||
width: width * 2, | ||
height: width * 2, | ||
width, | ||
height: width, | ||
overflow: 'hidden', | ||
@@ -27,4 +25,4 @@ '&::after': { | ||
position: 'absolute', | ||
width: width / Math.sqrt(2), | ||
height: width / Math.sqrt(2), | ||
width: shadowWidth, | ||
height: shadowWidth, | ||
bottom: 0, | ||
@@ -46,6 +44,9 @@ insetInline: 0, | ||
insetInlineStart: 0, | ||
width: width * 2, | ||
width, | ||
height: width / 2, | ||
background: bgColor, | ||
clipPath: `path('M ${ax} ${ay} A ${outerRadius} ${outerRadius} 0 0 0 ${bx} ${by} L ${cx} ${cy} A ${innerRadius} ${innerRadius} 0 0 1 ${dx} ${dy} L ${ex} ${ey} A ${outerRadius} ${outerRadius} 0 0 0 ${fx} ${fy} Z')`, | ||
clipPath: { | ||
_multi_value_: true, | ||
value: [`polygon(${polygonOffset}px 100%, 50% ${polygonOffset}px, ${2 * unitWidth - polygonOffset}px 100%, ${polygonOffset}px 100%)`, `path('M ${ax} ${ay} A ${outerRadius} ${outerRadius} 0 0 0 ${bx} ${by} L ${cx} ${cy} A ${innerRadius} ${innerRadius} 0 0 1 ${dx} ${dy} L ${ex} ${ey} A ${outerRadius} ${outerRadius} 0 0 0 ${fx} ${fy} Z')`] | ||
}, | ||
content: '""' | ||
@@ -52,0 +53,0 @@ } |
@@ -41,4 +41,3 @@ import _extends from "@babel/runtime/helpers/esm/extends"; | ||
tableFooterBg, | ||
paddingContentVerticalLG, | ||
wireframe | ||
paddingContentVerticalLG | ||
} = token; | ||
@@ -179,28 +178,2 @@ const tableBorder = `${lineWidth}px ${lineType} ${tableBorderColor}`; | ||
}, | ||
[`${componentCls}:not(${componentCls}-bordered) ${componentCls}-tbody > tr`]: wireframe ? undefined : { | ||
[`&${componentCls}-row:hover, &${componentCls}-row${componentCls}-row-selected`]: { | ||
[`+ tr${componentCls}-row > td`]: { | ||
borderTopColor: 'transparent' | ||
} | ||
}, | ||
[`&${componentCls}-row:last-child:hover > td, | ||
&${componentCls}-row${componentCls}-row-selected:last-child > td`]: { | ||
borderBottomColor: 'transparent' | ||
}, | ||
[` | ||
&${componentCls}-row:hover > td, | ||
> td${componentCls}-cell-row-hover, | ||
&${componentCls}-row${componentCls}-row-selected > td | ||
`]: { | ||
borderTopColor: 'transparent', | ||
'&:first-child': { | ||
borderStartStartRadius: tableRadius, | ||
borderEndStartRadius: tableRadius | ||
}, | ||
'&:last-child': { | ||
borderStartEndRadius: tableRadius, | ||
borderEndEndRadius: tableRadius | ||
} | ||
} | ||
}, | ||
// ============================ Footer ============================ | ||
@@ -207,0 +180,0 @@ [`${componentCls}-footer`]: { |
@@ -83,4 +83,4 @@ import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2"; | ||
}; | ||
const InteralTable = defineComponent({ | ||
name: 'InteralTable', | ||
const InternalTable = defineComponent({ | ||
name: 'InternalTable', | ||
inheritAttrs: false, | ||
@@ -458,7 +458,7 @@ props: initDefaultProps(_extends(_extends({}, tableProps()), { | ||
const columns = props.columns || convertChildrenToColumns((_a = slots.default) === null || _a === void 0 ? void 0 : _a.call(slots)); | ||
return _createVNode(InteralTable, _objectSpread(_objectSpread(_objectSpread({ | ||
return _createVNode(InternalTable, _objectSpread(_objectSpread(_objectSpread({ | ||
"ref": table | ||
}, attrs), props), {}, { | ||
"columns": columns || [], | ||
"expandedRowRender": slots.expandedRowRender, | ||
"expandedRowRender": slots.expandedRowRender || props.expandedRowRender, | ||
"contextSlots": _extends({}, slots) | ||
@@ -465,0 +465,0 @@ }), slots); |
@@ -155,2 +155,3 @@ import { resolveDirective as _resolveDirective, createVNode as _createVNode } from "vue"; | ||
} = props; | ||
if (!tabs.length) return null; | ||
const dropdownPrefix = `${prefixCls}-dropdown`; | ||
@@ -157,0 +158,0 @@ const dropdownAriaLabel = locale === null || locale === void 0 ? void 0 : locale.dropdownAriaLabel; |
@@ -739,3 +739,7 @@ import _extends from "@babel/runtime/helpers/esm/extends"; | ||
position: 'relative', | ||
width: '100%' | ||
display: 'flex', | ||
width: '100%', | ||
['&-animated']: { | ||
transition: 'margin 0.3s' | ||
} | ||
}, | ||
@@ -749,5 +753,4 @@ [`${componentCls}-content-holder`]: { | ||
outline: 'none', | ||
'&-hidden': { | ||
display: 'none' | ||
} | ||
flex: 'none', | ||
width: '100%' | ||
} | ||
@@ -754,0 +757,0 @@ }), |
@@ -55,3 +55,3 @@ import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2"; | ||
return wrapSSR(_createVNode("span", _objectSpread(_objectSpread({}, attrs), {}, { | ||
"class": cls.value, | ||
"class": [cls.value, attrs.class], | ||
"onClick": handleClick | ||
@@ -58,0 +58,0 @@ }), [(_a = slots.default) === null || _a === void 0 ? void 0 : _a.call(slots)])); |
@@ -28,2 +28,6 @@ import type { HTMLAttributes, PropType, ExtractPropTypes, Plugin } from 'vue'; | ||
icon: import("vue-types").VueTypeValidableDef<any>; | ||
bordered: { | ||
type: BooleanConstructor; | ||
default: boolean; | ||
}; | ||
}; | ||
@@ -38,2 +42,3 @@ export type TagProps = HTMLAttributes & Partial<ExtractPropTypes<ReturnType<typeof tagProps>>>; | ||
visible?: boolean; | ||
bordered?: boolean; | ||
closable?: boolean; | ||
@@ -132,4 +137,9 @@ key?: string | number | symbol; | ||
icon: import("vue-types").VueTypeValidableDef<any>; | ||
bordered: { | ||
type: BooleanConstructor; | ||
default: boolean; | ||
}; | ||
}>>, () => import("../_util/type").VueNode, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, { | ||
visible: boolean; | ||
bordered: boolean; | ||
closable: boolean; | ||
@@ -183,2 +193,6 @@ }, {}, string, CustomSlotsType<{ | ||
icon: import("vue-types").VueTypeValidableDef<any>; | ||
bordered: { | ||
type: BooleanConstructor; | ||
default: boolean; | ||
}; | ||
}>> & import("vue").ShallowUnwrapRef<() => import("../_util/type").VueNode> & {} & import("vue").ComponentCustomProperties & {}; | ||
@@ -211,4 +225,9 @@ __isFragment?: never; | ||
icon: import("vue-types").VueTypeValidableDef<any>; | ||
bordered: { | ||
type: BooleanConstructor; | ||
default: boolean; | ||
}; | ||
}>>, () => import("../_util/type").VueNode, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, { | ||
visible: boolean; | ||
bordered: boolean; | ||
closable: boolean; | ||
@@ -215,0 +234,0 @@ }, {}, string, CustomSlotsType<{ |
@@ -34,3 +34,7 @@ import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2"; | ||
'onUpdate:visible': Function, | ||
icon: PropTypes.any | ||
icon: PropTypes.any, | ||
bordered: { | ||
type: Boolean, | ||
default: true | ||
} | ||
}); | ||
@@ -90,3 +94,4 @@ const Tag = defineComponent({ | ||
[`${prefixCls.value}-hidden`]: !visible.value, | ||
[`${prefixCls.value}-rtl`]: direction.value === 'rtl' | ||
[`${prefixCls.value}-rtl`]: direction.value === 'rtl', | ||
[`${prefixCls.value}-borderless`]: !props.bordered | ||
})); | ||
@@ -93,0 +98,0 @@ const handleClick = e => { |
@@ -11,3 +11,6 @@ import _extends from "@babel/runtime/helpers/esm/extends"; | ||
background: token[`color${capitalizedCssVariableType}Bg`], | ||
borderColor: token[`color${capitalizedCssVariableType}Border`] | ||
borderColor: token[`color${capitalizedCssVariableType}Border`], | ||
[`&${token.componentCls}-borderless`]: { | ||
borderColor: 'transparent' | ||
} | ||
} | ||
@@ -33,2 +36,5 @@ }; | ||
borderColor: darkColor | ||
}, | ||
[`&${token.componentCls}-borderless`]: { | ||
borderColor: 'transparent' | ||
} | ||
@@ -114,3 +120,7 @@ } | ||
} | ||
}) | ||
}), | ||
[`${componentCls}-borderless`]: { | ||
borderColor: 'transparent', | ||
background: token.tagBorderlessBg | ||
} | ||
}; | ||
@@ -137,6 +147,6 @@ }; | ||
tagIconSize: fontSizeIcon - 2 * lineWidth, | ||
tagPaddingHorizontal: 8 // Fixed padding. | ||
tagPaddingHorizontal: 8, | ||
tagBorderlessBg: token.colorFillTertiary | ||
}); | ||
return [genBaseStyle(tagToken), genPresetStyle(tagToken), genTagStatusStyle(tagToken, 'success', 'Success'), genTagStatusStyle(tagToken, 'processing', 'Info'), genTagStatusStyle(tagToken, 'error', 'Error'), genTagStatusStyle(tagToken, 'warning', 'Warning')]; | ||
}); |
@@ -49,2 +49,3 @@ import type { ComponentToken as AlertComponentToken } from '../../alert/style'; | ||
import type { ComponentToken as QRCodeComponentToken } from '../../qrcode/style'; | ||
import type { ComponentToken as AppComponentToken } from '../../app/style'; | ||
import type { ComponentToken as WaveToken } from '../../_util/wave/style'; | ||
@@ -114,3 +115,4 @@ export interface ComponentTokenMap { | ||
QRCode?: QRCodeComponentToken; | ||
App?: AppComponentToken; | ||
Wave?: WaveToken; | ||
} |
@@ -149,6 +149,6 @@ import type { CSSProperties, PropType } from 'vue'; | ||
visible: boolean; | ||
trigger: string | string[]; | ||
align: { | ||
[key: string]: any; | ||
}; | ||
trigger: string | string[]; | ||
prefixCls: string; | ||
@@ -155,0 +155,0 @@ showAction: unknown[]; |
@@ -224,2 +224,4 @@ import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2"; | ||
usemap, | ||
width, | ||
height, | ||
class: cn(`${prefixCls}-img`, { | ||
@@ -229,3 +231,3 @@ [`${prefixCls}-img-placeholder`]: placeholder === true | ||
style: _extends({ | ||
height | ||
height: toSizePx(height) | ||
}, style) | ||
@@ -232,0 +234,0 @@ }; |
@@ -16,2 +16,4 @@ import type { VNode, PropType } from 'vue'; | ||
right?: VNode; | ||
flipX?: VNode; | ||
flipY?: VNode; | ||
}; | ||
@@ -32,2 +34,4 @@ } | ||
right?: VNode; | ||
flipX?: VNode; | ||
flipY?: VNode; | ||
}>; | ||
@@ -42,2 +46,4 @@ default: () => { | ||
right?: VNode; | ||
flipX?: VNode; | ||
flipY?: VNode; | ||
}; | ||
@@ -132,2 +138,4 @@ }; | ||
right?: VNode; | ||
flipX?: VNode; | ||
flipY?: VNode; | ||
}>; | ||
@@ -142,2 +150,4 @@ default: () => { | ||
right?: VNode; | ||
flipX?: VNode; | ||
flipY?: VNode; | ||
}; | ||
@@ -231,2 +241,4 @@ }; | ||
right?: VNode; | ||
flipX?: VNode; | ||
flipY?: VNode; | ||
}>; | ||
@@ -241,2 +253,4 @@ default: () => { | ||
right?: VNode; | ||
flipX?: VNode; | ||
flipY?: VNode; | ||
}; | ||
@@ -341,4 +355,6 @@ }; | ||
right?: VNode; | ||
flipX?: VNode; | ||
flipY?: VNode; | ||
}; | ||
}, {}>; | ||
export default Preview; |
@@ -48,6 +48,12 @@ import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2"; | ||
left, | ||
right | ||
right, | ||
flipX, | ||
flipY | ||
} = reactive(props.icons); | ||
const scale = shallowRef(1); | ||
const rotate = shallowRef(0); | ||
const flip = reactive({ | ||
x: 1, | ||
y: 1 | ||
}); | ||
const [position, setPosition] = useFrameSetState(initialPosition); | ||
@@ -86,9 +92,17 @@ const onClose = () => emit('close'); | ||
}; | ||
const onZoomIn = () => { | ||
scale.value++; | ||
const onZoomIn = isWheel => { | ||
if (!isWheel) { | ||
scale.value++; | ||
} else { | ||
scale.value += 0.5; | ||
} | ||
setPosition(initialPosition); | ||
}; | ||
const onZoomOut = () => { | ||
const onZoomOut = isWheel => { | ||
if (scale.value > 1) { | ||
scale.value--; | ||
if (!isWheel) { | ||
scale.value--; | ||
} else { | ||
scale.value -= 0.5; | ||
} | ||
} | ||
@@ -103,2 +117,8 @@ setPosition(initialPosition); | ||
}; | ||
const onFlipX = () => { | ||
flip.x = -flip.x; | ||
}; | ||
const onFlipY = () => { | ||
flip.y = -flip.y; | ||
}; | ||
const onSwitchLeft = event => { | ||
@@ -131,7 +151,7 @@ event.preventDefault(); | ||
icon: zoomIn, | ||
onClick: onZoomIn, | ||
onClick: () => onZoomIn(), | ||
type: 'zoomIn' | ||
}, { | ||
icon: zoomOut, | ||
onClick: onZoomOut, | ||
onClick: () => onZoomOut(), | ||
type: 'zoomOut', | ||
@@ -147,2 +167,10 @@ disabled: computed(() => scale.value === 1) | ||
type: 'rotateLeft' | ||
}, { | ||
icon: flipX, | ||
onClick: onFlipX, | ||
type: 'flipX' | ||
}, { | ||
icon: flipY, | ||
onClick: onFlipY, | ||
type: 'flipY' | ||
}]; | ||
@@ -258,5 +286,5 @@ const onMouseUp = () => { | ||
if (wheelDirection > 0) { | ||
onZoomOut(); | ||
onZoomOut(true); | ||
} else if (wheelDirection < 0) { | ||
onZoomIn(); | ||
onZoomIn(true); | ||
} | ||
@@ -320,3 +348,3 @@ }); | ||
"style": { | ||
transform: `scale3d(${scale.value}, ${scale.value}, 1) rotate(${rotate.value}deg)` | ||
transform: `scale3d(${flip.x * scale.value}, ${flip.y * scale.value}, 1) rotate(${rotate.value}deg)` | ||
} | ||
@@ -323,0 +351,0 @@ }, null)]), showLeftOrRightSwitches.value && _createVNode("div", { |
@@ -63,2 +63,8 @@ import type { PropType, Ref, ComputedRef } from 'vue'; | ||
}>; | ||
flipX?: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, { | ||
[key: string]: any; | ||
}>; | ||
flipY?: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, { | ||
[key: string]: any; | ||
}>; | ||
}>; | ||
@@ -97,2 +103,8 @@ default: () => {}; | ||
}>; | ||
flipX?: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, { | ||
[key: string]: any; | ||
}>; | ||
flipY?: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, { | ||
[key: string]: any; | ||
}>; | ||
}>; | ||
@@ -130,2 +142,8 @@ default: () => {}; | ||
}>; | ||
flipX?: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, { | ||
[key: string]: any; | ||
}>; | ||
flipY?: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, { | ||
[key: string]: any; | ||
}>; | ||
}>; | ||
@@ -132,0 +150,0 @@ default: () => {}; |
@@ -202,2 +202,3 @@ declare namespace _default { | ||
namespace watch { | ||
function autoplay(newValue: any, oldValue: any): void; | ||
function __propsSymbol__(): void; | ||
@@ -204,0 +205,0 @@ } |
@@ -42,2 +42,11 @@ import _extends from "@babel/runtime/helpers/esm/extends"; | ||
watch: { | ||
autoplay(newValue, oldValue) { | ||
if (!oldValue && newValue) { | ||
this.handleAutoPlay('playing'); | ||
} else if (newValue) { | ||
this.handleAutoPlay('update'); | ||
} else { | ||
this.pause('paused'); | ||
} | ||
}, | ||
__propsSymbol__() { | ||
@@ -44,0 +53,0 @@ const nextProps = this.$props; |
@@ -166,6 +166,6 @@ import type { CSSProperties, PropType } from 'vue'; | ||
visible: boolean; | ||
trigger: any; | ||
align: { | ||
[key: string]: any; | ||
}; | ||
trigger: any; | ||
prefixCls: string; | ||
@@ -172,0 +172,0 @@ builtinPlacements: { |
@@ -1,1 +0,1 @@ | ||
{"Affix":{"global":["zIndexBase"],"component":{}},"Alert":{"global":["fontSizeHeading3","motionDurationSlow","marginXS","marginSM","fontSize","fontSizeLG","lineHeight","borderRadiusLG","motionEaseInOutCirc","colorText","paddingContentVerticalSM","paddingMD","paddingContentHorizontalLG","fontFamily","colorSuccess","colorSuccessBorder","colorSuccessBg","colorWarning","colorWarningBorder","colorWarningBg","colorError","colorErrorBorder","colorErrorBg","colorInfo","colorInfoBorder","colorInfoBg","lineWidth","lineType","motionDurationMid","fontSizeIcon","colorIcon","colorIconHover"],"component":{}},"Anchor":{"global":["fontSize","fontSizeLG","padding","paddingXXS","motionDurationSlow","lineWidthBold","colorPrimary","lineType","colorSplit","colorText","lineHeight","fontFamily"],"component":{}},"Avatar":{"global":["colorTextLightSolid","controlHeight","controlHeightLG","controlHeightSM","fontSize","fontSizeLG","fontSizeXL","fontSizeHeading3","marginXS","colorBorderBg","colorTextPlaceholder","borderRadius","borderRadiusLG","borderRadiusSM","lineWidth","lineType","colorText","lineHeight","fontFamily"],"component":{}},"Badge":{"global":["fontSize","lineHeight","fontSizeSM","lineWidth","marginXS","colorBorderBg","colorBgContainer","colorError","colorErrorHover","motionDurationSlow","blue-1","blue-3","blue-6","blue-7","purple-1","purple-3","purple-6","purple-7","cyan-1","cyan-3","cyan-6","cyan-7","green-1","green-3","green-6","green-7","magenta-1","magenta-3","magenta-6","magenta-7","pink-1","pink-3","pink-6","pink-7","red-1","red-3","red-6","red-7","orange-1","orange-3","orange-6","orange-7","yellow-1","yellow-3","yellow-6","yellow-7","volcano-1","volcano-3","volcano-6","volcano-7","geekblue-1","geekblue-3","geekblue-6","geekblue-7","lime-1","lime-3","lime-6","lime-7","gold-1","gold-3","gold-6","gold-7","colorText","fontFamily","motionDurationMid","paddingXS","colorSuccess","colorPrimary","colorTextPlaceholder","colorWarning","motionEaseOutBack","borderRadiusSM","colorTextLightSolid"],"component":{}},"Breadcrumb":{"global":["colorTextDescription","fontSize","colorText","marginXS","lineHeight","fontFamily","motionDurationMid","paddingXXS","borderRadiusSM","marginXXS","colorBgTextHover","lineWidthBold","colorPrimaryBorder","fontSizeIcon"],"component":{}},"Button":{"global":["controlTmpOutline","paddingContentHorizontal","lineWidth","lineType","motionDurationMid","motionEaseInOut","lineHeight","colorText","marginXS","lineWidthBold","colorPrimaryBorder","colorPrimaryHover","controlHeightSM","paddingXS","borderRadiusSM","fontSize","opacityLoading","motionDurationSlow","controlHeight","borderRadius","controlHeightLG","fontSizeLG","borderRadiusLG","colorBorder","colorTextDisabled","colorBgContainerDisabled","colorBgContainer","controlOutlineWidth","colorPrimaryActive","colorError","colorErrorHover","colorErrorBorderHover","colorErrorActive","colorTextLightSolid","colorPrimary","controlOutline","colorErrorOutline","colorLink","colorLinkHover","colorLinkActive","colorBgTextHover","colorBgTextActive","colorErrorBg"],"component":{}},"Calendar":{"global":["paddingXXS","controlHeight","fontSize","lineHeight","lineWidth","controlHeightLG","fontSizeLG","lineHeightLG","controlHeightSM","paddingSM","paddingXS","controlPaddingHorizontal","colorPrimaryHover","colorPrimary","colorBgContainer","controlItemBgActive","fontSizeSM","lineHeightSM","marginXS","lineType","borderRadiusLG","colorTextHeading","colorSplit","colorIcon","motionDurationMid","colorIconHover","fontWeightStrong","colorTextDisabled","colorText","motionDurationSlow","colorLink","colorLinkActive","colorLinkHover","borderRadiusSM","colorTextLightSolid","borderRadius","controlItemBgHover","marginXXS","colorBgContainerDisabled","fontFamily","lineWidthBold","screenXS"],"component":{"yearControlWidth":80,"monthControlWidth":70,"miniContentHeight":256}},"Card":{"global":["boxShadowCard","fontSizeLG","lineHeightLG","padding","fontSize","lineHeight","paddingXS","paddingLG","lineWidth","paddingSM","colorBorderSecondary","boxShadow","colorText","fontFamily","colorBgContainer","borderRadiusLG","colorTextHeading","fontWeightStrong","lineType","motionDurationMid","colorTextDescription","colorPrimary","marginXXS","marginXS","colorFillAlter"],"component":{}},"Carousel":{"global":["controlHeightLG","controlHeightSM","marginXXS","colorText","fontSize","lineHeight","fontFamily","motionDurationSlow","colorBgContainer"],"component":{"dotWidth":16,"dotHeight":3,"dotWidthActive":24}},"Cascader":{"global":["controlHeight","fontSize","lineHeight","controlInteractiveSize","colorText","fontFamily","marginXS","lineWidthBold","colorPrimaryBorder","colorBgContainer","lineWidth","lineType","colorBorder","borderRadiusSM","motionDurationSlow","colorWhite","motionDurationFast","motionEaseInBack","paddingXS","fontSizeLG","colorPrimary","colorPrimaryHover","motionDurationMid","motionEaseOutBack","colorBgContainerDisabled","colorTextDisabled","paddingXXS","colorSplit","paddingSM","controlItemBgHover","fontWeightStrong","controlItemBgActive","colorTextDescription","fontSizeIcon","colorHighlight"],"component":{"controlWidth":184,"controlItemWidth":111,"dropdownHeight":180}},"Checkbox":{"global":["controlInteractiveSize","colorText","fontSize","lineHeight","fontFamily","marginXS","lineWidthBold","colorPrimaryBorder","colorBgContainer","lineWidth","lineType","colorBorder","borderRadiusSM","motionDurationSlow","colorWhite","motionDurationFast","motionEaseInBack","paddingXS","fontSizeLG","colorPrimary","colorPrimaryHover","motionDurationMid","motionEaseOutBack","colorBgContainerDisabled","colorTextDisabled"],"component":{}},"Collapse":{"global":["colorBgContainer","colorFillAlter","paddingSM","padding","borderRadiusLG","lineWidth","lineType","colorBorder","colorText","colorTextHeading","colorTextDisabled","fontSize","lineHeight","marginSM","motionDurationSlow","fontSizeIcon","fontFamily","paddingXXS","motionDurationMid","motionEaseInOut"],"component":{}},"Comment":{"global":["paddingMD","fontSize","fontSizeSM","colorTextTertiary","colorTextPlaceholder","colorTextSecondary","marginSM","marginXXS","paddingXS","motionDurationSlow"],"component":{}},"DatePicker":{"global":["zIndexPopupBase","paddingXXS","controlHeight","fontSize","lineHeight","lineWidth","controlHeightLG","fontSizeLG","lineHeightLG","controlHeightSM","paddingSM","paddingXS","controlPaddingHorizontal","colorPrimaryHover","colorPrimary","boxShadowPopoverArrow","colorBgContainer","lineType","colorBorder","borderRadius","motionDurationMid","colorBgContainerDisabled","colorTextDisabled","colorTextPlaceholder","marginXS","colorTextDescription","lineWidthBold","motionDurationSlow","controlItemBgActive","colorPrimaryBorder","sizePopupArrow","borderRadiusXS","borderRadiusOuter","colorBgElevated","borderRadiusLG","boxShadowSecondary","borderRadiusSM","colorSplit","controlItemBgHover","colorText","fontFamily","controlOutlineWidth","controlOutline","controlPaddingHorizontalSM","colorTextHeading","colorIcon","colorIconHover","fontWeightStrong","colorLink","colorLinkActive","colorLinkHover","colorTextLightSolid","marginXXS","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc","colorError","colorErrorOutline","colorWarning","colorWarningOutline"],"component":{"presetsWidth":120,"presetsMaxWidth":200,"zIndexPopup":1050}},"Descriptions":{"global":["colorFillAlter","fontSizeSM","lineHeightSM","colorText","paddingXS","padding","paddingLG","paddingSM","marginXS","marginXXS","fontSize","lineHeight","fontFamily","lineWidth","lineType","colorSplit","fontWeightStrong","fontSizeLG","lineHeightLG","borderRadiusLG"],"component":{}},"Divider":{"global":["marginXS","margin","marginLG","colorSplit","lineWidth","colorText","fontSize","lineHeight","fontFamily","colorTextHeading","fontSizeLG"],"component":{"sizePaddingEdgeHorizontal":0}},"Drawer":{"global":["zIndexPopupBase","paddingXS","padding","colorBgMask","colorBgElevated","motionDurationSlow","motionDurationMid","paddingLG","fontSizeLG","lineHeightLG","lineWidth","lineType","colorSplit","marginSM","colorIcon","colorIconHover","colorText","fontWeightStrong","boxShadowDrawerLeft","boxShadowDrawerRight","boxShadowDrawerUp","boxShadowDrawerDown"],"component":{"zIndexPopup":1000}},"Dropdown":{"global":["zIndexPopupBase","marginXXS","sizePopupArrow","controlHeight","fontSize","lineHeight","paddingXXS","borderRadiusOuter","borderRadiusLG","motionDurationMid","colorTextDisabled","fontSizeIcon","controlPaddingHorizontal","colorBgElevated","boxShadowPopoverArrow","colorText","fontFamily","borderRadiusXS","boxShadowSecondary","lineWidthBold","colorPrimaryBorder","colorTextDescription","borderRadiusSM","marginXS","fontSizeSM","controlItemBgHover","colorPrimary","controlItemBgActive","controlItemBgActiveHover","colorSplit","paddingXS","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc","opacityLoading","colorError","colorTextLightSolid"],"component":{"zIndexPopup":1050}},"Empty":{"global":["controlHeightLG","margin","marginXS","marginXL","fontSize","lineHeight","opacityImage","colorTextDisabled"],"component":{}},"FloatButton":{"global":["colorTextLightSolid","colorBgElevated","controlHeightLG","marginXXL","marginLG","fontSize","fontSizeIcon","controlItemBgHover","margin","borderRadiusLG","colorText","lineHeight","fontFamily","lineWidth","lineType","colorSplit","boxShadowSecondary","paddingXXS","motionDurationMid","borderRadiusSM","colorFillContent","fontSizeLG","fontSizeSM","colorPrimary","colorPrimaryHover","motionDurationSlow","motionEaseInOutCirc"],"component":{}},"Form":{"global":["colorText","fontSize","lineHeight","fontFamily","marginLG","colorTextDescription","fontSizeLG","lineWidth","lineType","colorBorder","controlOutlineWidth","controlOutline","paddingSM","controlHeightSM","controlHeightLG","colorError","colorWarning","controlHeight","colorTextHeading","marginXXS","marginXS","motionDurationMid","motionEaseOut","motionEaseOutBack","colorSuccess","colorPrimary","motionDurationSlow","motionEaseInOut","margin","paddingXS","screenXSMax","screenSMMax","screenMDMax","screenLGMax"],"component":{}},"Grid":{"global":[],"component":{}},"Image":{"global":["zIndexPopupBase","colorTextLightSolid","fontSizeIcon","controlHeightLG","colorBgContainerDisabled","motionDurationSlow","paddingXXS","marginXXS","motionEaseOut","paddingSM","colorText","fontSize","lineHeight","fontFamily","marginSM","colorBgMask","motionDurationMid","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"zIndexPopup":1080,"previewOperationColor":"rgb(255, 255, 255)","previewOperationColorDisabled":"rgba(255, 255, 255, 0.25)","previewOperationSize":18}},"InputNumber":{"global":["controlHeightSM","lineWidth","fontSize","paddingXXS","controlHeight","lineHeight","controlHeightLG","fontSizeLG","lineHeightLG","paddingSM","paddingXS","controlPaddingHorizontal","colorPrimaryHover","lineType","colorBorder","borderRadius","colorError","colorTextDescription","motionDurationMid","colorPrimary","colorBgContainer","colorTextDisabled","borderRadiusSM","borderRadiusLG","colorText","fontFamily","colorTextPlaceholder","controlOutlineWidth","controlOutline","colorBgContainerDisabled","motionDurationSlow","controlPaddingHorizontalSM","colorWarning","colorErrorOutline","colorWarningOutline","colorErrorBorderHover","colorWarningBorderHover","colorFillAlter"],"component":{"controlWidth":90,"handleWidth":22,"handleFontSize":7,"handleVisible":"auto"}},"Input":{"global":["paddingXXS","controlHeight","fontSize","lineHeight","lineWidth","controlHeightLG","fontSizeLG","lineHeightLG","controlHeightSM","paddingSM","paddingXS","controlPaddingHorizontal","colorPrimaryHover","colorText","fontFamily","colorBgContainer","lineType","colorBorder","borderRadius","motionDurationMid","colorTextPlaceholder","controlOutlineWidth","controlOutline","colorTextDisabled","colorBgContainerDisabled","motionDurationSlow","borderRadiusLG","controlPaddingHorizontalSM","borderRadiusSM","colorError","colorWarning","colorErrorOutline","colorWarningOutline","colorErrorBorderHover","colorWarningBorderHover","paddingLG","colorTextDescription","colorIcon","colorIconHover","colorTextQuaternary","fontSizeIcon","colorTextTertiary","colorSuccess","colorFillAlter","colorPrimary","colorPrimaryActive"],"component":{}},"Layout":{"global":["colorBgLayout","colorText","controlHeightSM","controlHeight","controlHeightLG","marginXXS","colorTextLightSolid","motionDurationMid","motionDurationSlow","fontSize","borderRadius","fontSizeXL","colorBgContainer"],"component":{"colorBgHeader":"#001529","colorBgBody":"#f5f5f5","colorBgTrigger":"#002140"}},"List":{"global":["controlHeightLG","paddingContentVertical","paddingContentHorizontalLG","paddingContentVerticalSM","paddingContentHorizontal","paddingContentVerticalLG","controlHeight","paddingSM","marginLG","padding","colorPrimary","paddingXS","margin","colorText","colorTextDescription","motionDurationSlow","lineWidth","fontSize","lineHeight","fontFamily","marginXXS","marginXXL","colorSplit","fontSizeSM","colorTextDisabled","fontSizeLG","lineHeightLG","lineType","paddingLG","borderRadiusLG","colorBorder","screenSM","screenMD","marginSM"],"component":{"contentWidth":220}},"Mentions":{"global":["zIndexPopupBase","paddingXXS","controlHeight","fontSize","lineHeight","lineWidth","controlHeightLG","fontSizeLG","lineHeightLG","controlHeightSM","paddingSM","paddingXS","controlPaddingHorizontal","colorPrimaryHover","colorTextDisabled","controlItemBgHover","colorText","motionDurationSlow","colorBgElevated","borderRadiusLG","boxShadowSecondary","fontFamily","colorBgContainer","lineType","colorBorder","borderRadius","motionDurationMid","colorTextPlaceholder","controlOutlineWidth","controlOutline","colorBgContainerDisabled","controlPaddingHorizontalSM","borderRadiusSM","colorError","colorWarning","colorErrorOutline","colorWarningOutline","colorErrorBorderHover","colorWarningBorderHover","fontWeightStrong"],"component":{"dropdownHeight":250,"controlItemWidth":100,"zIndexPopup":1050}},"Menu":{"global":["colorPrimary","colorError","colorTextDisabled","colorErrorBg","colorText","colorTextDescription","colorBgContainer","colorFillAlter","colorFillContent","lineWidth","lineWidthBold","controlItemBgActive","colorBgTextHover","zIndexPopupBase","borderRadiusLG","borderRadiusSM","marginXXS","colorBgElevated","colorErrorHover","colorTextLightSolid","controlHeightLG","fontSize","margin","motionDurationSlow","motionDurationMid","motionEaseInOut","lineHeight","paddingXS","padding","colorSplit","lineType","fontFamily","motionEaseOut","controlHeightSM","borderRadius","paddingXL","fontSizeSM","fontSizeLG","boxShadowSecondary","marginXS","colorPrimaryBorder","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"dropdownWidth":160,"zIndexPopup":1050,"radiusItem":8,"radiusSubMenuItem":4,"colorItemText":"rgba(0, 0, 0, 0.88)","colorItemTextHover":"rgba(0, 0, 0, 0.88)","colorItemTextHoverHorizontal":"#1677ff","colorGroupTitle":"rgba(0, 0, 0, 0.45)","colorItemTextSelected":"#1677ff","colorItemTextSelectedHorizontal":"#1677ff","colorItemBg":"#ffffff","colorItemBgHover":"rgba(0, 0, 0, 0.06)","colorItemBgActive":"rgba(0, 0, 0, 0.06)","colorSubItemBg":"rgba(0, 0, 0, 0.02)","colorItemBgSelected":"#e6f4ff","colorItemBgSelectedHorizontal":"transparent","colorActiveBarWidth":0,"colorActiveBarHeight":2,"colorActiveBarBorderSize":1,"colorItemTextDisabled":"rgba(0, 0, 0, 0.25)","colorDangerItemText":"#ff4d4f","colorDangerItemTextHover":"#ff4d4f","colorDangerItemTextSelected":"#ff4d4f","colorDangerItemBgActive":"#fff2f0","colorDangerItemBgSelected":"#fff2f0","itemMarginInline":4}},"Message":{"global":["zIndexPopupBase","controlHeightLG","fontSize","lineHeight","paddingSM","boxShadowSecondary","colorBgElevated","colorSuccess","colorError","colorWarning","colorInfo","fontSizeLG","motionEaseInOutCirc","motionDurationSlow","marginXS","paddingXS","borderRadiusLG","colorText","fontFamily"],"component":{"height":150,"zIndexPopup":1010}},"Modal":{"global":["padding","fontSizeHeading5","lineHeightHeading5","paddingLG","colorBgElevated","lineWidth","lineType","colorSplit","colorTextHeading","colorTextDescription","paddingXS","fontSizeLG","colorIconHover","fontSize","lineHeight","controlHeightLG","zIndexPopupBase","screenSMMax","marginXS","colorText","fontFamily","margin","fontWeightStrong","borderRadiusLG","boxShadowSecondary","paddingMD","paddingContentHorizontalLG","borderRadiusSM","motionDurationMid","wireframe","lineWidthBold","colorPrimaryBorder","marginSM","colorError","colorWarning","colorInfo","colorSuccess","motionDurationSlow","colorBgMask","marginLG","motionEaseOutCirc","motionEaseInOutCirc"],"component":{}},"Notification":{"global":["zIndexPopupBase","paddingMD","paddingLG","colorBgElevated","paddingContentHorizontalLG","margin","marginLG","fontSizeLG","lineHeightLG","controlHeightLG","boxShadowSecondary","borderRadiusLG","colorSuccess","colorInfo","colorWarning","colorError","colorTextHeading","motionDurationMid","motionEaseInOut","fontSize","lineHeight","colorText","fontFamily","marginXS","marginSM","colorIcon","borderRadiusSM","colorIconHover","wireframe"],"component":{"zIndexPopup":1050,"width":384}},"PageHeader":{"global":["paddingLG","paddingMD","paddingSM","colorTextBase","fontSizeHeading4","fontSize","fontSizeLG","colorText","lineHeight","fontFamily","colorBgContainer","marginMD","colorLink","motionDurationSlow","colorLinkHover","colorLinkActive","marginSM","marginXS","colorTextHeading","controlHeight","colorTextDescription","paddingXS"],"component":{}},"Pagination":{"global":["controlHeight","fontFamily","colorBgContainer","fontWeightStrong","controlHeightSM","controlItemBgActiveDisabled","colorTextDisabled","marginXXS","controlHeightLG","marginSM","paddingXXS","fontSize","lineHeight","lineWidth","fontSizeLG","lineHeightLG","paddingSM","paddingXS","controlPaddingHorizontal","colorPrimaryHover","colorText","marginXS","lineType","borderRadius","motionDurationMid","colorBgTextHover","colorBgTextActive","lineWidthBold","colorPrimaryBorder","colorPrimary","fontSizeSM","margin","colorBorder","colorTextPlaceholder","controlOutlineWidth","controlOutline","colorBgContainerDisabled","motionDurationSlow","borderRadiusLG","controlPaddingHorizontalSM","borderRadiusSM","screenLG","screenSM","wireframe"],"component":{}},"Popconfirm":{"global":["zIndexPopupBase","colorText","colorWarning","marginXS","fontSize","fontWeightStrong","lineHeight"],"component":{"zIndexPopup":1060}},"Popover":{"global":["zIndexPopupBase","colorBgElevated","colorText","wireframe","fontWeightStrong","boxShadowSecondary","colorTextHeading","borderRadiusLG","marginXS","fontSize","lineHeight","fontFamily","sizePopupArrow","marginXXS","borderRadiusXS","borderRadiusOuter","boxShadowPopoverArrow","blue-6","purple-6","cyan-6","green-6","magenta-6","pink-6","red-6","orange-6","yellow-6","volcano-6","geekblue-6","lime-6","gold-6","lineWidth","lineType","colorSplit","paddingSM","controlHeight","padding","motionDurationMid","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"zIndexPopup":1030,"width":177}},"Progress":{"global":["marginXXS","colorText","colorInfo","colorFillSecondary","fontSize","lineHeight","fontFamily","marginXS","paddingXS","motionDurationSlow","motionEaseInOutCirc","colorSuccess","colorBgContainer","motionEaseOutQuint","colorError","fontSizeSM"],"component":{}},"QRCode":{"global":["colorText","fontSize","lineHeight","fontFamily","paddingSM","colorWhite","borderRadiusLG","lineWidth","lineType","colorSplit","marginXS","controlHeight"],"component":{}},"Radio":{"global":["padding","lineWidth","controlItemBgActiveDisabled","colorTextDisabled","colorBgContainer","fontSizeLG","controlOutline","colorPrimaryHover","colorPrimaryActive","colorText","colorPrimary","marginXS","controlOutlineWidth","colorTextLightSolid","wireframe","fontSize","lineHeight","fontFamily","motionDurationSlow","motionDurationMid","motionEaseInOut","motionEaseInOutCirc","colorBorder","colorBgContainerDisabled","paddingXS","lineType","colorWhite","lineWidthBold","colorPrimaryBorder","controlHeight","controlHeightLG","controlHeightSM","borderRadius","borderRadiusSM","borderRadiusLG"],"component":{}},"Rate":{"global":["colorFillContent","yellow-6","controlHeightLG","colorText","fontSize","lineHeight","fontFamily","marginXS","motionDurationMid","lineWidth"],"component":{}},"Result":{"global":["paddingLG","fontSizeHeading3","fontSize","colorInfo","colorError","colorSuccess","colorWarning","lineHeightHeading3","padding","paddingXL","paddingXS","marginXS","lineHeight","colorTextHeading","colorTextDescription","colorFillAlter"],"component":{"imageWidth":250,"imageHeight":295}},"Segmented":{"global":["lineWidthBold","lineWidth","colorTextLabel","colorText","colorFillSecondary","colorBgLayout","colorBgElevated","controlPaddingHorizontal","controlPaddingHorizontalSM","fontSize","lineHeight","fontFamily","borderRadius","motionDurationMid","motionEaseInOut","borderRadiusSM","boxShadow","controlHeight","marginSM","paddingXXS","borderRadiusLG","controlHeightLG","fontSizeLG","controlHeightSM","borderRadiusXS","colorTextDisabled","motionDurationSlow"],"component":{}},"Select":{"global":["zIndexPopupBase","paddingSM","colorText","fontSize","lineHeight","fontFamily","colorBgContainer","lineWidth","lineType","colorBorder","motionDurationMid","motionEaseInOut","colorTextDisabled","colorBgContainerDisabled","colorTextPlaceholder","fontSizeIcon","colorTextQuaternary","motionDurationSlow","colorTextTertiary","paddingXXS","controlPaddingHorizontalSM","borderRadius","controlHeight","controlHeightSM","borderRadiusSM","controlHeightLG","fontSizeLG","borderRadiusLG","controlHeightXS","borderRadiusXS","controlPaddingHorizontal","colorFillSecondary","colorSplit","paddingXS","colorIcon","colorIconHover","colorBgElevated","boxShadowSecondary","colorTextDescription","fontSizeSM","controlItemBgHover","fontWeightStrong","controlItemBgActive","colorPrimary","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc","colorPrimaryHover","controlOutline","controlOutlineWidth","colorErrorHover","colorErrorOutline","colorWarningHover","colorWarningOutline"],"component":{"zIndexPopup":1050}},"Skeleton":{"global":["colorFillContent","colorFill","controlHeight","borderRadiusSM","marginLG","marginXXS","controlHeightLG","controlHeightSM","padding","marginSM","controlHeightXS"],"component":{"color":"rgba(0, 0, 0, 0.06)","colorGradientEnd":"rgba(0, 0, 0, 0.15)"}},"Slider":{"global":["controlHeightLG","controlHeightSM","lineWidth","controlHeight","colorFillContentHover","colorText","fontSize","lineHeight","fontFamily","colorFillTertiary","borderRadiusXS","motionDurationMid","colorPrimaryBorder","colorFillSecondary","colorPrimaryBorderHover","colorPrimary","colorBgElevated","colorTextDescription","colorBorderSecondary","motionDurationSlow","colorTextDisabled","colorBgContainer"],"component":{"controlSize":10,"railSize":4,"handleSize":10,"handleSizeHover":12,"dotSize":8,"handleLineWidth":2,"handleLineWidthHover":4}},"Space":{"global":[],"component":{}},"Spin":{"global":["colorTextDescription","controlHeightLG","controlHeight","colorText","fontSize","lineHeight","fontFamily","colorPrimary","motionDurationSlow","motionEaseInOutCirc","colorBgContainer","marginXXS"],"component":{"contentHeight":400}},"Statistic":{"global":["fontSizeHeading3","fontSize","fontFamily","marginXXS","padding","colorTextDescription","colorTextHeading","colorText","lineHeight"],"component":{}},"Steps":{"global":["wireframe","colorTextDisabled","fontSizeHeading3","fontSize","controlHeight","controlHeightLG","colorTextLightSolid","colorText","colorPrimary","colorTextLabel","colorTextDescription","colorTextQuaternary","colorFillContent","controlItemBgActive","colorError","colorBgContainer","colorBorderSecondary","colorSplit","lineHeight","fontFamily","motionDurationSlow","marginXS","lineWidth","lineType","paddingXXS","padding","fontSizeLG","fontWeightStrong","fontSizeSM","paddingSM","margin","marginXXS","paddingLG","marginSM","paddingXS","controlHeightSM","fontSizeIcon","lineWidthBold","marginLG","borderRadiusSM","motionDurationMid","controlItemBgHover","lineHeightSM","colorBorderBg"],"component":{"descriptionWidth":140}},"Switch":{"global":["fontSize","lineHeight","controlHeight","motionDurationMid","colorPrimary","opacityLoading","colorBgContainer","fontSizeIcon","colorText","fontFamily","colorTextQuaternary","colorTextTertiary","lineWidthBold","colorPrimaryBorder","colorPrimaryHover","colorTextLightSolid","fontSizeSM","colorWhite","marginXXS"],"component":{}},"Table":{"global":["controlItemBgActive","controlItemBgActiveHover","colorTextPlaceholder","colorTextHeading","colorSplit","colorBorderSecondary","fontSize","padding","paddingXS","paddingSM","controlHeight","colorFillAlter","colorIcon","colorIconHover","opacityLoading","colorBgContainer","borderRadiusLG","colorFillContent","colorFillSecondary","controlInteractiveSize","fontWeightStrong","lineWidth","lineType","motionDurationMid","paddingContentVerticalLG","wireframe","colorText","lineHeight","fontFamily","margin","marginXXS","fontSizeIcon","motionDurationSlow","colorPrimary","paddingXXS","fontSizeSM","borderRadius","colorTextDescription","colorTextDisabled","controlItemBgHover","boxShadowSecondary","colorLink","colorLinkHover","colorLinkActive"],"component":{}},"Tabs":{"global":["zIndexPopupBase","controlHeightLG","colorPrimaryHover","colorPrimaryActive","fontSize","lineHeight","lineWidth","padding","marginXXS","colorFillAlter","paddingXXS","paddingXS","fontSizeLG","borderRadius","marginSM","marginXS","margin","colorSplit","lineType","lineWidthBold","motionDurationSlow","controlHeight","boxShadowTabsOverflowLeft","boxShadowTabsOverflowRight","paddingLG","boxShadowTabsOverflowTop","boxShadowTabsOverflowBottom","colorBorder","colorText","fontFamily","colorBgContainer","borderRadiusLG","boxShadowSecondary","paddingSM","colorTextDescription","fontSizeSM","controlItemBgHover","colorTextDisabled","motionEaseInOut","colorPrimary","colorPrimaryBorder","colorTextHeading","motionDurationMid","motionEaseOutQuint","motionEaseInQuint"],"component":{"zIndexPopup":1050}},"Tag":{"global":["fontSize","lineHeight","lineWidth","fontSizeIcon","fontSizeSM","colorFillAlter","colorText","paddingXXS","fontFamily","marginXS","lineType","colorBorder","borderRadiusSM","motionDurationMid","colorTextDescription","colorTextHeading","colorTextLightSolid","colorPrimary","colorFillSecondary","colorPrimaryHover","colorPrimaryActive","blue-1","blue-3","blue-6","blue-7","purple-1","purple-3","purple-6","purple-7","cyan-1","cyan-3","cyan-6","cyan-7","green-1","green-3","green-6","green-7","magenta-1","magenta-3","magenta-6","magenta-7","pink-1","pink-3","pink-6","pink-7","red-1","red-3","red-6","red-7","orange-1","orange-3","orange-6","orange-7","yellow-1","yellow-3","yellow-6","yellow-7","volcano-1","volcano-3","volcano-6","volcano-7","geekblue-1","geekblue-3","geekblue-6","geekblue-7","lime-1","lime-3","lime-6","lime-7","gold-1","gold-3","gold-6","gold-7","colorSuccess","colorSuccessBg","colorSuccessBorder","colorInfo","colorInfoBg","colorInfoBorder","colorError","colorErrorBg","colorErrorBorder","colorWarning","colorWarningBg","colorWarningBorder"],"component":{}},"Timeline":{"global":["padding","paddingXXS","lineWidthBold","wireframe","colorText","fontSize","lineHeight","fontFamily","lineType","colorSplit","fontSizeSM","colorBgContainer","colorPrimary","colorError","colorSuccess","colorTextDisabled","lineWidth","margin","controlHeightLG","marginXXS","marginSM","marginXS"],"component":{}},"Tooltip":{"global":["zIndexPopupBase","colorBgSpotlight","borderRadius","colorTextLightSolid","borderRadiusOuter","controlHeight","boxShadowSecondary","paddingSM","paddingXS","colorText","fontSize","lineHeight","fontFamily","blue-1","blue-3","blue-6","blue-7","purple-1","purple-3","purple-6","purple-7","cyan-1","cyan-3","cyan-6","cyan-7","green-1","green-3","green-6","green-7","magenta-1","magenta-3","magenta-6","magenta-7","pink-1","pink-3","pink-6","pink-7","red-1","red-3","red-6","red-7","orange-1","orange-3","orange-6","orange-7","yellow-1","yellow-3","yellow-6","yellow-7","volcano-1","volcano-3","volcano-6","volcano-7","geekblue-1","geekblue-3","geekblue-6","geekblue-7","lime-1","lime-3","lime-6","lime-7","gold-1","gold-3","gold-6","gold-7","sizePopupArrow","marginXXS","borderRadiusXS","boxShadowPopoverArrow","motionDurationFast","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"zIndexPopup":1070,"colorBgDefault":"rgba(0, 0, 0, 0.85)"}},"Tour":{"global":["borderRadiusLG","fontSize","lineHeight","zIndexPopupBase","padding","paddingXS","borderRadius","borderRadiusXS","colorPrimary","colorText","colorFill","boxShadowTertiary","colorBgContainer","fontWeightStrong","marginXS","colorTextLightSolid","colorWhite","colorBgTextHover","motionDurationSlow","fontFamily","colorIcon","borderRadiusSM","motionDurationMid","colorIconHover","wireframe","sizePopupArrow","marginXXS","borderRadiusOuter","boxShadowPopoverArrow"],"component":{}},"Transfer":{"global":["fontSize","lineHeight","lineWidth","controlHeightLG","controlHeight","marginXS","marginXXS","fontSizeIcon","colorText","fontFamily","colorBgContainerDisabled","colorBorder","colorSplit","controlItemBgActive","controlItemBgActiveHover","colorTextDisabled","paddingSM","lineType","motionDurationSlow","borderRadiusLG","colorBgContainer","colorLinkHover","controlItemBgHover","paddingXS","margin","colorError","colorWarning"],"component":{"listWidth":180,"listHeight":200,"listWidthLG":250}},"TreeSelect":{"global":["colorBgElevated","paddingXS","controlHeightSM","fontSizeLG","colorText","fontSize","lineHeight","fontFamily","borderRadius","motionDurationSlow","lineWidthBold","colorPrimaryBorder","colorPrimary","colorTextDisabled","colorBorder","motionDurationMid","controlItemBgHover","controlItemBgActive","colorTextLightSolid","controlInteractiveSize","marginXS","colorBgContainer","lineWidth","lineType","borderRadiusSM","colorWhite","motionDurationFast","motionEaseInBack","colorPrimaryHover","motionEaseOutBack","colorBgContainerDisabled"],"component":{}},"Tree":{"global":["controlInteractiveSize","colorText","fontSize","lineHeight","fontFamily","marginXS","lineWidthBold","colorPrimaryBorder","colorBgContainer","lineWidth","lineType","colorBorder","borderRadiusSM","motionDurationSlow","colorWhite","motionDurationFast","motionEaseInBack","paddingXS","fontSizeLG","colorPrimary","colorPrimaryHover","motionDurationMid","motionEaseOutBack","colorBgContainerDisabled","colorTextDisabled","controlHeightSM","borderRadius","controlItemBgHover","controlItemBgActive","colorTextLightSolid","motionEaseInOut"],"component":{}},"Typography":{"global":["colorText","lineHeight","colorTextDescription","colorSuccess","colorWarning","colorError","colorErrorActive","colorErrorHover","colorTextDisabled","fontSizeHeading1","lineHeightHeading1","colorTextHeading","fontWeightStrong","fontSizeHeading2","lineHeightHeading2","fontSizeHeading3","lineHeightHeading3","fontSizeHeading4","lineHeightHeading4","fontSizeHeading5","lineHeightHeading5","colorLink","motionDurationSlow","colorLinkHover","colorLinkActive","linkDecoration","linkHoverDecoration","marginXXS","paddingXXS","controlHeight","fontSize","lineWidth","controlHeightLG","fontSizeLG","lineHeightLG","controlHeightSM","paddingSM","paddingXS","controlPaddingHorizontal","colorPrimaryHover","marginXS"],"component":{"sizeMarginHeadingVerticalStart":"1.2em","sizeMarginHeadingVerticalEnd":"0.5em"}},"Upload":{"global":["fontSizeHeading3","fontSize","lineHeight","lineWidth","controlHeightLG","colorTextDisabled","colorText","fontFamily","colorFillAlter","colorBorder","borderRadiusLG","motionDurationSlow","padding","colorPrimaryHover","margin","colorPrimary","marginXXS","colorTextHeading","fontSizeLG","colorTextDescription","paddingXS","lineType","paddingSM","fontSizeHeading2","colorError","colorErrorBg","colorTextLightSolid","marginXS","colorBgMask","marginXL","controlItemBgHover","motionEaseInOutCirc","motionDurationMid","motionEaseInOut"],"component":{}}} | ||
{"Affix":{"global":["zIndexBase"],"component":{}},"Alert":{"global":["fontSizeHeading3","motionDurationSlow","marginXS","marginSM","fontSize","fontSizeLG","lineHeight","borderRadiusLG","motionEaseInOutCirc","colorText","paddingContentVerticalSM","paddingMD","paddingContentHorizontalLG","fontFamily","colorSuccess","colorSuccessBorder","colorSuccessBg","colorWarning","colorWarningBorder","colorWarningBg","colorError","colorErrorBorder","colorErrorBg","colorInfo","colorInfoBorder","colorInfoBg","lineWidth","lineType","motionDurationMid","fontSizeIcon","colorIcon","colorIconHover"],"component":{}},"Anchor":{"global":["fontSize","fontSizeLG","padding","paddingXXS","motionDurationSlow","lineWidthBold","colorPrimary","lineType","colorSplit","colorText","lineHeight","fontFamily"],"component":{}},"App":{"global":["colorText","fontSize","lineHeight","fontFamily"],"component":{}},"Avatar":{"global":["controlHeight","controlHeightLG","controlHeightSM","fontSize","fontSizeLG","fontSizeXL","fontSizeHeading3","marginXS","marginXXS","colorBorderBg","colorTextLightSolid","colorTextPlaceholder","borderRadius","borderRadiusLG","borderRadiusSM","lineWidth","lineType","colorText","lineHeight","fontFamily"],"component":{"containerSize":32,"containerSizeLG":40,"containerSizeSM":24,"textFontSize":18,"textFontSizeLG":24,"textFontSizeSM":14,"groupSpace":4,"groupOverlapping":-8,"groupBorderColor":"#ffffff"}},"Badge":{"global":["fontSize","lineHeight","fontSizeSM","lineWidth","marginXS","colorBorderBg","colorBgContainer","colorError","colorErrorHover","motionDurationSlow","blue-1","blue-3","blue-6","blue-7","purple-1","purple-3","purple-6","purple-7","cyan-1","cyan-3","cyan-6","cyan-7","green-1","green-3","green-6","green-7","magenta-1","magenta-3","magenta-6","magenta-7","pink-1","pink-3","pink-6","pink-7","red-1","red-3","red-6","red-7","orange-1","orange-3","orange-6","orange-7","yellow-1","yellow-3","yellow-6","yellow-7","volcano-1","volcano-3","volcano-6","volcano-7","geekblue-1","geekblue-3","geekblue-6","geekblue-7","lime-1","lime-3","lime-6","lime-7","gold-1","gold-3","gold-6","gold-7","colorText","fontFamily","motionDurationMid","paddingXS","colorSuccess","colorPrimary","colorTextPlaceholder","colorWarning","motionEaseOutBack","borderRadiusSM","colorTextLightSolid"],"component":{}},"Breadcrumb":{"global":["colorTextDescription","fontSize","colorText","marginXS","lineHeight","fontFamily","motionDurationMid","paddingXXS","borderRadiusSM","marginXXS","colorBgTextHover","lineWidthBold","colorPrimaryBorder","fontSizeIcon"],"component":{}},"Button":{"global":["controlTmpOutline","paddingContentHorizontal","lineWidth","lineType","motionDurationMid","motionEaseInOut","lineHeight","colorText","marginXS","lineWidthBold","colorPrimaryBorder","colorPrimaryHover","controlHeightSM","paddingXS","borderRadiusSM","fontSize","opacityLoading","motionDurationSlow","controlHeight","borderRadius","controlHeightLG","fontSizeLG","borderRadiusLG","colorBorder","colorTextDisabled","colorBgContainerDisabled","colorBgContainer","controlOutlineWidth","colorPrimaryActive","colorError","colorErrorHover","colorErrorBorderHover","colorErrorActive","colorTextLightSolid","colorPrimary","controlOutline","colorErrorOutline","colorLink","colorLinkHover","colorLinkActive","colorBgTextHover","colorBgTextActive","colorErrorBg"],"component":{}},"Calendar":{"global":["paddingXXS","controlHeight","fontSize","lineHeight","lineWidth","controlHeightLG","fontSizeLG","lineHeightLG","controlHeightSM","paddingSM","paddingXS","controlPaddingHorizontal","colorPrimaryHover","colorPrimary","colorBgContainer","controlItemBgActive","fontSizeSM","lineHeightSM","marginXS","lineType","borderRadiusLG","colorTextHeading","colorSplit","colorIcon","motionDurationMid","colorIconHover","fontWeightStrong","colorTextDisabled","colorText","motionDurationSlow","colorLink","colorLinkActive","colorLinkHover","borderRadiusSM","colorTextLightSolid","borderRadius","controlItemBgHover","marginXXS","colorBgContainerDisabled","fontFamily","lineWidthBold","screenXS"],"component":{"yearControlWidth":80,"monthControlWidth":70,"miniContentHeight":256}},"Card":{"global":["boxShadowCard","fontSizeLG","lineHeightLG","padding","fontSize","lineHeight","paddingXS","paddingLG","lineWidth","paddingSM","colorBorderSecondary","boxShadow","colorText","fontFamily","colorBgContainer","borderRadiusLG","colorTextHeading","fontWeightStrong","lineType","motionDurationMid","colorTextDescription","colorPrimary","marginXXS","marginXS","colorFillAlter"],"component":{}},"Carousel":{"global":["controlHeightLG","controlHeightSM","marginXXS","colorText","fontSize","lineHeight","fontFamily","motionDurationSlow","colorBgContainer"],"component":{"dotWidth":16,"dotHeight":3,"dotWidthActive":24}},"Cascader":{"global":["controlHeight","fontSize","lineHeight","controlInteractiveSize","colorText","fontFamily","marginXS","lineWidthBold","colorPrimaryBorder","colorBgContainer","lineWidth","lineType","colorBorder","borderRadiusSM","motionDurationSlow","colorWhite","motionDurationFast","motionEaseInBack","paddingXS","fontSizeLG","colorPrimary","colorPrimaryHover","motionDurationMid","motionEaseOutBack","colorBgContainerDisabled","colorTextDisabled","paddingXXS","colorSplit","paddingSM","controlItemBgHover","fontWeightStrong","controlItemBgActive","colorTextDescription","fontSizeIcon","colorHighlight"],"component":{"controlWidth":184,"controlItemWidth":111,"dropdownHeight":180}},"Checkbox":{"global":["controlInteractiveSize","colorText","fontSize","lineHeight","fontFamily","marginXS","lineWidthBold","colorPrimaryBorder","colorBgContainer","lineWidth","lineType","colorBorder","borderRadiusSM","motionDurationSlow","colorWhite","motionDurationFast","motionEaseInBack","paddingXS","fontSizeLG","colorPrimary","colorPrimaryHover","motionDurationMid","motionEaseOutBack","colorBgContainerDisabled","colorTextDisabled"],"component":{}},"Collapse":{"global":["colorBgContainer","colorFillAlter","paddingSM","padding","borderRadiusLG","lineWidth","lineType","colorBorder","colorText","colorTextHeading","colorTextDisabled","fontSize","lineHeight","marginSM","motionDurationSlow","fontSizeIcon","fontFamily","paddingXXS","motionDurationMid","motionEaseInOut"],"component":{}},"Comment":{"global":["paddingMD","fontSize","fontSizeSM","colorTextTertiary","colorTextPlaceholder","colorTextSecondary","marginSM","marginXXS","paddingXS","motionDurationSlow"],"component":{}},"DatePicker":{"global":["zIndexPopupBase","paddingXXS","controlHeight","fontSize","lineHeight","lineWidth","controlHeightLG","fontSizeLG","lineHeightLG","controlHeightSM","paddingSM","paddingXS","controlPaddingHorizontal","colorPrimaryHover","colorPrimary","boxShadowPopoverArrow","colorBgContainer","lineType","colorBorder","borderRadius","motionDurationMid","colorBgContainerDisabled","colorTextDisabled","colorTextPlaceholder","marginXS","colorTextDescription","lineWidthBold","motionDurationSlow","controlItemBgActive","colorPrimaryBorder","sizePopupArrow","borderRadiusXS","borderRadiusOuter","colorBgElevated","borderRadiusLG","boxShadowSecondary","borderRadiusSM","colorSplit","controlItemBgHover","colorText","fontFamily","controlOutlineWidth","controlOutline","controlPaddingHorizontalSM","colorTextHeading","colorIcon","colorIconHover","fontWeightStrong","colorLink","colorLinkActive","colorLinkHover","colorTextLightSolid","marginXXS","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc","colorError","colorErrorOutline","colorWarning","colorWarningOutline"],"component":{"presetsWidth":120,"presetsMaxWidth":200,"zIndexPopup":1050}},"Descriptions":{"global":["colorFillAlter","fontSizeSM","lineHeightSM","colorText","paddingXS","padding","paddingLG","paddingSM","marginXS","marginXXS","fontSize","lineHeight","fontFamily","lineWidth","lineType","colorSplit","fontWeightStrong","fontSizeLG","lineHeightLG","borderRadiusLG"],"component":{}},"Divider":{"global":["marginXS","margin","marginLG","colorSplit","lineWidth","colorText","fontSize","lineHeight","fontFamily","colorTextHeading","fontSizeLG"],"component":{"sizePaddingEdgeHorizontal":0}},"Drawer":{"global":["zIndexPopupBase","paddingXS","padding","colorBgMask","colorBgElevated","motionDurationSlow","motionDurationMid","paddingLG","fontSizeLG","lineHeightLG","lineWidth","lineType","colorSplit","marginSM","colorIcon","colorIconHover","colorText","fontWeightStrong","boxShadowDrawerLeft","boxShadowDrawerRight","boxShadowDrawerUp","boxShadowDrawerDown"],"component":{"zIndexPopup":1000}},"Dropdown":{"global":["zIndexPopupBase","marginXXS","sizePopupArrow","controlHeight","fontSize","lineHeight","paddingXXS","borderRadiusOuter","borderRadiusLG","motionDurationMid","colorTextDisabled","fontSizeIcon","controlPaddingHorizontal","colorBgElevated","boxShadowPopoverArrow","colorText","fontFamily","borderRadiusXS","boxShadowSecondary","lineWidthBold","colorPrimaryBorder","colorTextDescription","borderRadiusSM","marginXS","fontSizeSM","controlItemBgHover","colorPrimary","controlItemBgActive","controlItemBgActiveHover","colorSplit","paddingXS","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc","opacityLoading","colorError","colorTextLightSolid"],"component":{"zIndexPopup":1050}},"Empty":{"global":["controlHeightLG","margin","marginXS","marginXL","fontSize","lineHeight","opacityImage","colorTextDisabled"],"component":{}},"FloatButton":{"global":["colorTextLightSolid","colorBgElevated","controlHeightLG","marginXXL","marginLG","fontSize","fontSizeIcon","controlItemBgHover","paddingXXS","borderRadiusLG","margin","borderRadiusSM","colorText","lineHeight","fontFamily","lineWidth","lineType","colorSplit","boxShadowSecondary","motionDurationMid","colorFillContent","fontSizeLG","fontSizeSM","colorPrimary","colorPrimaryHover","motionDurationSlow","motionEaseInOutCirc"],"component":{}},"Form":{"global":["colorText","fontSize","lineHeight","fontFamily","marginLG","colorTextDescription","fontSizeLG","lineWidth","lineType","colorBorder","controlOutlineWidth","controlOutline","paddingSM","controlHeightSM","controlHeightLG","colorError","colorWarning","controlHeight","colorTextHeading","marginXXS","marginXS","motionDurationMid","motionEaseOut","motionEaseOutBack","colorSuccess","colorPrimary","motionDurationSlow","motionEaseInOut","margin","paddingXS","screenXSMax","screenSMMax","screenMDMax","screenLGMax"],"component":{}},"Grid":{"global":[],"component":{}},"Image":{"global":["zIndexPopupBase","colorTextLightSolid","fontSizeIcon","controlHeightLG","colorBgContainerDisabled","motionDurationSlow","paddingXXS","marginXXS","motionEaseOut","paddingSM","colorText","fontSize","lineHeight","fontFamily","marginSM","colorBgMask","motionDurationMid","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"zIndexPopup":1080,"previewOperationColor":"rgb(255, 255, 255)","previewOperationColorDisabled":"rgba(255, 255, 255, 0.25)","previewOperationSize":18}},"InputNumber":{"global":["controlHeightSM","lineWidth","fontSize","paddingXXS","controlHeight","lineHeight","controlHeightLG","fontSizeLG","lineHeightLG","paddingSM","paddingXS","controlPaddingHorizontal","colorPrimaryHover","lineType","colorBorder","borderRadius","colorError","colorTextDescription","motionDurationMid","colorPrimary","colorBgContainer","colorTextDisabled","borderRadiusSM","borderRadiusLG","colorText","fontFamily","colorTextPlaceholder","controlOutlineWidth","controlOutline","colorBgContainerDisabled","motionDurationSlow","controlPaddingHorizontalSM","colorWarning","colorErrorOutline","colorWarningOutline","colorErrorBorderHover","colorWarningBorderHover","colorFillAlter","fontSizeSM"],"component":{"controlWidth":90,"handleWidth":22,"handleFontSize":7,"handleVisible":"auto"}},"Input":{"global":["paddingXXS","controlHeight","fontSize","lineHeight","lineWidth","controlHeightLG","fontSizeLG","lineHeightLG","controlHeightSM","paddingSM","paddingXS","controlPaddingHorizontal","colorPrimaryHover","colorText","fontFamily","colorBgContainer","lineType","colorBorder","borderRadius","motionDurationMid","colorTextPlaceholder","controlOutlineWidth","controlOutline","colorTextDisabled","colorBgContainerDisabled","motionDurationSlow","borderRadiusLG","controlPaddingHorizontalSM","borderRadiusSM","colorError","colorWarning","colorErrorOutline","colorWarningOutline","colorErrorBorderHover","colorWarningBorderHover","paddingLG","colorTextDescription","colorIcon","colorIconHover","colorTextQuaternary","fontSizeIcon","colorTextTertiary","colorSuccess","colorFillAlter","colorPrimary","fontSizeSM","colorPrimaryActive"],"component":{}},"Layout":{"global":["colorBgLayout","colorText","controlHeightSM","controlHeight","controlHeightLG","marginXXS","colorTextLightSolid","motionDurationMid","motionDurationSlow","fontSize","borderRadius","fontSizeXL","colorBgContainer"],"component":{"colorBgHeader":"#001529","colorBgBody":"#f5f5f5","colorBgTrigger":"#002140"}},"List":{"global":["controlHeightLG","paddingContentVertical","paddingContentHorizontalLG","paddingContentVerticalSM","paddingContentHorizontal","paddingContentVerticalLG","controlHeight","paddingSM","marginLG","padding","colorPrimary","paddingXS","margin","colorText","colorTextDescription","motionDurationSlow","lineWidth","fontSize","lineHeight","fontFamily","marginXXS","marginXXL","colorSplit","fontSizeSM","colorTextDisabled","fontSizeLG","lineHeightLG","lineType","paddingLG","borderRadiusLG","colorBorder","screenSM","screenMD","marginSM"],"component":{"contentWidth":220}},"Mentions":{"global":["zIndexPopupBase","paddingXXS","controlHeight","fontSize","lineHeight","lineWidth","controlHeightLG","fontSizeLG","lineHeightLG","controlHeightSM","paddingSM","paddingXS","controlPaddingHorizontal","colorPrimaryHover","colorTextDisabled","controlItemBgHover","colorText","motionDurationSlow","colorBgElevated","borderRadiusLG","boxShadowSecondary","fontFamily","colorBgContainer","lineType","colorBorder","borderRadius","motionDurationMid","colorTextPlaceholder","controlOutlineWidth","controlOutline","colorBgContainerDisabled","controlPaddingHorizontalSM","borderRadiusSM","colorError","colorWarning","colorErrorOutline","colorWarningOutline","colorErrorBorderHover","colorWarningBorderHover","fontWeightStrong"],"component":{"dropdownHeight":250,"controlItemWidth":100,"zIndexPopup":1050}},"Menu":{"global":["colorPrimary","colorError","colorTextDisabled","colorErrorBg","colorText","colorTextDescription","colorBgContainer","colorFillAlter","colorFillContent","lineWidth","lineWidthBold","controlItemBgActive","colorBgTextHover","zIndexPopupBase","borderRadiusLG","borderRadiusSM","marginXXS","colorBgElevated","colorErrorHover","colorTextLightSolid","controlHeightLG","fontSize","margin","motionDurationSlow","motionDurationMid","motionEaseInOut","lineHeight","paddingXS","padding","colorSplit","lineType","fontFamily","motionEaseOut","controlHeightSM","borderRadius","paddingXL","fontSizeSM","fontSizeLG","boxShadowSecondary","marginXS","colorPrimaryBorder","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"dropdownWidth":160,"zIndexPopup":1050,"radiusItem":8,"radiusSubMenuItem":4,"colorItemText":"rgba(0, 0, 0, 0.88)","colorItemTextHover":"rgba(0, 0, 0, 0.88)","colorItemTextHoverHorizontal":"#1677ff","colorGroupTitle":"rgba(0, 0, 0, 0.45)","colorItemTextSelected":"#1677ff","colorItemTextSelectedHorizontal":"#1677ff","colorItemBg":"#ffffff","colorItemBgHover":"rgba(0, 0, 0, 0.06)","colorItemBgActive":"rgba(0, 0, 0, 0.06)","colorSubItemBg":"rgba(0, 0, 0, 0.02)","colorItemBgSelected":"#e6f4ff","colorItemBgSelectedHorizontal":"transparent","colorActiveBarWidth":0,"colorActiveBarHeight":2,"colorActiveBarBorderSize":1,"colorItemTextDisabled":"rgba(0, 0, 0, 0.25)","colorDangerItemText":"#ff4d4f","colorDangerItemTextHover":"#ff4d4f","colorDangerItemTextSelected":"#ff4d4f","colorDangerItemBgActive":"#fff2f0","colorDangerItemBgSelected":"#fff2f0","itemMarginInline":4}},"Message":{"global":["zIndexPopupBase","controlHeightLG","fontSize","lineHeight","paddingSM","boxShadowSecondary","colorBgElevated","colorSuccess","colorError","colorWarning","colorInfo","fontSizeLG","motionEaseInOutCirc","motionDurationSlow","marginXS","paddingXS","borderRadiusLG","colorText","fontFamily"],"component":{"height":150,"zIndexPopup":1010}},"Modal":{"global":["padding","fontSizeHeading5","lineHeightHeading5","paddingLG","colorBgElevated","lineWidth","lineType","colorSplit","colorTextHeading","colorTextDescription","paddingXS","fontSizeLG","colorIconHover","fontSize","lineHeight","controlHeightLG","zIndexPopupBase","screenSMMax","marginXS","colorText","fontFamily","margin","fontWeightStrong","borderRadiusLG","boxShadowSecondary","paddingMD","paddingContentHorizontalLG","borderRadiusSM","motionDurationMid","wireframe","lineWidthBold","colorPrimaryBorder","marginSM","colorError","colorWarning","colorInfo","colorSuccess","motionDurationSlow","colorBgMask","marginLG","motionEaseOutCirc","motionEaseInOutCirc"],"component":{}},"Notification":{"global":["zIndexPopupBase","paddingMD","paddingLG","colorBgElevated","paddingContentHorizontalLG","margin","marginLG","fontSizeLG","lineHeightLG","controlHeightLG","boxShadowSecondary","borderRadiusLG","colorSuccess","colorInfo","colorWarning","colorError","colorTextHeading","motionDurationMid","motionEaseInOut","fontSize","lineHeight","colorText","fontFamily","marginXS","marginSM","colorIcon","borderRadiusSM","colorIconHover","wireframe"],"component":{"zIndexPopup":1050,"width":384}},"PageHeader":{"global":["paddingLG","paddingMD","paddingSM","colorTextBase","fontSizeHeading4","fontSize","fontSizeLG","colorText","lineHeight","fontFamily","colorBgContainer","marginMD","colorLink","motionDurationSlow","colorLinkHover","colorLinkActive","marginSM","marginXS","colorTextHeading","controlHeight","colorTextDescription","paddingXS"],"component":{}},"Pagination":{"global":["controlHeight","fontFamily","colorBgContainer","fontWeightStrong","controlHeightSM","controlItemBgActiveDisabled","colorTextDisabled","marginXXS","controlHeightLG","marginSM","paddingXXS","fontSize","lineHeight","lineWidth","fontSizeLG","lineHeightLG","paddingSM","paddingXS","controlPaddingHorizontal","colorPrimaryHover","colorText","marginXS","lineType","borderRadius","motionDurationMid","colorBgTextHover","colorBgTextActive","lineWidthBold","colorPrimaryBorder","colorPrimary","fontSizeSM","margin","colorBorder","colorTextPlaceholder","controlOutlineWidth","controlOutline","colorBgContainerDisabled","motionDurationSlow","borderRadiusLG","controlPaddingHorizontalSM","borderRadiusSM","screenLG","screenSM","wireframe"],"component":{}},"Popconfirm":{"global":["zIndexPopupBase","colorText","colorWarning","marginXS","fontSize","fontWeightStrong","lineHeight"],"component":{"zIndexPopup":1060}},"Popover":{"global":["zIndexPopupBase","colorBgElevated","colorText","wireframe","fontWeightStrong","boxShadowSecondary","colorTextHeading","borderRadiusLG","marginXS","fontSize","lineHeight","fontFamily","sizePopupArrow","marginXXS","borderRadiusXS","borderRadiusOuter","boxShadowPopoverArrow","blue-6","purple-6","cyan-6","green-6","magenta-6","pink-6","red-6","orange-6","yellow-6","volcano-6","geekblue-6","lime-6","gold-6","lineWidth","lineType","colorSplit","paddingSM","controlHeight","padding","motionDurationMid","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"zIndexPopup":1030,"width":177}},"Progress":{"global":["marginXXS","colorText","colorInfo","colorFillSecondary","fontSize","lineHeight","fontFamily","marginXS","paddingXS","motionDurationSlow","motionEaseInOutCirc","colorSuccess","colorBgContainer","motionEaseOutQuint","colorError","fontSizeSM"],"component":{}},"QRCode":{"global":["colorText","fontSize","lineHeight","fontFamily","paddingSM","colorWhite","borderRadiusLG","lineWidth","lineType","colorSplit","marginXS","controlHeight"],"component":{}},"Radio":{"global":["padding","lineWidth","controlItemBgActiveDisabled","colorTextDisabled","colorBgContainer","fontSizeLG","controlOutline","colorPrimaryHover","colorPrimaryActive","colorText","colorPrimary","marginXS","controlOutlineWidth","colorTextLightSolid","wireframe","fontSize","lineHeight","fontFamily","motionDurationSlow","motionDurationMid","motionEaseInOut","motionEaseInOutCirc","colorBorder","colorBgContainerDisabled","paddingXS","lineType","colorWhite","lineWidthBold","colorPrimaryBorder","controlHeight","controlHeightLG","controlHeightSM","borderRadius","borderRadiusSM","borderRadiusLG"],"component":{}},"Rate":{"global":["colorFillContent","yellow-6","controlHeightLG","colorText","fontSize","lineHeight","fontFamily","marginXS","motionDurationMid","lineWidth"],"component":{}},"Result":{"global":["paddingLG","fontSizeHeading3","fontSize","colorInfo","colorError","colorSuccess","colorWarning","lineHeightHeading3","padding","paddingXL","paddingXS","marginXS","lineHeight","colorTextHeading","colorTextDescription","colorFillAlter"],"component":{"imageWidth":250,"imageHeight":295}},"Segmented":{"global":["lineWidthBold","lineWidth","colorTextLabel","colorText","colorFillSecondary","colorBgLayout","colorBgElevated","controlPaddingHorizontal","controlPaddingHorizontalSM","fontSize","lineHeight","fontFamily","borderRadius","motionDurationMid","motionEaseInOut","borderRadiusSM","boxShadow","controlHeight","marginSM","paddingXXS","borderRadiusLG","controlHeightLG","fontSizeLG","controlHeightSM","borderRadiusXS","colorTextDisabled","motionDurationSlow"],"component":{}},"Select":{"global":["zIndexPopupBase","paddingSM","colorText","fontSize","lineHeight","fontFamily","colorBgContainer","lineWidth","lineType","colorBorder","motionDurationMid","motionEaseInOut","colorTextDisabled","colorBgContainerDisabled","colorTextPlaceholder","fontSizeIcon","colorTextQuaternary","motionDurationSlow","colorTextTertiary","paddingXXS","controlPaddingHorizontalSM","borderRadius","controlHeight","controlHeightSM","borderRadiusSM","controlHeightLG","fontSizeLG","borderRadiusLG","controlHeightXS","borderRadiusXS","controlPaddingHorizontal","colorFillSecondary","colorSplit","paddingXS","colorIcon","colorIconHover","colorBgElevated","boxShadowSecondary","colorTextDescription","fontSizeSM","controlItemBgHover","fontWeightStrong","controlItemBgActive","colorPrimary","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc","colorPrimaryHover","controlOutline","controlOutlineWidth","colorErrorHover","colorErrorOutline","colorWarningHover","colorWarningOutline"],"component":{"zIndexPopup":1050}},"Skeleton":{"global":["colorFillContent","colorFill","controlHeight","borderRadiusSM","marginLG","marginXXS","controlHeightLG","controlHeightSM","padding","marginSM","controlHeightXS"],"component":{"color":"rgba(0, 0, 0, 0.06)","colorGradientEnd":"rgba(0, 0, 0, 0.15)"}},"Slider":{"global":["controlHeightLG","controlHeightSM","lineWidth","controlHeight","colorFillContentHover","colorText","fontSize","lineHeight","fontFamily","colorFillTertiary","borderRadiusXS","motionDurationMid","colorPrimaryBorder","colorFillSecondary","colorPrimaryBorderHover","colorPrimary","colorBgElevated","colorTextDescription","colorBorderSecondary","motionDurationSlow","colorTextDisabled","colorBgContainer"],"component":{"controlSize":10,"railSize":4,"handleSize":10,"handleSizeHover":12,"dotSize":8,"handleLineWidth":2,"handleLineWidthHover":4}},"Space":{"global":[],"component":{}},"Spin":{"global":["colorTextDescription","controlHeightLG","controlHeight","colorText","fontSize","lineHeight","fontFamily","colorPrimary","motionDurationSlow","motionEaseInOutCirc","colorBgContainer","marginXXS"],"component":{"contentHeight":400}},"Statistic":{"global":["fontSizeHeading3","fontSize","fontFamily","marginXXS","padding","colorTextDescription","colorTextHeading","colorText","lineHeight"],"component":{}},"Steps":{"global":["wireframe","colorTextDisabled","fontSizeHeading3","fontSize","controlHeight","controlHeightLG","colorTextLightSolid","colorText","colorPrimary","colorTextLabel","colorTextDescription","colorTextQuaternary","colorFillContent","controlItemBgActive","colorError","colorBgContainer","colorBorderSecondary","colorSplit","lineHeight","fontFamily","motionDurationSlow","marginXS","lineWidth","lineType","paddingXXS","padding","fontSizeLG","fontWeightStrong","fontSizeSM","paddingSM","margin","marginXXS","paddingLG","marginSM","paddingXS","controlHeightSM","fontSizeIcon","lineWidthBold","marginLG","borderRadiusSM","motionDurationMid","controlItemBgHover","lineHeightSM","colorBorderBg"],"component":{"descriptionWidth":140}},"Switch":{"global":["fontSize","lineHeight","controlHeight","motionDurationMid","colorPrimary","opacityLoading","colorBgContainer","fontSizeIcon","colorText","fontFamily","colorTextQuaternary","colorTextTertiary","lineWidthBold","colorPrimaryBorder","colorPrimaryHover","colorTextLightSolid","fontSizeSM","colorWhite","marginXXS"],"component":{}},"Table":{"global":["controlItemBgActive","controlItemBgActiveHover","colorTextPlaceholder","colorTextHeading","colorSplit","colorBorderSecondary","fontSize","padding","paddingXS","paddingSM","controlHeight","colorFillAlter","colorIcon","colorIconHover","opacityLoading","colorBgContainer","borderRadiusLG","colorFillContent","colorFillSecondary","controlInteractiveSize","fontWeightStrong","lineWidth","lineType","motionDurationMid","paddingContentVerticalLG","colorText","lineHeight","fontFamily","margin","marginXXS","fontSizeIcon","motionDurationSlow","colorPrimary","paddingXXS","fontSizeSM","borderRadius","colorTextDescription","colorTextDisabled","controlItemBgHover","boxShadowSecondary","colorLink","colorLinkHover","colorLinkActive"],"component":{}},"Tabs":{"global":["zIndexPopupBase","controlHeightLG","colorPrimaryHover","colorPrimaryActive","fontSize","lineHeight","lineWidth","padding","marginXXS","colorFillAlter","paddingXXS","paddingXS","fontSizeLG","borderRadius","marginSM","marginXS","margin","colorSplit","lineType","lineWidthBold","motionDurationSlow","controlHeight","boxShadowTabsOverflowLeft","boxShadowTabsOverflowRight","paddingLG","boxShadowTabsOverflowTop","boxShadowTabsOverflowBottom","colorBorder","colorText","fontFamily","colorBgContainer","borderRadiusLG","boxShadowSecondary","paddingSM","colorTextDescription","fontSizeSM","controlItemBgHover","colorTextDisabled","motionEaseInOut","colorPrimary","colorPrimaryBorder","colorTextHeading","motionDurationMid","motionEaseOutQuint","motionEaseInQuint"],"component":{"zIndexPopup":1050}},"Tag":{"global":["fontSize","lineHeight","lineWidth","fontSizeIcon","fontSizeSM","colorFillAlter","colorText","colorFillTertiary","paddingXXS","fontFamily","marginXS","lineType","colorBorder","borderRadiusSM","motionDurationMid","colorTextDescription","colorTextHeading","colorTextLightSolid","colorPrimary","colorFillSecondary","colorPrimaryHover","colorPrimaryActive","blue-1","blue-3","blue-6","blue-7","purple-1","purple-3","purple-6","purple-7","cyan-1","cyan-3","cyan-6","cyan-7","green-1","green-3","green-6","green-7","magenta-1","magenta-3","magenta-6","magenta-7","pink-1","pink-3","pink-6","pink-7","red-1","red-3","red-6","red-7","orange-1","orange-3","orange-6","orange-7","yellow-1","yellow-3","yellow-6","yellow-7","volcano-1","volcano-3","volcano-6","volcano-7","geekblue-1","geekblue-3","geekblue-6","geekblue-7","lime-1","lime-3","lime-6","lime-7","gold-1","gold-3","gold-6","gold-7","colorSuccess","colorSuccessBg","colorSuccessBorder","colorInfo","colorInfoBg","colorInfoBorder","colorError","colorErrorBg","colorErrorBorder","colorWarning","colorWarningBg","colorWarningBorder"],"component":{}},"Timeline":{"global":["padding","paddingXXS","lineWidthBold","wireframe","colorText","fontSize","lineHeight","fontFamily","lineType","colorSplit","fontSizeSM","colorBgContainer","colorPrimary","colorError","colorSuccess","colorTextDisabled","lineWidth","margin","controlHeightLG","marginXXS","marginSM","marginXS"],"component":{}},"Tooltip":{"global":["zIndexPopupBase","colorBgSpotlight","borderRadius","colorTextLightSolid","borderRadiusOuter","controlHeight","boxShadowSecondary","paddingSM","paddingXS","colorText","fontSize","lineHeight","fontFamily","blue-1","blue-3","blue-6","blue-7","purple-1","purple-3","purple-6","purple-7","cyan-1","cyan-3","cyan-6","cyan-7","green-1","green-3","green-6","green-7","magenta-1","magenta-3","magenta-6","magenta-7","pink-1","pink-3","pink-6","pink-7","red-1","red-3","red-6","red-7","orange-1","orange-3","orange-6","orange-7","yellow-1","yellow-3","yellow-6","yellow-7","volcano-1","volcano-3","volcano-6","volcano-7","geekblue-1","geekblue-3","geekblue-6","geekblue-7","lime-1","lime-3","lime-6","lime-7","gold-1","gold-3","gold-6","gold-7","sizePopupArrow","marginXXS","borderRadiusXS","boxShadowPopoverArrow","motionDurationFast","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"zIndexPopup":1070,"colorBgDefault":"rgba(0, 0, 0, 0.85)"}},"Tour":{"global":["borderRadiusLG","fontSize","lineHeight","zIndexPopupBase","padding","paddingXS","borderRadius","borderRadiusXS","colorPrimary","colorText","colorFill","boxShadowTertiary","colorBgContainer","fontWeightStrong","marginXS","colorTextLightSolid","colorWhite","colorBgTextHover","motionDurationSlow","fontFamily","colorIcon","borderRadiusSM","motionDurationMid","colorIconHover","wireframe","sizePopupArrow","marginXXS","borderRadiusOuter","boxShadowPopoverArrow"],"component":{}},"Transfer":{"global":["fontSize","lineHeight","lineWidth","controlHeightLG","controlHeight","marginXS","marginXXS","fontSizeIcon","colorText","fontFamily","colorBgContainerDisabled","colorBorder","colorSplit","controlItemBgActive","controlItemBgActiveHover","colorTextDisabled","paddingSM","lineType","motionDurationSlow","borderRadiusLG","colorBgContainer","colorLinkHover","controlItemBgHover","paddingXS","margin","colorError","colorWarning"],"component":{"listWidth":180,"listHeight":200,"listWidthLG":250}},"TreeSelect":{"global":["colorBgElevated","paddingXS","controlHeightSM","fontSizeLG","colorText","fontSize","lineHeight","fontFamily","borderRadius","motionDurationSlow","lineWidthBold","colorPrimaryBorder","colorPrimary","colorTextDisabled","colorBorder","motionDurationMid","controlItemBgHover","controlItemBgActive","colorTextLightSolid","controlInteractiveSize","marginXS","colorBgContainer","lineWidth","lineType","borderRadiusSM","colorWhite","motionDurationFast","motionEaseInBack","colorPrimaryHover","motionEaseOutBack","colorBgContainerDisabled"],"component":{}},"Tree":{"global":["controlInteractiveSize","colorText","fontSize","lineHeight","fontFamily","marginXS","lineWidthBold","colorPrimaryBorder","colorBgContainer","lineWidth","lineType","colorBorder","borderRadiusSM","motionDurationSlow","colorWhite","motionDurationFast","motionEaseInBack","paddingXS","fontSizeLG","colorPrimary","colorPrimaryHover","motionDurationMid","motionEaseOutBack","colorBgContainerDisabled","colorTextDisabled","controlHeightSM","borderRadius","controlItemBgHover","controlItemBgActive","colorTextLightSolid","motionEaseInOut"],"component":{}},"Typography":{"global":["colorText","lineHeight","colorTextDescription","colorSuccess","colorWarning","colorError","colorErrorActive","colorErrorHover","colorTextDisabled","fontSizeHeading1","lineHeightHeading1","colorTextHeading","fontWeightStrong","fontSizeHeading2","lineHeightHeading2","fontSizeHeading3","lineHeightHeading3","fontSizeHeading4","lineHeightHeading4","fontSizeHeading5","lineHeightHeading5","colorLink","motionDurationSlow","colorLinkHover","colorLinkActive","linkDecoration","linkHoverDecoration","marginXXS","paddingXXS","controlHeight","fontSize","lineWidth","controlHeightLG","fontSizeLG","lineHeightLG","controlHeightSM","paddingSM","paddingXS","controlPaddingHorizontal","colorPrimaryHover","marginXS"],"component":{"sizeMarginHeadingVerticalStart":"1.2em","sizeMarginHeadingVerticalEnd":"0.5em"}},"Upload":{"global":["fontSizeHeading3","fontSize","lineHeight","lineWidth","controlHeightLG","colorTextDisabled","colorText","fontFamily","colorFillAlter","colorBorder","borderRadiusLG","motionDurationSlow","padding","colorPrimaryHover","margin","colorPrimary","marginXXS","colorTextHeading","fontSizeLG","colorTextDescription","paddingXS","lineType","paddingSM","fontSizeHeading2","colorError","colorErrorBg","colorTextLightSolid","marginXS","colorBgMask","marginXL","controlItemBgHover","motionEaseInOutCirc","motionDurationMid","motionEaseInOut"],"component":{}}} |
@@ -1,2 +0,2 @@ | ||
declare const _default: "4.0.0"; | ||
declare const _default: "4.0.1"; | ||
export default _default; |
@@ -1,1 +0,1 @@ | ||
export default '4.0.0'; | ||
export default '4.0.1'; |
@@ -10,2 +10,3 @@ import type * as CSS from 'csstype'; | ||
declare const SKIP_CHECK = "_skip_check_"; | ||
declare const MULTI_VALUE = "_multi_value_"; | ||
export type CSSProperties = Omit<CSS.PropertiesFallback<number | string>, 'animationName'> & { | ||
@@ -17,2 +18,3 @@ animationName?: CSS.PropertiesFallback<number | string>['animationName'] | Keyframes; | ||
[SKIP_CHECK]: boolean; | ||
[MULTI_VALUE]?: boolean; | ||
value: CSSProperties[K] | Extract<CSSProperties[K], string>[]; | ||
@@ -59,3 +61,3 @@ }; | ||
}>, styleFn: () => CSSInterpolation): (node: VueNode) => VueNode; | ||
export declare function extractStyle(cache: Cache): string; | ||
export declare function extractStyle(cache: Cache, plain?: boolean): string; | ||
export {}; |
@@ -27,2 +27,3 @@ "use strict"; | ||
const SKIP_CHECK = '_skip_check_'; | ||
const MULTI_VALUE = '_multi_value_'; | ||
// ============================================================================ | ||
@@ -37,3 +38,3 @@ // == Parser == | ||
function isCompoundCSSProperty(value) { | ||
return typeof value === 'object' && value && SKIP_CHECK in value; | ||
return typeof value === 'object' && value && (SKIP_CHECK in value || MULTI_VALUE in value); | ||
} | ||
@@ -159,23 +160,32 @@ // 注入 hash 值 | ||
} else { | ||
function appendStyle(cssKey, cssValue) { | ||
if (process.env.NODE_ENV !== 'production' && (typeof value !== 'object' || !(value === null || value === void 0 ? void 0 : value[SKIP_CHECK]))) { | ||
[_linters.contentQuotesLinter, _linters.hashedAnimationLinter, ...linters].forEach(linter => linter(cssKey, cssValue, { | ||
path, | ||
hashId, | ||
parentSelectors | ||
})); | ||
} | ||
// 如果是样式则直接插入 | ||
const styleName = cssKey.replace(/[A-Z]/g, match => `-${match.toLowerCase()}`); | ||
// Auto suffix with px | ||
let formatValue = cssValue; | ||
if (!_unitless.default[cssKey] && typeof formatValue === 'number' && formatValue !== 0) { | ||
formatValue = `${formatValue}px`; | ||
} | ||
// handle animationName & Keyframe value | ||
if (cssKey === 'animationName' && (cssValue === null || cssValue === void 0 ? void 0 : cssValue._keyframe)) { | ||
parseKeyframes(cssValue); | ||
formatValue = cssValue.getName(hashId); | ||
} | ||
styleStr += `${styleName}:${formatValue};`; | ||
} | ||
const actualValue = (_a = value === null || value === void 0 ? void 0 : value.value) !== null && _a !== void 0 ? _a : value; | ||
if (process.env.NODE_ENV !== 'production' && (typeof value !== 'object' || !(value === null || value === void 0 ? void 0 : value[SKIP_CHECK]))) { | ||
[_linters.contentQuotesLinter, _linters.hashedAnimationLinter, ...linters].forEach(linter => linter(key, actualValue, { | ||
path, | ||
hashId, | ||
parentSelectors | ||
})); | ||
if (typeof value === 'object' && (value === null || value === void 0 ? void 0 : value[MULTI_VALUE]) && Array.isArray(actualValue)) { | ||
actualValue.forEach(item => { | ||
appendStyle(key, item); | ||
}); | ||
} else { | ||
appendStyle(key, actualValue); | ||
} | ||
// 如果是样式则直接插入 | ||
const styleName = key.replace(/[A-Z]/g, match => `-${match.toLowerCase()}`); | ||
// Auto suffix with px | ||
let formatValue = actualValue; | ||
if (!_unitless.default[key] && typeof formatValue === 'number' && formatValue !== 0) { | ||
formatValue = `${formatValue}px`; | ||
} | ||
// handle animationName & Keyframe value | ||
if (key === 'animationName' && (value === null || value === void 0 ? void 0 : value._keyframe)) { | ||
parseKeyframes(value); | ||
formatValue = value.getName(hashId); | ||
} | ||
styleStr += `${styleName}:${formatValue};`; | ||
} | ||
@@ -312,2 +322,3 @@ }); | ||
function extractStyle(cache) { | ||
let plain = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; | ||
// prefix with `style` is used for `useStyleRegister` to cache style context | ||
@@ -319,5 +330,5 @@ const styleKeys = Array.from(cache.cache.keys()).filter(key => key.startsWith('style%')); | ||
const [styleStr, tokenKey, styleId] = cache.cache.get(key)[1]; | ||
styleText += `<style ${_StyleContext.ATTR_TOKEN}="${tokenKey}" ${_StyleContext.ATTR_MARK}="${styleId}">${styleStr}</style>`; | ||
styleText += plain ? styleStr : `<style ${_StyleContext.ATTR_TOKEN}="${tokenKey}" ${_StyleContext.ATTR_MARK}="${styleId}">${styleStr}</style>`; | ||
}); | ||
return styleText; | ||
} |
@@ -6,3 +6,3 @@ import useCacheToken from './hooks/useCacheToken'; | ||
import type { Linter } from './linters'; | ||
import { legacyNotSelectorLinter, logicalPropertiesLinter } from './linters'; | ||
import { legacyNotSelectorLinter, logicalPropertiesLinter, parentSelectorLinter } from './linters'; | ||
import type { StyleContextProps, StyleProviderProps } from './StyleContext'; | ||
@@ -14,2 +14,3 @@ import { createCache, useStyleInject, useStyleProvider, StyleProvider } from './StyleContext'; | ||
import legacyLogicalPropertiesTransformer from './transformers/legacyLogicalProperties'; | ||
import px2remTransformer from './transformers/px2rem'; | ||
declare const cssinjs: { | ||
@@ -26,4 +27,6 @@ Theme: typeof Theme; | ||
legacyLogicalPropertiesTransformer: Transformer; | ||
px2remTransformer: (options?: import("./transformers/px2rem").Options) => Transformer; | ||
logicalPropertiesLinter: Linter; | ||
legacyNotSelectorLinter: Linter; | ||
parentSelectorLinter: Linter; | ||
StyleProvider: { | ||
@@ -266,4 +269,4 @@ new (...args: any[]): { | ||
}; | ||
export { Theme, createTheme, useStyleRegister, useCacheToken, createCache, useStyleInject, useStyleProvider, Keyframes, extractStyle, legacyLogicalPropertiesTransformer, logicalPropertiesLinter, legacyNotSelectorLinter, StyleProvider, }; | ||
export { Theme, createTheme, useStyleRegister, useCacheToken, createCache, useStyleInject, useStyleProvider, Keyframes, extractStyle, legacyLogicalPropertiesTransformer, px2remTransformer, logicalPropertiesLinter, legacyNotSelectorLinter, parentSelectorLinter, StyleProvider, }; | ||
export type { TokenType, CSSObject, CSSInterpolation, DerivativeFunc, Transformer, Linter, StyleContextProps, StyleProviderProps, }; | ||
export default cssinjs; |
@@ -62,2 +62,14 @@ "use strict"; | ||
}); | ||
Object.defineProperty(exports, "parentSelectorLinter", { | ||
enumerable: true, | ||
get: function () { | ||
return _linters.parentSelectorLinter; | ||
} | ||
}); | ||
Object.defineProperty(exports, "px2remTransformer", { | ||
enumerable: true, | ||
get: function () { | ||
return _px2rem.default; | ||
} | ||
}); | ||
Object.defineProperty(exports, "useCacheToken", { | ||
@@ -94,2 +106,3 @@ enumerable: true, | ||
var _legacyLogicalProperties = _interopRequireDefault(require("./transformers/legacyLogicalProperties")); | ||
var _px2rem = _interopRequireDefault(require("./transformers/px2rem")); | ||
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); } | ||
@@ -109,5 +122,7 @@ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; } | ||
legacyLogicalPropertiesTransformer: _legacyLogicalProperties.default, | ||
px2remTransformer: _px2rem.default, | ||
// Linters | ||
logicalPropertiesLinter: _linters.logicalPropertiesLinter, | ||
legacyNotSelectorLinter: _linters.legacyNotSelectorLinter, | ||
parentSelectorLinter: _linters.parentSelectorLinter, | ||
// cssinjs | ||
@@ -114,0 +129,0 @@ StyleProvider: _StyleContext.StyleProvider |
@@ -6,1 +6,2 @@ export { default as contentQuotesLinter } from './contentQuotesLinter'; | ||
export { default as logicalPropertiesLinter } from './logicalPropertiesLinter'; | ||
export { default as parentSelectorLinter } from './parentSelectorLinter'; |
@@ -31,5 +31,12 @@ "use strict"; | ||
}); | ||
Object.defineProperty(exports, "parentSelectorLinter", { | ||
enumerable: true, | ||
get: function () { | ||
return _parentSelectorLinter.default; | ||
} | ||
}); | ||
var _contentQuotesLinter = _interopRequireDefault(require("./contentQuotesLinter")); | ||
var _hashedAnimationLinter = _interopRequireDefault(require("./hashedAnimationLinter")); | ||
var _legacyNotSelectorLinter = _interopRequireDefault(require("./legacyNotSelectorLinter")); | ||
var _logicalPropertiesLinter = _interopRequireDefault(require("./logicalPropertiesLinter")); | ||
var _logicalPropertiesLinter = _interopRequireDefault(require("./logicalPropertiesLinter")); | ||
var _parentSelectorLinter = _interopRequireDefault(require("./parentSelectorLinter")); |
@@ -66,3 +66,3 @@ "use strict"; | ||
const context = (0, _vue.shallowRef)((0, _extends2.default)({}, defaultStyleContext)); | ||
(0, _vue.watch)([props, parentContext], () => { | ||
(0, _vue.watch)([() => (0, _vue.unref)(props), parentContext], () => { | ||
const mergedContext = (0, _extends2.default)({}, parentContext.value); | ||
@@ -69,0 +69,0 @@ const propsValue = (0, _vue.unref)(props); |
@@ -12,2 +12,3 @@ "use strict"; | ||
var _getScrollBarSize = _interopRequireDefault(require("../../_util/getScrollBarSize")); | ||
var _canUseDom = _interopRequireDefault(require("../../_util/canUseDom")); | ||
const UNIQUE_ID = `vc-util-locker-${Date.now()}`; | ||
@@ -26,2 +27,5 @@ let uuid = 0; | ||
(0, _vue.watchEffect)(onClear => { | ||
if (!(0, _canUseDom.default)()) { | ||
return; | ||
} | ||
if (mergedLock.value) { | ||
@@ -28,0 +32,0 @@ const scrollbarSize = (0, _getScrollBarSize.default)(); |
@@ -87,3 +87,3 @@ "use strict"; | ||
// attachToParent(); | ||
const defaultContainer = document.createElement('div'); | ||
const defaultContainer = (0, _canUseDom.default)() && document.createElement('div'); | ||
const getContainer = () => { | ||
@@ -90,0 +90,0 @@ if (!supportDom) { |
@@ -311,2 +311,3 @@ import type { App, VNode, ExtractPropTypes, CSSProperties, PropType } from 'vue'; | ||
dataSource: any; | ||
clearIcon: any; | ||
}>; | ||
@@ -509,2 +510,3 @@ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>; | ||
dataSource: any; | ||
clearIcon: any; | ||
}>> & { | ||
@@ -891,2 +893,3 @@ beforeCreate?: (() => void) | (() => void)[]; | ||
dataSource: any; | ||
clearIcon: any; | ||
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & { | ||
@@ -893,0 +896,0 @@ Option: import("./Option").OptionFC; |
@@ -19,3 +19,3 @@ "use strict"; | ||
var _style = _interopRequireDefault(require("./style")); | ||
var _SizeContext = require("./SizeContext"); | ||
var _AvatarContext = require("./AvatarContext"); | ||
const avatarProps = () => ({ | ||
@@ -69,5 +69,5 @@ prefixCls: String, | ||
const [wrapSSR, hashId] = (0, _style.default)(prefixCls); | ||
const groupSize = (0, _SizeContext.useInjectSize)(); | ||
const avatarCtx = (0, _AvatarContext.useAvatarInjectContext)(); | ||
const size = (0, _vue.computed)(() => { | ||
return props.size === 'default' ? groupSize.value : props.size; | ||
return props.size === 'default' ? avatarCtx.size : props.size; | ||
}); | ||
@@ -137,3 +137,3 @@ const screens = (0, _useBreakpoint.default)(); | ||
return () => { | ||
var _a; | ||
var _a, _b; | ||
const { | ||
@@ -147,2 +147,3 @@ shape, | ||
} = props; | ||
const mergeShape = (_a = avatarCtx.shape) !== null && _a !== void 0 ? _a : shape; | ||
const icon = (0, _propsUtil.getPropsSlot)(slots, props, 'icon'); | ||
@@ -155,3 +156,3 @@ const pre = prefixCls.value; | ||
[`${pre}-sm`]: size.value === 'small', | ||
[`${pre}-${shape}`]: shape, | ||
[`${pre}-${mergeShape}`]: true, | ||
[`${pre}-image`]: src && isImgExist.value, | ||
@@ -167,3 +168,3 @@ [`${pre}-icon`]: icon, | ||
} : {}; | ||
const children = (_a = slots.default) === null || _a === void 0 ? void 0 : _a.call(slots); | ||
const children = (_b = slots.default) === null || _b === void 0 ? void 0 : _b.call(slots); | ||
let childrenToRender; | ||
@@ -170,0 +171,0 @@ if (src && isImgExist.value) { |
@@ -19,2 +19,6 @@ import type { AvatarSize } from './Avatar'; | ||
}; | ||
shape: { | ||
type: PropType<"circle" | "square">; | ||
default: string; | ||
}; | ||
}; | ||
@@ -38,2 +42,6 @@ export type AvatarGroupProps = Partial<ExtractPropTypes<ReturnType<typeof groupProps>>>; | ||
}; | ||
shape: { | ||
type: PropType<"circle" | "square">; | ||
default: string; | ||
}; | ||
}, () => import("../_util/type").VueNode, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{ | ||
@@ -55,4 +63,9 @@ prefixCls: StringConstructor; | ||
}; | ||
shape: { | ||
type: PropType<"circle" | "square">; | ||
default: string; | ||
}; | ||
}>>, { | ||
size: number | "default" | "small" | "large" | Partial<Record<import("../_util/responsiveObserve").Breakpoint, number>>; | ||
shape: "circle" | "square"; | ||
maxStyle: CSSProperties; | ||
@@ -59,0 +72,0 @@ maxPopoverPlacement: "top" | "bottom"; |
@@ -16,3 +16,3 @@ "use strict"; | ||
var _style = _interopRequireDefault(require("./style")); | ||
var _SizeContext = require("./SizeContext"); | ||
var _AvatarContext = require("./AvatarContext"); | ||
const groupProps = () => ({ | ||
@@ -37,2 +37,6 @@ prefixCls: String, | ||
default: 'default' | ||
}, | ||
shape: { | ||
type: String, | ||
default: 'circle' | ||
} | ||
@@ -59,3 +63,9 @@ }); | ||
const [wrapSSR, hashId] = (0, _style.default)(prefixCls); | ||
(0, _SizeContext.useProviderSize)((0, _vue.computed)(() => props.size)); | ||
(0, _vue.watchEffect)(() => { | ||
const context = { | ||
size: props.size, | ||
shape: props.shape | ||
}; | ||
(0, _AvatarContext.useAvatarProviderContext)(context); | ||
}); | ||
return () => { | ||
@@ -66,3 +76,4 @@ const { | ||
maxStyle, | ||
maxPopoverTrigger = 'hover' | ||
maxPopoverTrigger = 'hover', | ||
shape | ||
} = props; | ||
@@ -91,3 +102,4 @@ const cls = { | ||
default: () => [(0, _vue.createVNode)(_Avatar.default, { | ||
"style": maxStyle | ||
"style": maxStyle, | ||
"shape": shape | ||
}, { | ||
@@ -94,0 +106,0 @@ default: () => [`+${numOfChildren - maxCount}`] |
export interface ComponentToken { | ||
/** | ||
* @desc 头像背景色 | ||
* @descEN Background color of Avatar | ||
*/ | ||
containerSize: number; | ||
/** | ||
* @desc 大号头像尺寸 | ||
* @descEN Size of large Avatar | ||
*/ | ||
containerSizeLG: number; | ||
/** | ||
* @desc 小号头像尺寸 | ||
* @descEN Size of small Avatar | ||
*/ | ||
containerSizeSM: number; | ||
/** | ||
* @desc 头像文字大小 | ||
* @descEN Font size of Avatar | ||
*/ | ||
textFontSize: number; | ||
/** | ||
* @desc 大号头像文字大小 | ||
* @descEN Font size of large Avatar | ||
*/ | ||
textFontSizeLG: number; | ||
/** | ||
* @desc 小号头像文字大小 | ||
* @descEN Font size of small Avatar | ||
*/ | ||
textFontSizeSM: number; | ||
/** | ||
* @desc 头像组间距 | ||
* @descEN Spacing between avatars in a group | ||
*/ | ||
groupSpace: number; | ||
/** | ||
* @desc 头像组重叠宽度 | ||
* @descEN Overlapping of avatars in a group | ||
*/ | ||
groupOverlapping: number; | ||
/** | ||
* @desc 头像组边框颜色 | ||
* @descEN Border color of avatars in a group | ||
*/ | ||
groupBorderColor: string; | ||
} | ||
declare const _default: (_prefixCls?: import("vue").Ref<string>) => import("../../theme/internal").UseComponentStyleResult; | ||
export default _default; |
@@ -18,8 +18,8 @@ "use strict"; | ||
avatarColor, | ||
avatarSizeBase, | ||
avatarSizeLG, | ||
avatarSizeSM, | ||
avatarFontSizeBase, | ||
avatarFontSizeLG, | ||
avatarFontSizeSM, | ||
containerSize, | ||
containerSizeLG, | ||
containerSizeSM, | ||
textFontSize, | ||
textFontSizeLG, | ||
textFontSizeSM, | ||
borderRadius, | ||
@@ -72,5 +72,5 @@ borderRadiusLG, | ||
} | ||
}), avatarSizeStyle(avatarSizeBase, avatarFontSizeBase, borderRadius)), { | ||
[`&-lg`]: (0, _extends2.default)({}, avatarSizeStyle(avatarSizeLG, avatarFontSizeLG, borderRadiusLG)), | ||
[`&-sm`]: (0, _extends2.default)({}, avatarSizeStyle(avatarSizeSM, avatarFontSizeSM, borderRadiusSM)), | ||
}), avatarSizeStyle(containerSize, textFontSize, borderRadius)), { | ||
[`&-lg`]: (0, _extends2.default)({}, avatarSizeStyle(containerSizeLG, textFontSizeLG, borderRadiusLG)), | ||
[`&-sm`]: (0, _extends2.default)({}, avatarSizeStyle(containerSizeSM, textFontSizeSM, borderRadiusSM)), | ||
'> img': { | ||
@@ -88,4 +88,5 @@ display: 'block', | ||
componentCls, | ||
avatarGroupBorderColor, | ||
avatarGroupSpace | ||
groupBorderColor, | ||
groupOverlapping, | ||
groupSpace | ||
} = token; | ||
@@ -96,7 +97,12 @@ return { | ||
[`${componentCls}`]: { | ||
borderColor: avatarGroupBorderColor | ||
borderColor: groupBorderColor | ||
}, | ||
[`> *:not(:first-child)`]: { | ||
marginInlineStart: avatarGroupSpace | ||
marginInlineStart: groupOverlapping | ||
} | ||
}, | ||
[`${componentCls}-group-popover`]: { | ||
[`${componentCls} + ${componentCls}`]: { | ||
marginInlineStart: groupSpace | ||
} | ||
} | ||
@@ -108,2 +114,11 @@ }; | ||
colorTextLightSolid, | ||
colorTextPlaceholder | ||
} = token; | ||
const avatarToken = (0, _internal.mergeToken)(token, { | ||
avatarBg: colorTextPlaceholder, | ||
avatarColor: colorTextLightSolid | ||
}); | ||
return [genBaseStyle(avatarToken), genGroupStyle(avatarToken)]; | ||
}, token => { | ||
const { | ||
controlHeight, | ||
@@ -117,19 +132,17 @@ controlHeightLG, | ||
marginXS, | ||
colorBorderBg, | ||
colorTextPlaceholder | ||
marginXXS, | ||
colorBorderBg | ||
} = token; | ||
const avatarToken = (0, _internal.mergeToken)(token, { | ||
avatarBg: colorTextPlaceholder, | ||
avatarColor: colorTextLightSolid, | ||
avatarSizeBase: controlHeight, | ||
avatarSizeLG: controlHeightLG, | ||
avatarSizeSM: controlHeightSM, | ||
avatarFontSizeBase: Math.round((fontSizeLG + fontSizeXL) / 2), | ||
avatarFontSizeLG: fontSizeHeading3, | ||
avatarFontSizeSM: fontSize, | ||
avatarGroupSpace: -marginXS, | ||
avatarGroupBorderColor: colorBorderBg | ||
}); | ||
return [genBaseStyle(avatarToken), genGroupStyle(avatarToken)]; | ||
return { | ||
containerSize: controlHeight, | ||
containerSizeLG: controlHeightLG, | ||
containerSizeSM: controlHeightSM, | ||
textFontSize: Math.round((fontSizeLG + fontSizeXL) / 2), | ||
textFontSizeLG: fontSizeHeading3, | ||
textFontSizeSM: fontSize, | ||
groupSpace: marginXXS, | ||
groupOverlapping: -marginXS, | ||
groupBorderColor: colorBorderBg | ||
}; | ||
}); | ||
exports.default = _default; |
@@ -111,3 +111,3 @@ "use strict"; | ||
[`${prefixCls.value}-status-${props.status}`]: !!props.status, | ||
[`${prefixCls.value}-status-${props.color}`]: isInternalColor.value | ||
[`${prefixCls.value}-color-${props.color}`]: isInternalColor.value | ||
})); | ||
@@ -130,3 +130,3 @@ const statusStyle = (0, _vue.computed)(() => { | ||
[`${prefixCls.value}-status-${props.status}`]: !!props.status, | ||
[`${prefixCls.value}-status-${props.color}`]: isInternalColor.value | ||
[`${prefixCls.value}-color-${props.color}`]: isInternalColor.value | ||
})); | ||
@@ -133,0 +133,0 @@ return () => { |
@@ -83,3 +83,3 @@ "use strict"; | ||
const ribbonWrapperPrefixCls = `${antCls}-ribbon-wrapper`; | ||
const statusPreset = (0, _style.genPresetColor)(token, (colorKey, _ref) => { | ||
const colorPreset = (0, _style.genPresetColor)(token, (colorKey, _ref) => { | ||
let { | ||
@@ -89,4 +89,7 @@ darkColor | ||
return { | ||
[`${componentCls}-status-${colorKey}`]: { | ||
background: darkColor | ||
[`&${componentCls} ${componentCls}-color-${colorKey}`]: { | ||
background: darkColor, | ||
[`&:not(${componentCls}-count)`]: { | ||
color: darkColor | ||
} | ||
} | ||
@@ -107,3 +110,3 @@ }; | ||
return { | ||
[componentCls]: (0, _extends2.default)((0, _extends2.default)({}, (0, _style.resetComponent)(token)), { | ||
[componentCls]: (0, _extends2.default)((0, _extends2.default)((0, _extends2.default)((0, _extends2.default)({}, (0, _style.resetComponent)(token)), { | ||
position: 'relative', | ||
@@ -165,5 +168,5 @@ display: 'inline-block', | ||
transformOrigin: '100% 0%', | ||
[`${iconCls}-spin`]: { | ||
[`&${iconCls}-spin`]: { | ||
animationName: antBadgeLoadingCircle, | ||
animationDuration: token.motionDurationMid, | ||
animationDuration: '1s', | ||
animationIterationCount: 'infinite', | ||
@@ -173,3 +176,3 @@ animationTimingFunction: 'linear' | ||
}, | ||
[`&${componentCls}-status`]: (0, _extends2.default)((0, _extends2.default)({ | ||
[`&${componentCls}-status`]: { | ||
lineHeight: 'inherit', | ||
@@ -190,3 +193,3 @@ verticalAlign: 'baseline', | ||
[`${componentCls}-status-processing`]: { | ||
position: 'relative', | ||
overflow: 'visible', | ||
color: token.colorPrimary, | ||
@@ -219,4 +222,3 @@ backgroundColor: token.colorPrimary, | ||
backgroundColor: token.colorWarning | ||
} | ||
}, statusPreset), { | ||
}, | ||
[`${componentCls}-status-text`]: { | ||
@@ -227,3 +229,4 @@ marginInlineStart: marginXS, | ||
} | ||
}), | ||
} | ||
}), colorPreset), { | ||
[`${componentCls}-zoom-appear, ${componentCls}-zoom-enter`]: { | ||
@@ -299,3 +302,2 @@ animationName: antZoomBadgeIn, | ||
top: marginXS, | ||
height: badgeFontHeight, | ||
padding: `0 ${token.paddingXS}px`, | ||
@@ -302,0 +304,0 @@ color: token.colorPrimary, |
@@ -68,2 +68,3 @@ import type { CalendarProps } from './generateCalendar'; | ||
readonly valueFormat?: string; | ||
readonly fullscreen?: boolean; | ||
readonly validRange?: [Date, Date]; | ||
@@ -80,3 +81,2 @@ readonly dateFullCellRender?: (config: { | ||
readonly headerRender?: import("./generateCalendar").HeaderRender<Date>; | ||
readonly fullscreen?: boolean; | ||
}; | ||
@@ -83,0 +83,0 @@ $attrs: { |
@@ -68,2 +68,3 @@ import type { CalendarProps } from './generateCalendar'; | ||
readonly valueFormat?: string; | ||
readonly fullscreen?: boolean; | ||
readonly validRange?: [import("dayjs").Dayjs, import("dayjs").Dayjs]; | ||
@@ -80,3 +81,2 @@ readonly dateFullCellRender?: (config: { | ||
readonly headerRender?: import("./generateCalendar").HeaderRender<import("dayjs").Dayjs>; | ||
readonly fullscreen?: boolean; | ||
}; | ||
@@ -83,0 +83,0 @@ $attrs: { |
@@ -69,2 +69,3 @@ import type { Moment } from 'moment'; | ||
readonly valueFormat?: string; | ||
readonly fullscreen?: boolean; | ||
readonly validRange?: [Moment, Moment]; | ||
@@ -81,3 +82,2 @@ readonly dateFullCellRender?: (config: { | ||
readonly headerRender?: import("./generateCalendar").HeaderRender<Moment>; | ||
readonly fullscreen?: boolean; | ||
}; | ||
@@ -84,0 +84,0 @@ $attrs: { |
@@ -76,2 +76,3 @@ "use strict"; | ||
emit('change', event); | ||
formItemContext.onFieldChange(); | ||
}; | ||
@@ -78,0 +79,0 @@ const checkboxRef = (0, _vue.ref)(); |
@@ -137,1 +137,3 @@ export type { AffixProps } from './affix'; | ||
export { default as Tour } from './tour'; | ||
export type { AppProps } from './app'; | ||
export { default as App } from './app'; |
@@ -31,2 +31,8 @@ "use strict"; | ||
}); | ||
Object.defineProperty(exports, "App", { | ||
enumerable: true, | ||
get: function () { | ||
return _app.default; | ||
} | ||
}); | ||
Object.defineProperty(exports, "AutoComplete", { | ||
@@ -893,3 +899,4 @@ enumerable: true, | ||
var _tour = _interopRequireDefault(require("./tour")); | ||
var _app = _interopRequireDefault(require("./app")); | ||
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); } | ||
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; } |
@@ -24,2 +24,6 @@ declare const BackTop: import("vue").DefineComponent<{ | ||
href: StringConstructor; | ||
badge: { | ||
type: import("vue").PropType<import("./interface").FloatButtonBadgeProps>; | ||
default: import("./interface").FloatButtonBadgeProps; | ||
}; | ||
}, () => import("../_util/type").VueNode, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{ | ||
@@ -48,2 +52,6 @@ prefixCls: StringConstructor; | ||
href: StringConstructor; | ||
badge: { | ||
type: import("vue").PropType<import("./interface").FloatButtonBadgeProps>; | ||
default: import("./interface").FloatButtonBadgeProps; | ||
}; | ||
}>>, { | ||
@@ -54,3 +62,4 @@ type: import("./interface").FloatButtonType; | ||
shape: import("./interface").FloatButtonShape; | ||
badge: import("./interface").FloatButtonBadgeProps; | ||
}, {}>; | ||
export default BackTop; |
@@ -19,2 +19,6 @@ export declare const floatButtonPrefixCls = "float-btn"; | ||
}; | ||
badge: { | ||
type: import("vue").PropType<import("./interface").FloatButtonBadgeProps>; | ||
default: import("./interface").FloatButtonBadgeProps; | ||
}; | ||
onClick: { | ||
@@ -41,2 +45,6 @@ type: import("vue").PropType<import("../_util/EventInterface").MouseEventHandler>; | ||
}; | ||
badge: { | ||
type: import("vue").PropType<import("./interface").FloatButtonBadgeProps>; | ||
default: import("./interface").FloatButtonBadgeProps; | ||
}; | ||
onClick: { | ||
@@ -51,3 +59,4 @@ type: import("vue").PropType<import("../_util/EventInterface").MouseEventHandler>; | ||
shape: import("./interface").FloatButtonShape; | ||
badge: import("./interface").FloatButtonBadgeProps; | ||
}, {}>; | ||
export default FloatButton; |
@@ -12,2 +12,3 @@ "use strict"; | ||
var _tooltip = _interopRequireDefault(require("../tooltip")); | ||
var _badge = _interopRequireDefault(require("../badge")); | ||
var _FloatButtonContent = _interopRequireDefault(require("./FloatButtonContent")); | ||
@@ -67,5 +68,6 @@ var _useConfigInject = _interopRequireDefault(require("../config-provider/hooks/useConfigInject")); | ||
description = (_a = slots.description) === null || _a === void 0 ? void 0 : _a.call(slots), | ||
tooltip | ||
tooltip, | ||
badge = {} | ||
} = props, | ||
restProps = __rest(props, ["prefixCls", "type", "shape", "description", "tooltip"]); | ||
restProps = __rest(props, ["prefixCls", "type", "shape", "description", "tooltip", "badge"]); | ||
const classString = (0, _classNames.default)(prefixCls.value, `${prefixCls.value}-${type}`, `${prefixCls.value}-${mergeShape.value}`, { | ||
@@ -78,10 +80,12 @@ [`${prefixCls.value}-rtl`]: direction.value === 'rtl' | ||
title: slots.tooltip || tooltip ? () => slots.tooltip && slots.tooltip() || tooltip : undefined, | ||
default: () => (0, _vue.createVNode)("div", { | ||
"class": `${prefixCls.value}-body` | ||
}, [(0, _vue.createVNode)(_FloatButtonContent.default, { | ||
"prefixCls": prefixCls.value | ||
}, { | ||
icon: slots.icon, | ||
description: () => description | ||
})]) | ||
default: () => (0, _vue.createVNode)(_badge.default, badge, { | ||
default: () => [(0, _vue.createVNode)("div", { | ||
"class": `${prefixCls.value}-body` | ||
}, [(0, _vue.createVNode)(_FloatButtonContent.default, { | ||
"prefixCls": prefixCls.value | ||
}, { | ||
icon: slots.icon, | ||
description: () => description | ||
})])] | ||
}) | ||
}); | ||
@@ -88,0 +92,0 @@ if (process.env.NODE_ENV !== 'production') { |
@@ -34,2 +34,6 @@ declare const FloatButtonGroup: import("vue").DefineComponent<{ | ||
}; | ||
badge: { | ||
type: import("vue").PropType<import("./interface").FloatButtonBadgeProps>; | ||
default: import("./interface").FloatButtonBadgeProps; | ||
}; | ||
onClick: { | ||
@@ -72,2 +76,6 @@ type: import("vue").PropType<import("../_util/EventInterface").MouseEventHandler>; | ||
}; | ||
badge: { | ||
type: import("vue").PropType<import("./interface").FloatButtonBadgeProps>; | ||
default: import("./interface").FloatButtonBadgeProps; | ||
}; | ||
onClick: { | ||
@@ -86,3 +94,4 @@ type: import("vue").PropType<import("../_util/EventInterface").MouseEventHandler>; | ||
shape: import("./interface").FloatButtonShape; | ||
badge: import("./interface").FloatButtonBadgeProps; | ||
}, {}>; | ||
export default FloatButtonGroup; |
@@ -19,2 +19,3 @@ "use strict"; | ||
var _interface = require("./interface"); | ||
var _canUseDom = _interopRequireDefault(require("../_util/canUseDom")); | ||
var _style = _interopRequireDefault(require("./style")); | ||
@@ -93,2 +94,5 @@ var _useMergedState = _interopRequireDefault(require("../_util/hooks/useMergedState")); | ||
(0, _vue.watch)((0, _vue.computed)(() => props.trigger), value => { | ||
if (!(0, _canUseDom.default)()) { | ||
return; | ||
} | ||
document.removeEventListener('click', onClick); | ||
@@ -95,0 +99,0 @@ if (value === 'click') { |
@@ -17,2 +17,3 @@ import type { Plugin } from 'vue'; | ||
shape?: FloatButtonShape; | ||
badge?: import("./interface").FloatButtonBadgeProps; | ||
key?: string | number | symbol; | ||
@@ -99,2 +100,6 @@ ref?: import("vue").VNodeRef; | ||
}; | ||
badge: { | ||
type: import("vue").PropType<import("./interface").FloatButtonBadgeProps>; | ||
default: import("./interface").FloatButtonBadgeProps; | ||
}; | ||
onClick: { | ||
@@ -109,2 +114,3 @@ type: import("vue").PropType<import("../_util/EventInterface").MouseEventHandler>; | ||
shape: FloatButtonShape; | ||
badge: import("./interface").FloatButtonBadgeProps; | ||
}, {}, string, {}> & { | ||
@@ -147,2 +153,6 @@ beforeCreate?: (() => void) | (() => void)[]; | ||
}; | ||
badge: { | ||
type: import("vue").PropType<import("./interface").FloatButtonBadgeProps>; | ||
default: import("./interface").FloatButtonBadgeProps; | ||
}; | ||
onClick: { | ||
@@ -173,2 +183,6 @@ type: import("vue").PropType<import("../_util/EventInterface").MouseEventHandler>; | ||
}; | ||
badge: { | ||
type: import("vue").PropType<import("./interface").FloatButtonBadgeProps>; | ||
default: import("./interface").FloatButtonBadgeProps; | ||
}; | ||
onClick: { | ||
@@ -183,2 +197,3 @@ type: import("vue").PropType<import("../_util/EventInterface").MouseEventHandler>; | ||
shape: FloatButtonShape; | ||
badge: import("./interface").FloatButtonBadgeProps; | ||
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Plugin<any[]> & { | ||
@@ -185,0 +200,0 @@ readonly Group: typeof FloatButtonGroup; |
import type { ExtractPropTypes } from 'vue'; | ||
import type { MouseEventHandler } from '../_util/EventInterface'; | ||
import type { BadgeProps } from '../badge'; | ||
export type FloatButtonType = 'default' | 'primary'; | ||
export type FloatButtonShape = 'circle' | 'square'; | ||
export type FloatButtonGroupTrigger = 'click' | 'hover'; | ||
export type FloatButtonBadgeProps = Omit<BadgeProps, 'status' | 'text' | 'title' | 'children'>; | ||
export declare const floatButtonProps: () => { | ||
@@ -23,2 +25,6 @@ prefixCls: StringConstructor; | ||
}; | ||
badge: { | ||
type: import("vue").PropType<FloatButtonBadgeProps>; | ||
default: FloatButtonBadgeProps; | ||
}; | ||
onClick: { | ||
@@ -70,2 +76,6 @@ type: import("vue").PropType<MouseEventHandler>; | ||
}; | ||
badge: { | ||
type: import("vue").PropType<FloatButtonBadgeProps>; | ||
default: FloatButtonBadgeProps; | ||
}; | ||
onClick: { | ||
@@ -100,3 +110,7 @@ type: import("vue").PropType<MouseEventHandler>; | ||
href: StringConstructor; | ||
badge: { | ||
type: import("vue").PropType<FloatButtonBadgeProps>; | ||
default: FloatButtonBadgeProps; | ||
}; | ||
}; | ||
export type BackTopProps = Partial<ExtractPropTypes<ReturnType<typeof backTopProps>>>; |
@@ -20,2 +20,3 @@ "use strict"; | ||
target: (0, _type.functionType)(), | ||
badge: (0, _type.objectType)(), | ||
onClick: (0, _type.functionType)() | ||
@@ -22,0 +23,0 @@ }; |
@@ -14,2 +14,3 @@ "use strict"; | ||
var _motion = require("../../style/motion/motion"); | ||
var _util = _interopRequireDefault(require("../util")); | ||
const initFloatButtonGroupMotion = token => { | ||
@@ -67,6 +68,10 @@ const { | ||
const { | ||
antCls, | ||
componentCls, | ||
floatButtonSize, | ||
margin, | ||
borderRadiusLG | ||
borderRadiusLG, | ||
borderRadiusSM, | ||
badgeOffset, | ||
floatButtonBodyPadding | ||
} = token; | ||
@@ -105,3 +110,4 @@ const groupPrefixCls = `${componentCls}-group`; | ||
width: floatButtonSize, | ||
height: floatButtonSize | ||
height: floatButtonSize, | ||
borderRadius: '50%' | ||
} | ||
@@ -124,2 +130,8 @@ } | ||
borderBottom: `${token.lineWidth}px ${token.lineType} ${token.colorSplit}` | ||
}, | ||
[`${antCls}-badge`]: { | ||
[`${antCls}-badge-count`]: { | ||
top: -(floatButtonBodyPadding + badgeOffset), | ||
insetInlineEnd: -(floatButtonBodyPadding + badgeOffset) | ||
} | ||
} | ||
@@ -131,3 +143,2 @@ }, | ||
boxShadow: token.boxShadowSecondary, | ||
overflow: 'hidden', | ||
[`${componentCls}-square`]: { | ||
@@ -137,3 +148,3 @@ boxShadow: 'none', | ||
borderRadius: 0, | ||
padding: token.paddingXXS, | ||
padding: floatButtonBodyPadding, | ||
'&:first-child': { | ||
@@ -151,4 +162,4 @@ borderStartStartRadius: borderRadiusLG, | ||
[`${componentCls}-body`]: { | ||
width: floatButtonSize - token.paddingXXS * 2, | ||
height: floatButtonSize - token.paddingXXS * 2 | ||
width: token.floatButtonBodySize, | ||
height: token.floatButtonBodySize | ||
} | ||
@@ -165,6 +176,7 @@ } | ||
boxShadow: 'none', | ||
padding: token.paddingXXS, | ||
padding: floatButtonBodyPadding, | ||
[`${componentCls}-body`]: { | ||
width: floatButtonSize - token.paddingXXS * 2, | ||
height: floatButtonSize - token.paddingXXS * 2 | ||
width: token.floatButtonBodySize, | ||
height: token.floatButtonBodySize, | ||
borderRadius: borderRadiusSM | ||
} | ||
@@ -178,6 +190,11 @@ } | ||
const { | ||
antCls, | ||
componentCls, | ||
floatButtonBodyPadding, | ||
floatButtonIconSize, | ||
floatButtonSize, | ||
borderRadiusLG | ||
borderRadiusLG, | ||
badgeOffset, | ||
dotOffsetInSquare, | ||
dotOffsetInCircle | ||
} = token; | ||
@@ -189,3 +206,2 @@ return { | ||
cursor: 'pointer', | ||
overflow: 'hidden', | ||
zIndex: 99, | ||
@@ -208,2 +224,12 @@ display: 'block', | ||
}, | ||
[`${antCls}-badge`]: { | ||
width: '100%', | ||
height: '100%', | ||
[`${antCls}-badge-count`]: { | ||
transform: 'translate(0, 0)', | ||
transformOrigin: 'center', | ||
top: -badgeOffset, | ||
insetInlineEnd: -badgeOffset | ||
} | ||
}, | ||
[`${componentCls}-body`]: { | ||
@@ -224,3 +250,3 @@ width: '100%', | ||
alignItems: 'center', | ||
padding: `2px 4px`, | ||
padding: `${floatButtonBodyPadding / 2}px ${floatButtonBodyPadding}px`, | ||
[`${componentCls}-icon`]: { | ||
@@ -236,5 +262,14 @@ textAlign: 'center', | ||
}), | ||
[`${componentCls}-rtl`]: { | ||
direction: 'rtl' | ||
}, | ||
[`${componentCls}-circle`]: { | ||
height: floatButtonSize, | ||
borderRadius: '50%', | ||
[`${antCls}-badge`]: { | ||
[`${antCls}-badge-dot`]: { | ||
top: dotOffsetInCircle, | ||
insetInlineEnd: dotOffsetInCircle | ||
} | ||
}, | ||
[`${componentCls}-body`]: { | ||
@@ -248,5 +283,11 @@ borderRadius: '50%' | ||
borderRadius: borderRadiusLG, | ||
[`${antCls}-badge`]: { | ||
[`${antCls}-badge-dot`]: { | ||
top: dotOffsetInSquare, | ||
insetInlineEnd: dotOffsetInSquare | ||
} | ||
}, | ||
[`${componentCls}-body`]: { | ||
height: 'auto', | ||
borderRadius: token.borderRadiusSM | ||
borderRadius: borderRadiusLG | ||
} | ||
@@ -311,3 +352,5 @@ }, | ||
fontSizeIcon, | ||
controlItemBgHover | ||
controlItemBgHover, | ||
paddingXXS, | ||
borderRadiusLG | ||
} = token; | ||
@@ -322,3 +365,9 @@ const floatButtonToken = (0, _internal.mergeToken)(token, { | ||
floatButtonInsetBlockEnd: marginXXL, | ||
floatButtonInsetInlineEnd: marginLG | ||
floatButtonInsetInlineEnd: marginLG, | ||
floatButtonBodySize: controlHeightLG - paddingXXS * 2, | ||
// 这里的 paddingXXS 是简写,完整逻辑是 (controlHeightLG - (controlHeightLG - paddingXXS * 2)) / 2, | ||
floatButtonBodyPadding: paddingXXS, | ||
badgeOffset: paddingXXS * 1.5, | ||
dotOffsetInCircle: (0, _util.default)(controlHeightLG / 2), | ||
dotOffsetInSquare: (0, _util.default)(borderRadiusLG) | ||
}); | ||
@@ -325,0 +374,0 @@ return [floatButtonGroupStyle(floatButtonToken), sharedFloatButtonStyle(floatButtonToken), (0, _fade.initFadeMotion)(token), initFloatButtonGroupMotion(floatButtonToken)]; |
@@ -231,6 +231,6 @@ import type { ExtractPropTypes, ImgHTMLAttributes, Plugin } from 'vue'; | ||
readonly preview?: boolean | import("../vc-image").ImagePreviewType; | ||
readonly wrapperStyle?: import("vue").CSSProperties; | ||
readonly src?: string; | ||
readonly srcset?: string; | ||
readonly alt?: string; | ||
readonly wrapperStyle?: import("vue").CSSProperties; | ||
readonly previewPrefixCls?: string; | ||
@@ -237,0 +237,0 @@ readonly previewMask?: false | (() => any); |
@@ -11,2 +11,4 @@ import type { PreviewGroupPreview } from '../vc-image/src/PreviewGroup'; | ||
right: JSX.Element; | ||
flipX: JSX.Element; | ||
flipY: JSX.Element; | ||
}; | ||
@@ -13,0 +15,0 @@ declare const previewGroupProps: () => { |
@@ -20,2 +20,3 @@ "use strict"; | ||
var _RightOutlined = _interopRequireDefault(require("@ant-design/icons-vue/lib/icons/RightOutlined")); | ||
var _SwapOutlined = _interopRequireDefault(require("@ant-design/icons-vue/lib/icons/SwapOutlined")); | ||
var _style = _interopRequireDefault(require("./style")); | ||
@@ -30,3 +31,7 @@ var _type = require("../_util/type"); | ||
left: (0, _vue.createVNode)(_LeftOutlined.default, null, null), | ||
right: (0, _vue.createVNode)(_RightOutlined.default, null, null) | ||
right: (0, _vue.createVNode)(_RightOutlined.default, null, null), | ||
flipX: (0, _vue.createVNode)(_SwapOutlined.default, null, null), | ||
flipY: (0, _vue.createVNode)(_SwapOutlined.default, { | ||
"rotate": 90 | ||
}, null) | ||
}; | ||
@@ -33,0 +38,0 @@ exports.icons = icons; |
@@ -208,2 +208,3 @@ import type { ExtractPropTypes, App } from 'vue'; | ||
tabindex?: number; | ||
readonly precision?: number; | ||
role?: string; | ||
@@ -216,3 +217,2 @@ readonly id?: string; | ||
readonly addonAfter?: any; | ||
readonly precision?: number; | ||
readonly decimalSeparator?: string; | ||
@@ -219,0 +219,0 @@ }; |
@@ -198,3 +198,3 @@ "use strict"; | ||
"style": style, | ||
"onMouseup": () => inputNumberRef.value.focus() | ||
"onClick": focus | ||
}, [hasPrefix && (0, _vue.createVNode)("span", { | ||
@@ -201,0 +201,0 @@ "class": `${preCls}-prefix` |
@@ -157,2 +157,3 @@ "use strict"; | ||
"onFocus": handleFocus, | ||
"prefix": prefix, | ||
"suffix": suffixNode, | ||
@@ -159,0 +160,0 @@ "allowClear": allowClear, |
@@ -0,1 +1,2 @@ | ||
import type { PropType } from 'vue'; | ||
declare const _default: import("vue").DefineComponent<{ | ||
@@ -12,16 +13,21 @@ prefixCls: StringConstructor; | ||
}; | ||
visible: { | ||
type: BooleanConstructor; | ||
default: any; | ||
}; | ||
'onUpdate:visible': PropType<(visible: boolean) => void>; | ||
iconRender: FunctionConstructor; | ||
name: StringConstructor; | ||
type: { | ||
type: import("vue").PropType<"number" | "button" | "time" | "reset" | "submit" | "image" | "text" | "search" | "checkbox" | "radio" | "hidden" | "color" | "range" | "date" | "url" | "email" | "week" | "month" | "tel" | "datetime-local" | "file" | "password">; | ||
type: PropType<"number" | "button" | "time" | "reset" | "submit" | "image" | "text" | "search" | "checkbox" | "radio" | "hidden" | "color" | "range" | "date" | "url" | "email" | "week" | "month" | "tel" | "datetime-local" | "file" | "password">; | ||
default: "number" | "button" | "time" | "reset" | "submit" | "image" | "text" | "search" | "checkbox" | "radio" | "hidden" | "color" | "range" | "date" | "url" | "email" | "week" | "month" | "tel" | "datetime-local" | "file" | "password"; | ||
}; | ||
onCompositionend: import("vue").PropType<import("../_util/EventInterface").CompositionEventHandler>; | ||
onCompositionstart: import("vue").PropType<import("../_util/EventInterface").CompositionEventHandler>; | ||
onFocus: import("vue").PropType<import("../_util/EventInterface").FocusEventHandler>; | ||
onBlur: import("vue").PropType<import("../_util/EventInterface").FocusEventHandler>; | ||
onChange: import("vue").PropType<import("../_util/EventInterface").ChangeEventHandler>; | ||
onInput: import("vue").PropType<import("../_util/EventInterface").ChangeEventHandler>; | ||
onKeydown: import("vue").PropType<import("../_util/EventInterface").KeyboardEventHandler>; | ||
onKeyup: import("vue").PropType<import("../_util/EventInterface").KeyboardEventHandler>; | ||
onCompositionend: PropType<import("../_util/EventInterface").CompositionEventHandler>; | ||
onCompositionstart: PropType<import("../_util/EventInterface").CompositionEventHandler>; | ||
onFocus: PropType<import("../_util/EventInterface").FocusEventHandler>; | ||
onBlur: PropType<import("../_util/EventInterface").FocusEventHandler>; | ||
onChange: PropType<import("../_util/EventInterface").ChangeEventHandler>; | ||
onInput: PropType<import("../_util/EventInterface").ChangeEventHandler>; | ||
onKeydown: PropType<import("../_util/EventInterface").KeyboardEventHandler>; | ||
onKeyup: PropType<import("../_util/EventInterface").KeyboardEventHandler>; | ||
focused: { | ||
@@ -36,3 +42,3 @@ type: BooleanConstructor; | ||
size: { | ||
type: import("vue").PropType<import("../config-provider").SizeType>; | ||
type: PropType<import("../config-provider").SizeType>; | ||
}; | ||
@@ -44,3 +50,3 @@ disabled: { | ||
value: { | ||
type: import("vue").PropType<string | number>; | ||
type: PropType<string | number>; | ||
default: any; | ||
@@ -58,11 +64,11 @@ }; | ||
}; | ||
status: import("vue").PropType<"" | "error" | "warning">; | ||
status: PropType<"" | "error" | "warning">; | ||
defaultValue: { | ||
type: import("vue").PropType<string | number>; | ||
type: PropType<string | number>; | ||
default: any; | ||
}; | ||
'onUpdate:value': import("vue").PropType<(val: string) => void>; | ||
'onUpdate:value': PropType<(val: string) => void>; | ||
suffix: import("vue-types").VueTypeValidableDef<any>; | ||
placeholder: { | ||
type: import("vue").PropType<string | number>; | ||
type: PropType<string | number>; | ||
}; | ||
@@ -84,10 +90,10 @@ prefix: import("vue-types").VueTypeValidableDef<any>; | ||
showCount: { | ||
type: import("vue").PropType<boolean | import("../vc-input/inputProps").ShowCountProps>; | ||
type: PropType<boolean | import("../vc-input/inputProps").ShowCountProps>; | ||
}; | ||
htmlSize: NumberConstructor; | ||
onPressEnter: import("vue").PropType<import("../_util/EventInterface").KeyboardEventHandler>; | ||
onPressEnter: PropType<import("../_util/EventInterface").KeyboardEventHandler>; | ||
valueModifiers: ObjectConstructor; | ||
inputElement: import("vue-types").VueTypeValidableDef<any>; | ||
triggerFocus: import("vue").PropType<() => void>; | ||
handleReset: import("vue").PropType<import("../_util/EventInterface").MouseEventHandler>; | ||
triggerFocus: PropType<() => void>; | ||
handleReset: PropType<import("../_util/EventInterface").MouseEventHandler>; | ||
addonBefore: import("vue-types").VueTypeValidableDef<any>; | ||
@@ -111,16 +117,21 @@ addonAfter: import("vue-types").VueTypeValidableDef<any>; | ||
}; | ||
visible: { | ||
type: BooleanConstructor; | ||
default: any; | ||
}; | ||
'onUpdate:visible': PropType<(visible: boolean) => void>; | ||
iconRender: FunctionConstructor; | ||
name: StringConstructor; | ||
type: { | ||
type: import("vue").PropType<"number" | "button" | "time" | "reset" | "submit" | "image" | "text" | "search" | "checkbox" | "radio" | "hidden" | "color" | "range" | "date" | "url" | "email" | "week" | "month" | "tel" | "datetime-local" | "file" | "password">; | ||
type: PropType<"number" | "button" | "time" | "reset" | "submit" | "image" | "text" | "search" | "checkbox" | "radio" | "hidden" | "color" | "range" | "date" | "url" | "email" | "week" | "month" | "tel" | "datetime-local" | "file" | "password">; | ||
default: "number" | "button" | "time" | "reset" | "submit" | "image" | "text" | "search" | "checkbox" | "radio" | "hidden" | "color" | "range" | "date" | "url" | "email" | "week" | "month" | "tel" | "datetime-local" | "file" | "password"; | ||
}; | ||
onCompositionend: import("vue").PropType<import("../_util/EventInterface").CompositionEventHandler>; | ||
onCompositionstart: import("vue").PropType<import("../_util/EventInterface").CompositionEventHandler>; | ||
onFocus: import("vue").PropType<import("../_util/EventInterface").FocusEventHandler>; | ||
onBlur: import("vue").PropType<import("../_util/EventInterface").FocusEventHandler>; | ||
onChange: import("vue").PropType<import("../_util/EventInterface").ChangeEventHandler>; | ||
onInput: import("vue").PropType<import("../_util/EventInterface").ChangeEventHandler>; | ||
onKeydown: import("vue").PropType<import("../_util/EventInterface").KeyboardEventHandler>; | ||
onKeyup: import("vue").PropType<import("../_util/EventInterface").KeyboardEventHandler>; | ||
onCompositionend: PropType<import("../_util/EventInterface").CompositionEventHandler>; | ||
onCompositionstart: PropType<import("../_util/EventInterface").CompositionEventHandler>; | ||
onFocus: PropType<import("../_util/EventInterface").FocusEventHandler>; | ||
onBlur: PropType<import("../_util/EventInterface").FocusEventHandler>; | ||
onChange: PropType<import("../_util/EventInterface").ChangeEventHandler>; | ||
onInput: PropType<import("../_util/EventInterface").ChangeEventHandler>; | ||
onKeydown: PropType<import("../_util/EventInterface").KeyboardEventHandler>; | ||
onKeyup: PropType<import("../_util/EventInterface").KeyboardEventHandler>; | ||
focused: { | ||
@@ -135,3 +146,3 @@ type: BooleanConstructor; | ||
size: { | ||
type: import("vue").PropType<import("../config-provider").SizeType>; | ||
type: PropType<import("../config-provider").SizeType>; | ||
}; | ||
@@ -143,3 +154,3 @@ disabled: { | ||
value: { | ||
type: import("vue").PropType<string | number>; | ||
type: PropType<string | number>; | ||
default: any; | ||
@@ -157,11 +168,11 @@ }; | ||
}; | ||
status: import("vue").PropType<"" | "error" | "warning">; | ||
status: PropType<"" | "error" | "warning">; | ||
defaultValue: { | ||
type: import("vue").PropType<string | number>; | ||
type: PropType<string | number>; | ||
default: any; | ||
}; | ||
'onUpdate:value': import("vue").PropType<(val: string) => void>; | ||
'onUpdate:value': PropType<(val: string) => void>; | ||
suffix: import("vue-types").VueTypeValidableDef<any>; | ||
placeholder: { | ||
type: import("vue").PropType<string | number>; | ||
type: PropType<string | number>; | ||
}; | ||
@@ -183,10 +194,10 @@ prefix: import("vue-types").VueTypeValidableDef<any>; | ||
showCount: { | ||
type: import("vue").PropType<boolean | import("../vc-input/inputProps").ShowCountProps>; | ||
type: PropType<boolean | import("../vc-input/inputProps").ShowCountProps>; | ||
}; | ||
htmlSize: NumberConstructor; | ||
onPressEnter: import("vue").PropType<import("../_util/EventInterface").KeyboardEventHandler>; | ||
onPressEnter: PropType<import("../_util/EventInterface").KeyboardEventHandler>; | ||
valueModifiers: ObjectConstructor; | ||
inputElement: import("vue-types").VueTypeValidableDef<any>; | ||
triggerFocus: import("vue").PropType<() => void>; | ||
handleReset: import("vue").PropType<import("../_util/EventInterface").MouseEventHandler>; | ||
triggerFocus: PropType<() => void>; | ||
handleReset: PropType<import("../_util/EventInterface").MouseEventHandler>; | ||
addonBefore: import("vue-types").VueTypeValidableDef<any>; | ||
@@ -203,2 +214,3 @@ addonAfter: import("vue-types").VueTypeValidableDef<any>; | ||
hidden: boolean; | ||
visible: boolean; | ||
disabled: boolean; | ||
@@ -205,0 +217,0 @@ value: string | number; |
@@ -50,2 +50,7 @@ "use strict"; | ||
}, | ||
visible: { | ||
type: Boolean, | ||
default: undefined | ||
}, | ||
'onUpdate:visible': Function, | ||
iconRender: Function | ||
@@ -57,3 +62,4 @@ }), | ||
attrs, | ||
expose | ||
expose, | ||
emit | ||
} = _ref; | ||
@@ -69,3 +75,9 @@ const visible = (0, _vue.shallowRef)(false); | ||
visible.value = !visible.value; | ||
emit('update:visible', visible.value); | ||
}; | ||
(0, _vue.watchEffect)(() => { | ||
if (props.visible !== undefined) { | ||
visible.value = !!props.visible; | ||
} | ||
}); | ||
const inputRef = (0, _vue.shallowRef)(); | ||
@@ -72,0 +84,0 @@ const focus = () => { |
@@ -184,9 +184,2 @@ "use strict"; | ||
[`&-sm ${componentCls}, &-sm > ${componentCls}-group-addon`]: (0, _extends2.default)({}, genInputSmallStyle(token)), | ||
// Fix https://github.com/ant-design/ant-design/issues/5754 | ||
[`&-lg ${antCls}-select-single ${antCls}-select-selector`]: { | ||
height: token.controlHeightLG | ||
}, | ||
[`&-sm ${antCls}-select-single ${antCls}-select-selector`]: { | ||
height: token.controlHeightSM | ||
}, | ||
[`> ${componentCls}`]: { | ||
@@ -410,3 +403,34 @@ display: 'table-cell', | ||
} | ||
}) | ||
}), | ||
[`&&-sm ${antCls}-btn`]: { | ||
fontSize: token.fontSizeSM, | ||
height: token.controlHeightSM, | ||
lineHeight: 'normal' | ||
}, | ||
[`&&-lg ${antCls}-btn`]: { | ||
fontSize: token.fontSizeLG, | ||
height: token.controlHeightLG, | ||
lineHeight: 'normal' | ||
}, | ||
// Fix https://github.com/ant-design/ant-design/issues/5754 | ||
[`&&-lg ${antCls}-select-single ${antCls}-select-selector`]: { | ||
height: `${token.controlHeightLG}px`, | ||
[`${antCls}-select-selection-item, ${antCls}-select-selection-placeholder`]: { | ||
// -2 is for the border size & override default | ||
lineHeight: `${token.controlHeightLG - 2}px` | ||
}, | ||
[`${antCls}-select-selection-search-input`]: { | ||
height: `${token.controlHeightLG}px` | ||
} | ||
}, | ||
[`&&-sm ${antCls}-select-single ${antCls}-select-selector`]: { | ||
height: `${token.controlHeightSM}px`, | ||
[`${antCls}-select-selection-item, ${antCls}-select-selection-placeholder`]: { | ||
// -2 is for the border size & override default | ||
lineHeight: `${token.controlHeightSM - 2}px` | ||
}, | ||
[`${antCls}-select-selection-search-input`]: { | ||
height: `${token.controlHeightSM}px` | ||
} | ||
} | ||
}; | ||
@@ -413,0 +437,0 @@ }; |
@@ -43,2 +43,3 @@ "use strict"; | ||
close, | ||
okText, | ||
closable = false, | ||
@@ -92,3 +93,2 @@ zIndex, | ||
const style = attrs.style || {}; | ||
const okText = renderSomeContent(props.okText) || (okCancel ? locale.value.okText : locale.value.justOkText); | ||
const mergedOkCancel = okCancel !== null && okCancel !== void 0 ? okCancel : type === 'confirm'; | ||
@@ -100,2 +100,3 @@ const autoFocusButton = props.autoFocusButton === null ? false : props.autoFocusButton || 'ok'; | ||
}, attrs.class); | ||
const mergedLocal = locale.value; | ||
const cancelButton = mergedOkCancel && (0, _vue.createVNode)(_ActionButton.default, { | ||
@@ -108,3 +109,3 @@ "actionFn": onCancel, | ||
}, { | ||
default: () => [renderSomeContent(props.cancelText) || locale.value.cancelText] | ||
default: () => [renderSomeContent(props.cancelText) || mergedLocal.cancelText] | ||
}); | ||
@@ -159,3 +160,3 @@ return (0, _vue.createVNode)(_Modal.default, { | ||
}, { | ||
default: () => [okText] | ||
default: () => [renderSomeContent(okText) || (mergedOkCancel ? mergedLocal.okText : mergedLocal.justOkText)] | ||
})])])] | ||
@@ -162,0 +163,0 @@ }); |
@@ -21,3 +21,3 @@ "use strict"; | ||
backgroundColor: token.colorBgContainer, | ||
[`${componentCls}-ghost`]: { | ||
[`&${componentCls}-ghost`]: { | ||
backgroundColor: token.pageHeaderGhostBg | ||
@@ -120,3 +120,3 @@ }, | ||
pageHeaderBackColor: token.colorTextBase, | ||
pageHeaderGhostBg: 'inherit', | ||
pageHeaderGhostBg: 'transparent', | ||
pageHeaderHeadingTitle: token.fontSizeHeading4, | ||
@@ -123,0 +123,0 @@ pageHeaderHeadingSubTitle: token.fontSize, |
@@ -337,3 +337,3 @@ "use strict"; | ||
outline: 'none', | ||
transition: `border ${token.motionDurationMid}` | ||
transition: `all ${token.motionDurationMid}` | ||
}, | ||
@@ -340,0 +340,0 @@ [`&:focus-visible ${componentCls}-item-link`]: (0, _extends2.default)({}, (0, _style2.genFocusOutline)(token)), |
@@ -65,2 +65,3 @@ import type { Plugin } from 'vue'; | ||
tabindex?: string | number; | ||
readonly precision?: number; | ||
readonly prefixCls?: string; | ||
@@ -71,3 +72,2 @@ readonly format?: string; | ||
readonly prefix?: import("../_util/type").VueNode; | ||
readonly precision?: number; | ||
readonly decimalSeparator?: string; | ||
@@ -74,0 +74,0 @@ readonly groupSeparator?: string; |
@@ -9,5 +9,5 @@ "use strict"; | ||
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends")); | ||
var _internal = require("../theme/internal"); | ||
var _interface = require("../theme/interface"); | ||
function genPresetColor(token, genCss) { | ||
return _internal.PresetColors.reduce((prev, colorKey) => { | ||
return _interface.PresetColors.reduce((prev, colorKey) => { | ||
const lightColor = token[`${colorKey}-1`]; | ||
@@ -14,0 +14,0 @@ const lightBorderColor = token[`${colorKey}-3`]; |
@@ -9,22 +9,20 @@ "use strict"; | ||
const unitWidth = width / 2; | ||
const ax = unitWidth - outerRadius * (Math.sqrt(2) - 1); | ||
const ax = 0; | ||
const ay = unitWidth; | ||
const bx = unitWidth + outerRadius * (1 - 1 / Math.sqrt(2)); | ||
const bx = outerRadius * 1 / Math.sqrt(2); | ||
const by = unitWidth - outerRadius * (1 - 1 / Math.sqrt(2)); | ||
const cx = 2 * unitWidth - innerRadius * (1 / Math.sqrt(2)); | ||
const cy = innerRadius * (1 / Math.sqrt(2)); | ||
const dx = 4 * unitWidth - cx; | ||
const cx = unitWidth - innerRadius * (1 / Math.sqrt(2)); | ||
const cy = outerRadius * (Math.sqrt(2) - 1) + innerRadius * (1 / Math.sqrt(2)); | ||
const dx = 2 * unitWidth - cx; | ||
const dy = cy; | ||
const ex = 4 * unitWidth - bx; | ||
const ex = 2 * unitWidth - bx; | ||
const ey = by; | ||
const fx = 4 * unitWidth - ax; | ||
const fx = 2 * unitWidth - ax; | ||
const fy = ay; | ||
const shadowWidth = unitWidth * Math.sqrt(2) + outerRadius * (Math.sqrt(2) - 2); | ||
const polygonOffset = outerRadius * (Math.sqrt(2) - 1); | ||
return { | ||
borderRadius: { | ||
_skip_check_: true, | ||
value: `0 0 ${innerRadius}px` | ||
}, | ||
pointerEvents: 'none', | ||
width: width * 2, | ||
height: width * 2, | ||
width, | ||
height: width, | ||
overflow: 'hidden', | ||
@@ -34,4 +32,4 @@ '&::after': { | ||
position: 'absolute', | ||
width: width / Math.sqrt(2), | ||
height: width / Math.sqrt(2), | ||
width: shadowWidth, | ||
height: shadowWidth, | ||
bottom: 0, | ||
@@ -53,6 +51,9 @@ insetInline: 0, | ||
insetInlineStart: 0, | ||
width: width * 2, | ||
width, | ||
height: width / 2, | ||
background: bgColor, | ||
clipPath: `path('M ${ax} ${ay} A ${outerRadius} ${outerRadius} 0 0 0 ${bx} ${by} L ${cx} ${cy} A ${innerRadius} ${innerRadius} 0 0 1 ${dx} ${dy} L ${ex} ${ey} A ${outerRadius} ${outerRadius} 0 0 0 ${fx} ${fy} Z')`, | ||
clipPath: { | ||
_multi_value_: true, | ||
value: [`polygon(${polygonOffset}px 100%, 50% ${polygonOffset}px, ${2 * unitWidth - polygonOffset}px 100%, ${polygonOffset}px 100%)`, `path('M ${ax} ${ay} A ${outerRadius} ${outerRadius} 0 0 0 ${bx} ${by} L ${cx} ${cy} A ${innerRadius} ${innerRadius} 0 0 1 ${dx} ${dy} L ${ex} ${ey} A ${outerRadius} ${outerRadius} 0 0 0 ${fx} ${fy} Z')`] | ||
}, | ||
content: '""' | ||
@@ -59,0 +60,0 @@ } |
@@ -48,4 +48,3 @@ "use strict"; | ||
tableFooterBg, | ||
paddingContentVerticalLG, | ||
wireframe | ||
paddingContentVerticalLG | ||
} = token; | ||
@@ -186,28 +185,2 @@ const tableBorder = `${lineWidth}px ${lineType} ${tableBorderColor}`; | ||
}, | ||
[`${componentCls}:not(${componentCls}-bordered) ${componentCls}-tbody > tr`]: wireframe ? undefined : { | ||
[`&${componentCls}-row:hover, &${componentCls}-row${componentCls}-row-selected`]: { | ||
[`+ tr${componentCls}-row > td`]: { | ||
borderTopColor: 'transparent' | ||
} | ||
}, | ||
[`&${componentCls}-row:last-child:hover > td, | ||
&${componentCls}-row${componentCls}-row-selected:last-child > td`]: { | ||
borderBottomColor: 'transparent' | ||
}, | ||
[` | ||
&${componentCls}-row:hover > td, | ||
> td${componentCls}-cell-row-hover, | ||
&${componentCls}-row${componentCls}-row-selected > td | ||
`]: { | ||
borderTopColor: 'transparent', | ||
'&:first-child': { | ||
borderStartStartRadius: tableRadius, | ||
borderEndStartRadius: tableRadius | ||
}, | ||
'&:last-child': { | ||
borderStartEndRadius: tableRadius, | ||
borderEndEndRadius: tableRadius | ||
} | ||
} | ||
}, | ||
// ============================ Footer ============================ | ||
@@ -214,0 +187,0 @@ [`${componentCls}-footer`]: { |
@@ -93,4 +93,4 @@ "use strict"; | ||
exports.tableProps = tableProps; | ||
const InteralTable = (0, _vue.defineComponent)({ | ||
name: 'InteralTable', | ||
const InternalTable = (0, _vue.defineComponent)({ | ||
name: 'InternalTable', | ||
inheritAttrs: false, | ||
@@ -468,7 +468,7 @@ props: (0, _propsUtil.initDefaultProps)((0, _extends2.default)((0, _extends2.default)({}, tableProps()), { | ||
const columns = props.columns || (0, _util.convertChildrenToColumns)((_a = slots.default) === null || _a === void 0 ? void 0 : _a.call(slots)); | ||
return (0, _vue.createVNode)(InteralTable, (0, _objectSpread2.default)((0, _objectSpread2.default)((0, _objectSpread2.default)({ | ||
return (0, _vue.createVNode)(InternalTable, (0, _objectSpread2.default)((0, _objectSpread2.default)((0, _objectSpread2.default)({ | ||
"ref": table | ||
}, attrs), props), {}, { | ||
"columns": columns || [], | ||
"expandedRowRender": slots.expandedRowRender, | ||
"expandedRowRender": slots.expandedRowRender || props.expandedRowRender, | ||
"contextSlots": (0, _extends2.default)({}, slots) | ||
@@ -475,0 +475,0 @@ }), slots); |
@@ -164,2 +164,3 @@ "use strict"; | ||
} = props; | ||
if (!tabs.length) return null; | ||
const dropdownPrefix = `${prefixCls}-dropdown`; | ||
@@ -166,0 +167,0 @@ const dropdownAriaLabel = locale === null || locale === void 0 ? void 0 : locale.dropdownAriaLabel; |
@@ -746,3 +746,7 @@ "use strict"; | ||
position: 'relative', | ||
width: '100%' | ||
display: 'flex', | ||
width: '100%', | ||
['&-animated']: { | ||
transition: 'margin 0.3s' | ||
} | ||
}, | ||
@@ -756,5 +760,4 @@ [`${componentCls}-content-holder`]: { | ||
outline: 'none', | ||
'&-hidden': { | ||
display: 'none' | ||
} | ||
flex: 'none', | ||
width: '100%' | ||
} | ||
@@ -761,0 +764,0 @@ }), |
@@ -61,3 +61,3 @@ "use strict"; | ||
return wrapSSR((0, _vue.createVNode)("span", (0, _objectSpread2.default)((0, _objectSpread2.default)({}, attrs), {}, { | ||
"class": cls.value, | ||
"class": [cls.value, attrs.class], | ||
"onClick": handleClick | ||
@@ -64,0 +64,0 @@ }), [(_a = slots.default) === null || _a === void 0 ? void 0 : _a.call(slots)])); |
@@ -28,2 +28,6 @@ import type { HTMLAttributes, PropType, ExtractPropTypes, Plugin } from 'vue'; | ||
icon: import("vue-types").VueTypeValidableDef<any>; | ||
bordered: { | ||
type: BooleanConstructor; | ||
default: boolean; | ||
}; | ||
}; | ||
@@ -38,2 +42,3 @@ export type TagProps = HTMLAttributes & Partial<ExtractPropTypes<ReturnType<typeof tagProps>>>; | ||
visible?: boolean; | ||
bordered?: boolean; | ||
closable?: boolean; | ||
@@ -132,4 +137,9 @@ key?: string | number | symbol; | ||
icon: import("vue-types").VueTypeValidableDef<any>; | ||
bordered: { | ||
type: BooleanConstructor; | ||
default: boolean; | ||
}; | ||
}>>, () => import("../_util/type").VueNode, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, { | ||
visible: boolean; | ||
bordered: boolean; | ||
closable: boolean; | ||
@@ -183,2 +193,6 @@ }, {}, string, CustomSlotsType<{ | ||
icon: import("vue-types").VueTypeValidableDef<any>; | ||
bordered: { | ||
type: BooleanConstructor; | ||
default: boolean; | ||
}; | ||
}>> & import("vue").ShallowUnwrapRef<() => import("../_util/type").VueNode> & {} & import("vue").ComponentCustomProperties & {}; | ||
@@ -211,4 +225,9 @@ __isFragment?: never; | ||
icon: import("vue-types").VueTypeValidableDef<any>; | ||
bordered: { | ||
type: BooleanConstructor; | ||
default: boolean; | ||
}; | ||
}>>, () => import("../_util/type").VueNode, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, { | ||
visible: boolean; | ||
bordered: boolean; | ||
closable: boolean; | ||
@@ -215,0 +234,0 @@ }, {}, string, CustomSlotsType<{ |
@@ -46,3 +46,7 @@ "use strict"; | ||
'onUpdate:visible': Function, | ||
icon: _vueTypes.default.any | ||
icon: _vueTypes.default.any, | ||
bordered: { | ||
type: Boolean, | ||
default: true | ||
} | ||
}); | ||
@@ -103,3 +107,4 @@ exports.tagProps = tagProps; | ||
[`${prefixCls.value}-hidden`]: !visible.value, | ||
[`${prefixCls.value}-rtl`]: direction.value === 'rtl' | ||
[`${prefixCls.value}-rtl`]: direction.value === 'rtl', | ||
[`${prefixCls.value}-borderless`]: !props.bordered | ||
})); | ||
@@ -106,0 +111,0 @@ const handleClick = e => { |
@@ -18,3 +18,6 @@ "use strict"; | ||
background: token[`color${capitalizedCssVariableType}Bg`], | ||
borderColor: token[`color${capitalizedCssVariableType}Border`] | ||
borderColor: token[`color${capitalizedCssVariableType}Border`], | ||
[`&${token.componentCls}-borderless`]: { | ||
borderColor: 'transparent' | ||
} | ||
} | ||
@@ -40,2 +43,5 @@ }; | ||
borderColor: darkColor | ||
}, | ||
[`&${token.componentCls}-borderless`]: { | ||
borderColor: 'transparent' | ||
} | ||
@@ -121,3 +127,7 @@ } | ||
} | ||
}) | ||
}), | ||
[`${componentCls}-borderless`]: { | ||
borderColor: 'transparent', | ||
background: token.tagBorderlessBg | ||
} | ||
}; | ||
@@ -144,7 +154,7 @@ }; | ||
tagIconSize: fontSizeIcon - 2 * lineWidth, | ||
tagPaddingHorizontal: 8 // Fixed padding. | ||
tagPaddingHorizontal: 8, | ||
tagBorderlessBg: token.colorFillTertiary | ||
}); | ||
return [genBaseStyle(tagToken), genPresetStyle(tagToken), genTagStatusStyle(tagToken, 'success', 'Success'), genTagStatusStyle(tagToken, 'processing', 'Info'), genTagStatusStyle(tagToken, 'error', 'Error'), genTagStatusStyle(tagToken, 'warning', 'Warning')]; | ||
}); | ||
exports.default = _default; |
@@ -49,2 +49,3 @@ import type { ComponentToken as AlertComponentToken } from '../../alert/style'; | ||
import type { ComponentToken as QRCodeComponentToken } from '../../qrcode/style'; | ||
import type { ComponentToken as AppComponentToken } from '../../app/style'; | ||
import type { ComponentToken as WaveToken } from '../../_util/wave/style'; | ||
@@ -114,3 +115,4 @@ export interface ComponentTokenMap { | ||
QRCode?: QRCodeComponentToken; | ||
App?: AppComponentToken; | ||
Wave?: WaveToken; | ||
} |
@@ -149,6 +149,6 @@ import type { CSSProperties, PropType } from 'vue'; | ||
visible: boolean; | ||
trigger: string | string[]; | ||
align: { | ||
[key: string]: any; | ||
}; | ||
trigger: string | string[]; | ||
prefixCls: string; | ||
@@ -155,0 +155,0 @@ showAction: unknown[]; |
@@ -234,2 +234,4 @@ "use strict"; | ||
usemap, | ||
width, | ||
height, | ||
class: (0, _classNames.default)(`${prefixCls}-img`, { | ||
@@ -239,3 +241,3 @@ [`${prefixCls}-img-placeholder`]: placeholder === true | ||
style: (0, _extends2.default)({ | ||
height | ||
height: toSizePx(height) | ||
}, style) | ||
@@ -242,0 +244,0 @@ }; |
@@ -16,2 +16,4 @@ import type { VNode, PropType } from 'vue'; | ||
right?: VNode; | ||
flipX?: VNode; | ||
flipY?: VNode; | ||
}; | ||
@@ -32,2 +34,4 @@ } | ||
right?: VNode; | ||
flipX?: VNode; | ||
flipY?: VNode; | ||
}>; | ||
@@ -42,2 +46,4 @@ default: () => { | ||
right?: VNode; | ||
flipX?: VNode; | ||
flipY?: VNode; | ||
}; | ||
@@ -132,2 +138,4 @@ }; | ||
right?: VNode; | ||
flipX?: VNode; | ||
flipY?: VNode; | ||
}>; | ||
@@ -142,2 +150,4 @@ default: () => { | ||
right?: VNode; | ||
flipX?: VNode; | ||
flipY?: VNode; | ||
}; | ||
@@ -231,2 +241,4 @@ }; | ||
right?: VNode; | ||
flipX?: VNode; | ||
flipY?: VNode; | ||
}>; | ||
@@ -241,2 +253,4 @@ default: () => { | ||
right?: VNode; | ||
flipX?: VNode; | ||
flipY?: VNode; | ||
}; | ||
@@ -341,4 +355,6 @@ }; | ||
right?: VNode; | ||
flipX?: VNode; | ||
flipY?: VNode; | ||
}; | ||
}, {}>; | ||
export default Preview; |
@@ -55,6 +55,12 @@ "use strict"; | ||
left, | ||
right | ||
right, | ||
flipX, | ||
flipY | ||
} = (0, _vue.reactive)(props.icons); | ||
const scale = (0, _vue.shallowRef)(1); | ||
const rotate = (0, _vue.shallowRef)(0); | ||
const flip = (0, _vue.reactive)({ | ||
x: 1, | ||
y: 1 | ||
}); | ||
const [position, setPosition] = (0, _useFrameSetState.default)(initialPosition); | ||
@@ -93,9 +99,17 @@ const onClose = () => emit('close'); | ||
}; | ||
const onZoomIn = () => { | ||
scale.value++; | ||
const onZoomIn = isWheel => { | ||
if (!isWheel) { | ||
scale.value++; | ||
} else { | ||
scale.value += 0.5; | ||
} | ||
setPosition(initialPosition); | ||
}; | ||
const onZoomOut = () => { | ||
const onZoomOut = isWheel => { | ||
if (scale.value > 1) { | ||
scale.value--; | ||
if (!isWheel) { | ||
scale.value--; | ||
} else { | ||
scale.value -= 0.5; | ||
} | ||
} | ||
@@ -110,2 +124,8 @@ setPosition(initialPosition); | ||
}; | ||
const onFlipX = () => { | ||
flip.x = -flip.x; | ||
}; | ||
const onFlipY = () => { | ||
flip.y = -flip.y; | ||
}; | ||
const onSwitchLeft = event => { | ||
@@ -138,7 +158,7 @@ event.preventDefault(); | ||
icon: zoomIn, | ||
onClick: onZoomIn, | ||
onClick: () => onZoomIn(), | ||
type: 'zoomIn' | ||
}, { | ||
icon: zoomOut, | ||
onClick: onZoomOut, | ||
onClick: () => onZoomOut(), | ||
type: 'zoomOut', | ||
@@ -154,2 +174,10 @@ disabled: (0, _vue.computed)(() => scale.value === 1) | ||
type: 'rotateLeft' | ||
}, { | ||
icon: flipX, | ||
onClick: onFlipX, | ||
type: 'flipX' | ||
}, { | ||
icon: flipY, | ||
onClick: onFlipY, | ||
type: 'flipY' | ||
}]; | ||
@@ -265,5 +293,5 @@ const onMouseUp = () => { | ||
if (wheelDirection > 0) { | ||
onZoomOut(); | ||
onZoomOut(true); | ||
} else if (wheelDirection < 0) { | ||
onZoomIn(); | ||
onZoomIn(true); | ||
} | ||
@@ -327,3 +355,3 @@ }); | ||
"style": { | ||
transform: `scale3d(${scale.value}, ${scale.value}, 1) rotate(${rotate.value}deg)` | ||
transform: `scale3d(${flip.x * scale.value}, ${flip.y * scale.value}, 1) rotate(${rotate.value}deg)` | ||
} | ||
@@ -330,0 +358,0 @@ }, null)]), showLeftOrRightSwitches.value && (0, _vue.createVNode)("div", { |
@@ -63,2 +63,8 @@ import type { PropType, Ref, ComputedRef } from 'vue'; | ||
}>; | ||
flipX?: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, { | ||
[key: string]: any; | ||
}>; | ||
flipY?: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, { | ||
[key: string]: any; | ||
}>; | ||
}>; | ||
@@ -97,2 +103,8 @@ default: () => {}; | ||
}>; | ||
flipX?: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, { | ||
[key: string]: any; | ||
}>; | ||
flipY?: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, { | ||
[key: string]: any; | ||
}>; | ||
}>; | ||
@@ -130,2 +142,8 @@ default: () => {}; | ||
}>; | ||
flipX?: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, { | ||
[key: string]: any; | ||
}>; | ||
flipY?: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, { | ||
[key: string]: any; | ||
}>; | ||
}>; | ||
@@ -132,0 +150,0 @@ default: () => {}; |
@@ -202,2 +202,3 @@ declare namespace _default { | ||
namespace watch { | ||
function autoplay(newValue: any, oldValue: any): void; | ||
function __propsSymbol__(): void; | ||
@@ -204,0 +205,0 @@ } |
@@ -49,2 +49,11 @@ "use strict"; | ||
watch: { | ||
autoplay(newValue, oldValue) { | ||
if (!oldValue && newValue) { | ||
this.handleAutoPlay('playing'); | ||
} else if (newValue) { | ||
this.handleAutoPlay('update'); | ||
} else { | ||
this.pause('paused'); | ||
} | ||
}, | ||
__propsSymbol__() { | ||
@@ -51,0 +60,0 @@ const nextProps = this.$props; |
@@ -166,6 +166,6 @@ import type { CSSProperties, PropType } from 'vue'; | ||
visible: boolean; | ||
trigger: any; | ||
align: { | ||
[key: string]: any; | ||
}; | ||
trigger: any; | ||
prefixCls: string; | ||
@@ -172,0 +172,0 @@ builtinPlacements: { |
@@ -1,1 +0,1 @@ | ||
{"Affix":{"global":["zIndexBase"],"component":{}},"Alert":{"global":["fontSizeHeading3","motionDurationSlow","marginXS","marginSM","fontSize","fontSizeLG","lineHeight","borderRadiusLG","motionEaseInOutCirc","colorText","paddingContentVerticalSM","paddingMD","paddingContentHorizontalLG","fontFamily","colorSuccess","colorSuccessBorder","colorSuccessBg","colorWarning","colorWarningBorder","colorWarningBg","colorError","colorErrorBorder","colorErrorBg","colorInfo","colorInfoBorder","colorInfoBg","lineWidth","lineType","motionDurationMid","fontSizeIcon","colorIcon","colorIconHover"],"component":{}},"Anchor":{"global":["fontSize","fontSizeLG","padding","paddingXXS","motionDurationSlow","lineWidthBold","colorPrimary","lineType","colorSplit","colorText","lineHeight","fontFamily"],"component":{}},"Avatar":{"global":["colorTextLightSolid","controlHeight","controlHeightLG","controlHeightSM","fontSize","fontSizeLG","fontSizeXL","fontSizeHeading3","marginXS","colorBorderBg","colorTextPlaceholder","borderRadius","borderRadiusLG","borderRadiusSM","lineWidth","lineType","colorText","lineHeight","fontFamily"],"component":{}},"Badge":{"global":["fontSize","lineHeight","fontSizeSM","lineWidth","marginXS","colorBorderBg","colorBgContainer","colorError","colorErrorHover","motionDurationSlow","blue-1","blue-3","blue-6","blue-7","purple-1","purple-3","purple-6","purple-7","cyan-1","cyan-3","cyan-6","cyan-7","green-1","green-3","green-6","green-7","magenta-1","magenta-3","magenta-6","magenta-7","pink-1","pink-3","pink-6","pink-7","red-1","red-3","red-6","red-7","orange-1","orange-3","orange-6","orange-7","yellow-1","yellow-3","yellow-6","yellow-7","volcano-1","volcano-3","volcano-6","volcano-7","geekblue-1","geekblue-3","geekblue-6","geekblue-7","lime-1","lime-3","lime-6","lime-7","gold-1","gold-3","gold-6","gold-7","colorText","fontFamily","motionDurationMid","paddingXS","colorSuccess","colorPrimary","colorTextPlaceholder","colorWarning","motionEaseOutBack","borderRadiusSM","colorTextLightSolid"],"component":{}},"Breadcrumb":{"global":["colorTextDescription","fontSize","colorText","marginXS","lineHeight","fontFamily","motionDurationMid","paddingXXS","borderRadiusSM","marginXXS","colorBgTextHover","lineWidthBold","colorPrimaryBorder","fontSizeIcon"],"component":{}},"Button":{"global":["controlTmpOutline","paddingContentHorizontal","lineWidth","lineType","motionDurationMid","motionEaseInOut","lineHeight","colorText","marginXS","lineWidthBold","colorPrimaryBorder","colorPrimaryHover","controlHeightSM","paddingXS","borderRadiusSM","fontSize","opacityLoading","motionDurationSlow","controlHeight","borderRadius","controlHeightLG","fontSizeLG","borderRadiusLG","colorBorder","colorTextDisabled","colorBgContainerDisabled","colorBgContainer","controlOutlineWidth","colorPrimaryActive","colorError","colorErrorHover","colorErrorBorderHover","colorErrorActive","colorTextLightSolid","colorPrimary","controlOutline","colorErrorOutline","colorLink","colorLinkHover","colorLinkActive","colorBgTextHover","colorBgTextActive","colorErrorBg"],"component":{}},"Calendar":{"global":["paddingXXS","controlHeight","fontSize","lineHeight","lineWidth","controlHeightLG","fontSizeLG","lineHeightLG","controlHeightSM","paddingSM","paddingXS","controlPaddingHorizontal","colorPrimaryHover","colorPrimary","colorBgContainer","controlItemBgActive","fontSizeSM","lineHeightSM","marginXS","lineType","borderRadiusLG","colorTextHeading","colorSplit","colorIcon","motionDurationMid","colorIconHover","fontWeightStrong","colorTextDisabled","colorText","motionDurationSlow","colorLink","colorLinkActive","colorLinkHover","borderRadiusSM","colorTextLightSolid","borderRadius","controlItemBgHover","marginXXS","colorBgContainerDisabled","fontFamily","lineWidthBold","screenXS"],"component":{"yearControlWidth":80,"monthControlWidth":70,"miniContentHeight":256}},"Card":{"global":["boxShadowCard","fontSizeLG","lineHeightLG","padding","fontSize","lineHeight","paddingXS","paddingLG","lineWidth","paddingSM","colorBorderSecondary","boxShadow","colorText","fontFamily","colorBgContainer","borderRadiusLG","colorTextHeading","fontWeightStrong","lineType","motionDurationMid","colorTextDescription","colorPrimary","marginXXS","marginXS","colorFillAlter"],"component":{}},"Carousel":{"global":["controlHeightLG","controlHeightSM","marginXXS","colorText","fontSize","lineHeight","fontFamily","motionDurationSlow","colorBgContainer"],"component":{"dotWidth":16,"dotHeight":3,"dotWidthActive":24}},"Cascader":{"global":["controlHeight","fontSize","lineHeight","controlInteractiveSize","colorText","fontFamily","marginXS","lineWidthBold","colorPrimaryBorder","colorBgContainer","lineWidth","lineType","colorBorder","borderRadiusSM","motionDurationSlow","colorWhite","motionDurationFast","motionEaseInBack","paddingXS","fontSizeLG","colorPrimary","colorPrimaryHover","motionDurationMid","motionEaseOutBack","colorBgContainerDisabled","colorTextDisabled","paddingXXS","colorSplit","paddingSM","controlItemBgHover","fontWeightStrong","controlItemBgActive","colorTextDescription","fontSizeIcon","colorHighlight"],"component":{"controlWidth":184,"controlItemWidth":111,"dropdownHeight":180}},"Checkbox":{"global":["controlInteractiveSize","colorText","fontSize","lineHeight","fontFamily","marginXS","lineWidthBold","colorPrimaryBorder","colorBgContainer","lineWidth","lineType","colorBorder","borderRadiusSM","motionDurationSlow","colorWhite","motionDurationFast","motionEaseInBack","paddingXS","fontSizeLG","colorPrimary","colorPrimaryHover","motionDurationMid","motionEaseOutBack","colorBgContainerDisabled","colorTextDisabled"],"component":{}},"Collapse":{"global":["colorBgContainer","colorFillAlter","paddingSM","padding","borderRadiusLG","lineWidth","lineType","colorBorder","colorText","colorTextHeading","colorTextDisabled","fontSize","lineHeight","marginSM","motionDurationSlow","fontSizeIcon","fontFamily","paddingXXS","motionDurationMid","motionEaseInOut"],"component":{}},"Comment":{"global":["paddingMD","fontSize","fontSizeSM","colorTextTertiary","colorTextPlaceholder","colorTextSecondary","marginSM","marginXXS","paddingXS","motionDurationSlow"],"component":{}},"DatePicker":{"global":["zIndexPopupBase","paddingXXS","controlHeight","fontSize","lineHeight","lineWidth","controlHeightLG","fontSizeLG","lineHeightLG","controlHeightSM","paddingSM","paddingXS","controlPaddingHorizontal","colorPrimaryHover","colorPrimary","boxShadowPopoverArrow","colorBgContainer","lineType","colorBorder","borderRadius","motionDurationMid","colorBgContainerDisabled","colorTextDisabled","colorTextPlaceholder","marginXS","colorTextDescription","lineWidthBold","motionDurationSlow","controlItemBgActive","colorPrimaryBorder","sizePopupArrow","borderRadiusXS","borderRadiusOuter","colorBgElevated","borderRadiusLG","boxShadowSecondary","borderRadiusSM","colorSplit","controlItemBgHover","colorText","fontFamily","controlOutlineWidth","controlOutline","controlPaddingHorizontalSM","colorTextHeading","colorIcon","colorIconHover","fontWeightStrong","colorLink","colorLinkActive","colorLinkHover","colorTextLightSolid","marginXXS","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc","colorError","colorErrorOutline","colorWarning","colorWarningOutline"],"component":{"presetsWidth":120,"presetsMaxWidth":200,"zIndexPopup":1050}},"Descriptions":{"global":["colorFillAlter","fontSizeSM","lineHeightSM","colorText","paddingXS","padding","paddingLG","paddingSM","marginXS","marginXXS","fontSize","lineHeight","fontFamily","lineWidth","lineType","colorSplit","fontWeightStrong","fontSizeLG","lineHeightLG","borderRadiusLG"],"component":{}},"Divider":{"global":["marginXS","margin","marginLG","colorSplit","lineWidth","colorText","fontSize","lineHeight","fontFamily","colorTextHeading","fontSizeLG"],"component":{"sizePaddingEdgeHorizontal":0}},"Drawer":{"global":["zIndexPopupBase","paddingXS","padding","colorBgMask","colorBgElevated","motionDurationSlow","motionDurationMid","paddingLG","fontSizeLG","lineHeightLG","lineWidth","lineType","colorSplit","marginSM","colorIcon","colorIconHover","colorText","fontWeightStrong","boxShadowDrawerLeft","boxShadowDrawerRight","boxShadowDrawerUp","boxShadowDrawerDown"],"component":{"zIndexPopup":1000}},"Dropdown":{"global":["zIndexPopupBase","marginXXS","sizePopupArrow","controlHeight","fontSize","lineHeight","paddingXXS","borderRadiusOuter","borderRadiusLG","motionDurationMid","colorTextDisabled","fontSizeIcon","controlPaddingHorizontal","colorBgElevated","boxShadowPopoverArrow","colorText","fontFamily","borderRadiusXS","boxShadowSecondary","lineWidthBold","colorPrimaryBorder","colorTextDescription","borderRadiusSM","marginXS","fontSizeSM","controlItemBgHover","colorPrimary","controlItemBgActive","controlItemBgActiveHover","colorSplit","paddingXS","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc","opacityLoading","colorError","colorTextLightSolid"],"component":{"zIndexPopup":1050}},"Empty":{"global":["controlHeightLG","margin","marginXS","marginXL","fontSize","lineHeight","opacityImage","colorTextDisabled"],"component":{}},"FloatButton":{"global":["colorTextLightSolid","colorBgElevated","controlHeightLG","marginXXL","marginLG","fontSize","fontSizeIcon","controlItemBgHover","margin","borderRadiusLG","colorText","lineHeight","fontFamily","lineWidth","lineType","colorSplit","boxShadowSecondary","paddingXXS","motionDurationMid","borderRadiusSM","colorFillContent","fontSizeLG","fontSizeSM","colorPrimary","colorPrimaryHover","motionDurationSlow","motionEaseInOutCirc"],"component":{}},"Form":{"global":["colorText","fontSize","lineHeight","fontFamily","marginLG","colorTextDescription","fontSizeLG","lineWidth","lineType","colorBorder","controlOutlineWidth","controlOutline","paddingSM","controlHeightSM","controlHeightLG","colorError","colorWarning","controlHeight","colorTextHeading","marginXXS","marginXS","motionDurationMid","motionEaseOut","motionEaseOutBack","colorSuccess","colorPrimary","motionDurationSlow","motionEaseInOut","margin","paddingXS","screenXSMax","screenSMMax","screenMDMax","screenLGMax"],"component":{}},"Grid":{"global":[],"component":{}},"Image":{"global":["zIndexPopupBase","colorTextLightSolid","fontSizeIcon","controlHeightLG","colorBgContainerDisabled","motionDurationSlow","paddingXXS","marginXXS","motionEaseOut","paddingSM","colorText","fontSize","lineHeight","fontFamily","marginSM","colorBgMask","motionDurationMid","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"zIndexPopup":1080,"previewOperationColor":"rgb(255, 255, 255)","previewOperationColorDisabled":"rgba(255, 255, 255, 0.25)","previewOperationSize":18}},"InputNumber":{"global":["controlHeightSM","lineWidth","fontSize","paddingXXS","controlHeight","lineHeight","controlHeightLG","fontSizeLG","lineHeightLG","paddingSM","paddingXS","controlPaddingHorizontal","colorPrimaryHover","lineType","colorBorder","borderRadius","colorError","colorTextDescription","motionDurationMid","colorPrimary","colorBgContainer","colorTextDisabled","borderRadiusSM","borderRadiusLG","colorText","fontFamily","colorTextPlaceholder","controlOutlineWidth","controlOutline","colorBgContainerDisabled","motionDurationSlow","controlPaddingHorizontalSM","colorWarning","colorErrorOutline","colorWarningOutline","colorErrorBorderHover","colorWarningBorderHover","colorFillAlter"],"component":{"controlWidth":90,"handleWidth":22,"handleFontSize":7,"handleVisible":"auto"}},"Input":{"global":["paddingXXS","controlHeight","fontSize","lineHeight","lineWidth","controlHeightLG","fontSizeLG","lineHeightLG","controlHeightSM","paddingSM","paddingXS","controlPaddingHorizontal","colorPrimaryHover","colorText","fontFamily","colorBgContainer","lineType","colorBorder","borderRadius","motionDurationMid","colorTextPlaceholder","controlOutlineWidth","controlOutline","colorTextDisabled","colorBgContainerDisabled","motionDurationSlow","borderRadiusLG","controlPaddingHorizontalSM","borderRadiusSM","colorError","colorWarning","colorErrorOutline","colorWarningOutline","colorErrorBorderHover","colorWarningBorderHover","paddingLG","colorTextDescription","colorIcon","colorIconHover","colorTextQuaternary","fontSizeIcon","colorTextTertiary","colorSuccess","colorFillAlter","colorPrimary","colorPrimaryActive"],"component":{}},"Layout":{"global":["colorBgLayout","colorText","controlHeightSM","controlHeight","controlHeightLG","marginXXS","colorTextLightSolid","motionDurationMid","motionDurationSlow","fontSize","borderRadius","fontSizeXL","colorBgContainer"],"component":{"colorBgHeader":"#001529","colorBgBody":"#f5f5f5","colorBgTrigger":"#002140"}},"List":{"global":["controlHeightLG","paddingContentVertical","paddingContentHorizontalLG","paddingContentVerticalSM","paddingContentHorizontal","paddingContentVerticalLG","controlHeight","paddingSM","marginLG","padding","colorPrimary","paddingXS","margin","colorText","colorTextDescription","motionDurationSlow","lineWidth","fontSize","lineHeight","fontFamily","marginXXS","marginXXL","colorSplit","fontSizeSM","colorTextDisabled","fontSizeLG","lineHeightLG","lineType","paddingLG","borderRadiusLG","colorBorder","screenSM","screenMD","marginSM"],"component":{"contentWidth":220}},"Mentions":{"global":["zIndexPopupBase","paddingXXS","controlHeight","fontSize","lineHeight","lineWidth","controlHeightLG","fontSizeLG","lineHeightLG","controlHeightSM","paddingSM","paddingXS","controlPaddingHorizontal","colorPrimaryHover","colorTextDisabled","controlItemBgHover","colorText","motionDurationSlow","colorBgElevated","borderRadiusLG","boxShadowSecondary","fontFamily","colorBgContainer","lineType","colorBorder","borderRadius","motionDurationMid","colorTextPlaceholder","controlOutlineWidth","controlOutline","colorBgContainerDisabled","controlPaddingHorizontalSM","borderRadiusSM","colorError","colorWarning","colorErrorOutline","colorWarningOutline","colorErrorBorderHover","colorWarningBorderHover","fontWeightStrong"],"component":{"dropdownHeight":250,"controlItemWidth":100,"zIndexPopup":1050}},"Menu":{"global":["colorPrimary","colorError","colorTextDisabled","colorErrorBg","colorText","colorTextDescription","colorBgContainer","colorFillAlter","colorFillContent","lineWidth","lineWidthBold","controlItemBgActive","colorBgTextHover","zIndexPopupBase","borderRadiusLG","borderRadiusSM","marginXXS","colorBgElevated","colorErrorHover","colorTextLightSolid","controlHeightLG","fontSize","margin","motionDurationSlow","motionDurationMid","motionEaseInOut","lineHeight","paddingXS","padding","colorSplit","lineType","fontFamily","motionEaseOut","controlHeightSM","borderRadius","paddingXL","fontSizeSM","fontSizeLG","boxShadowSecondary","marginXS","colorPrimaryBorder","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"dropdownWidth":160,"zIndexPopup":1050,"radiusItem":8,"radiusSubMenuItem":4,"colorItemText":"rgba(0, 0, 0, 0.88)","colorItemTextHover":"rgba(0, 0, 0, 0.88)","colorItemTextHoverHorizontal":"#1677ff","colorGroupTitle":"rgba(0, 0, 0, 0.45)","colorItemTextSelected":"#1677ff","colorItemTextSelectedHorizontal":"#1677ff","colorItemBg":"#ffffff","colorItemBgHover":"rgba(0, 0, 0, 0.06)","colorItemBgActive":"rgba(0, 0, 0, 0.06)","colorSubItemBg":"rgba(0, 0, 0, 0.02)","colorItemBgSelected":"#e6f4ff","colorItemBgSelectedHorizontal":"transparent","colorActiveBarWidth":0,"colorActiveBarHeight":2,"colorActiveBarBorderSize":1,"colorItemTextDisabled":"rgba(0, 0, 0, 0.25)","colorDangerItemText":"#ff4d4f","colorDangerItemTextHover":"#ff4d4f","colorDangerItemTextSelected":"#ff4d4f","colorDangerItemBgActive":"#fff2f0","colorDangerItemBgSelected":"#fff2f0","itemMarginInline":4}},"Message":{"global":["zIndexPopupBase","controlHeightLG","fontSize","lineHeight","paddingSM","boxShadowSecondary","colorBgElevated","colorSuccess","colorError","colorWarning","colorInfo","fontSizeLG","motionEaseInOutCirc","motionDurationSlow","marginXS","paddingXS","borderRadiusLG","colorText","fontFamily"],"component":{"height":150,"zIndexPopup":1010}},"Modal":{"global":["padding","fontSizeHeading5","lineHeightHeading5","paddingLG","colorBgElevated","lineWidth","lineType","colorSplit","colorTextHeading","colorTextDescription","paddingXS","fontSizeLG","colorIconHover","fontSize","lineHeight","controlHeightLG","zIndexPopupBase","screenSMMax","marginXS","colorText","fontFamily","margin","fontWeightStrong","borderRadiusLG","boxShadowSecondary","paddingMD","paddingContentHorizontalLG","borderRadiusSM","motionDurationMid","wireframe","lineWidthBold","colorPrimaryBorder","marginSM","colorError","colorWarning","colorInfo","colorSuccess","motionDurationSlow","colorBgMask","marginLG","motionEaseOutCirc","motionEaseInOutCirc"],"component":{}},"Notification":{"global":["zIndexPopupBase","paddingMD","paddingLG","colorBgElevated","paddingContentHorizontalLG","margin","marginLG","fontSizeLG","lineHeightLG","controlHeightLG","boxShadowSecondary","borderRadiusLG","colorSuccess","colorInfo","colorWarning","colorError","colorTextHeading","motionDurationMid","motionEaseInOut","fontSize","lineHeight","colorText","fontFamily","marginXS","marginSM","colorIcon","borderRadiusSM","colorIconHover","wireframe"],"component":{"zIndexPopup":1050,"width":384}},"PageHeader":{"global":["paddingLG","paddingMD","paddingSM","colorTextBase","fontSizeHeading4","fontSize","fontSizeLG","colorText","lineHeight","fontFamily","colorBgContainer","marginMD","colorLink","motionDurationSlow","colorLinkHover","colorLinkActive","marginSM","marginXS","colorTextHeading","controlHeight","colorTextDescription","paddingXS"],"component":{}},"Pagination":{"global":["controlHeight","fontFamily","colorBgContainer","fontWeightStrong","controlHeightSM","controlItemBgActiveDisabled","colorTextDisabled","marginXXS","controlHeightLG","marginSM","paddingXXS","fontSize","lineHeight","lineWidth","fontSizeLG","lineHeightLG","paddingSM","paddingXS","controlPaddingHorizontal","colorPrimaryHover","colorText","marginXS","lineType","borderRadius","motionDurationMid","colorBgTextHover","colorBgTextActive","lineWidthBold","colorPrimaryBorder","colorPrimary","fontSizeSM","margin","colorBorder","colorTextPlaceholder","controlOutlineWidth","controlOutline","colorBgContainerDisabled","motionDurationSlow","borderRadiusLG","controlPaddingHorizontalSM","borderRadiusSM","screenLG","screenSM","wireframe"],"component":{}},"Popconfirm":{"global":["zIndexPopupBase","colorText","colorWarning","marginXS","fontSize","fontWeightStrong","lineHeight"],"component":{"zIndexPopup":1060}},"Popover":{"global":["zIndexPopupBase","colorBgElevated","colorText","wireframe","fontWeightStrong","boxShadowSecondary","colorTextHeading","borderRadiusLG","marginXS","fontSize","lineHeight","fontFamily","sizePopupArrow","marginXXS","borderRadiusXS","borderRadiusOuter","boxShadowPopoverArrow","blue-6","purple-6","cyan-6","green-6","magenta-6","pink-6","red-6","orange-6","yellow-6","volcano-6","geekblue-6","lime-6","gold-6","lineWidth","lineType","colorSplit","paddingSM","controlHeight","padding","motionDurationMid","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"zIndexPopup":1030,"width":177}},"Progress":{"global":["marginXXS","colorText","colorInfo","colorFillSecondary","fontSize","lineHeight","fontFamily","marginXS","paddingXS","motionDurationSlow","motionEaseInOutCirc","colorSuccess","colorBgContainer","motionEaseOutQuint","colorError","fontSizeSM"],"component":{}},"QRCode":{"global":["colorText","fontSize","lineHeight","fontFamily","paddingSM","colorWhite","borderRadiusLG","lineWidth","lineType","colorSplit","marginXS","controlHeight"],"component":{}},"Radio":{"global":["padding","lineWidth","controlItemBgActiveDisabled","colorTextDisabled","colorBgContainer","fontSizeLG","controlOutline","colorPrimaryHover","colorPrimaryActive","colorText","colorPrimary","marginXS","controlOutlineWidth","colorTextLightSolid","wireframe","fontSize","lineHeight","fontFamily","motionDurationSlow","motionDurationMid","motionEaseInOut","motionEaseInOutCirc","colorBorder","colorBgContainerDisabled","paddingXS","lineType","colorWhite","lineWidthBold","colorPrimaryBorder","controlHeight","controlHeightLG","controlHeightSM","borderRadius","borderRadiusSM","borderRadiusLG"],"component":{}},"Rate":{"global":["colorFillContent","yellow-6","controlHeightLG","colorText","fontSize","lineHeight","fontFamily","marginXS","motionDurationMid","lineWidth"],"component":{}},"Result":{"global":["paddingLG","fontSizeHeading3","fontSize","colorInfo","colorError","colorSuccess","colorWarning","lineHeightHeading3","padding","paddingXL","paddingXS","marginXS","lineHeight","colorTextHeading","colorTextDescription","colorFillAlter"],"component":{"imageWidth":250,"imageHeight":295}},"Segmented":{"global":["lineWidthBold","lineWidth","colorTextLabel","colorText","colorFillSecondary","colorBgLayout","colorBgElevated","controlPaddingHorizontal","controlPaddingHorizontalSM","fontSize","lineHeight","fontFamily","borderRadius","motionDurationMid","motionEaseInOut","borderRadiusSM","boxShadow","controlHeight","marginSM","paddingXXS","borderRadiusLG","controlHeightLG","fontSizeLG","controlHeightSM","borderRadiusXS","colorTextDisabled","motionDurationSlow"],"component":{}},"Select":{"global":["zIndexPopupBase","paddingSM","colorText","fontSize","lineHeight","fontFamily","colorBgContainer","lineWidth","lineType","colorBorder","motionDurationMid","motionEaseInOut","colorTextDisabled","colorBgContainerDisabled","colorTextPlaceholder","fontSizeIcon","colorTextQuaternary","motionDurationSlow","colorTextTertiary","paddingXXS","controlPaddingHorizontalSM","borderRadius","controlHeight","controlHeightSM","borderRadiusSM","controlHeightLG","fontSizeLG","borderRadiusLG","controlHeightXS","borderRadiusXS","controlPaddingHorizontal","colorFillSecondary","colorSplit","paddingXS","colorIcon","colorIconHover","colorBgElevated","boxShadowSecondary","colorTextDescription","fontSizeSM","controlItemBgHover","fontWeightStrong","controlItemBgActive","colorPrimary","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc","colorPrimaryHover","controlOutline","controlOutlineWidth","colorErrorHover","colorErrorOutline","colorWarningHover","colorWarningOutline"],"component":{"zIndexPopup":1050}},"Skeleton":{"global":["colorFillContent","colorFill","controlHeight","borderRadiusSM","marginLG","marginXXS","controlHeightLG","controlHeightSM","padding","marginSM","controlHeightXS"],"component":{"color":"rgba(0, 0, 0, 0.06)","colorGradientEnd":"rgba(0, 0, 0, 0.15)"}},"Slider":{"global":["controlHeightLG","controlHeightSM","lineWidth","controlHeight","colorFillContentHover","colorText","fontSize","lineHeight","fontFamily","colorFillTertiary","borderRadiusXS","motionDurationMid","colorPrimaryBorder","colorFillSecondary","colorPrimaryBorderHover","colorPrimary","colorBgElevated","colorTextDescription","colorBorderSecondary","motionDurationSlow","colorTextDisabled","colorBgContainer"],"component":{"controlSize":10,"railSize":4,"handleSize":10,"handleSizeHover":12,"dotSize":8,"handleLineWidth":2,"handleLineWidthHover":4}},"Space":{"global":[],"component":{}},"Spin":{"global":["colorTextDescription","controlHeightLG","controlHeight","colorText","fontSize","lineHeight","fontFamily","colorPrimary","motionDurationSlow","motionEaseInOutCirc","colorBgContainer","marginXXS"],"component":{"contentHeight":400}},"Statistic":{"global":["fontSizeHeading3","fontSize","fontFamily","marginXXS","padding","colorTextDescription","colorTextHeading","colorText","lineHeight"],"component":{}},"Steps":{"global":["wireframe","colorTextDisabled","fontSizeHeading3","fontSize","controlHeight","controlHeightLG","colorTextLightSolid","colorText","colorPrimary","colorTextLabel","colorTextDescription","colorTextQuaternary","colorFillContent","controlItemBgActive","colorError","colorBgContainer","colorBorderSecondary","colorSplit","lineHeight","fontFamily","motionDurationSlow","marginXS","lineWidth","lineType","paddingXXS","padding","fontSizeLG","fontWeightStrong","fontSizeSM","paddingSM","margin","marginXXS","paddingLG","marginSM","paddingXS","controlHeightSM","fontSizeIcon","lineWidthBold","marginLG","borderRadiusSM","motionDurationMid","controlItemBgHover","lineHeightSM","colorBorderBg"],"component":{"descriptionWidth":140}},"Switch":{"global":["fontSize","lineHeight","controlHeight","motionDurationMid","colorPrimary","opacityLoading","colorBgContainer","fontSizeIcon","colorText","fontFamily","colorTextQuaternary","colorTextTertiary","lineWidthBold","colorPrimaryBorder","colorPrimaryHover","colorTextLightSolid","fontSizeSM","colorWhite","marginXXS"],"component":{}},"Table":{"global":["controlItemBgActive","controlItemBgActiveHover","colorTextPlaceholder","colorTextHeading","colorSplit","colorBorderSecondary","fontSize","padding","paddingXS","paddingSM","controlHeight","colorFillAlter","colorIcon","colorIconHover","opacityLoading","colorBgContainer","borderRadiusLG","colorFillContent","colorFillSecondary","controlInteractiveSize","fontWeightStrong","lineWidth","lineType","motionDurationMid","paddingContentVerticalLG","wireframe","colorText","lineHeight","fontFamily","margin","marginXXS","fontSizeIcon","motionDurationSlow","colorPrimary","paddingXXS","fontSizeSM","borderRadius","colorTextDescription","colorTextDisabled","controlItemBgHover","boxShadowSecondary","colorLink","colorLinkHover","colorLinkActive"],"component":{}},"Tabs":{"global":["zIndexPopupBase","controlHeightLG","colorPrimaryHover","colorPrimaryActive","fontSize","lineHeight","lineWidth","padding","marginXXS","colorFillAlter","paddingXXS","paddingXS","fontSizeLG","borderRadius","marginSM","marginXS","margin","colorSplit","lineType","lineWidthBold","motionDurationSlow","controlHeight","boxShadowTabsOverflowLeft","boxShadowTabsOverflowRight","paddingLG","boxShadowTabsOverflowTop","boxShadowTabsOverflowBottom","colorBorder","colorText","fontFamily","colorBgContainer","borderRadiusLG","boxShadowSecondary","paddingSM","colorTextDescription","fontSizeSM","controlItemBgHover","colorTextDisabled","motionEaseInOut","colorPrimary","colorPrimaryBorder","colorTextHeading","motionDurationMid","motionEaseOutQuint","motionEaseInQuint"],"component":{"zIndexPopup":1050}},"Tag":{"global":["fontSize","lineHeight","lineWidth","fontSizeIcon","fontSizeSM","colorFillAlter","colorText","paddingXXS","fontFamily","marginXS","lineType","colorBorder","borderRadiusSM","motionDurationMid","colorTextDescription","colorTextHeading","colorTextLightSolid","colorPrimary","colorFillSecondary","colorPrimaryHover","colorPrimaryActive","blue-1","blue-3","blue-6","blue-7","purple-1","purple-3","purple-6","purple-7","cyan-1","cyan-3","cyan-6","cyan-7","green-1","green-3","green-6","green-7","magenta-1","magenta-3","magenta-6","magenta-7","pink-1","pink-3","pink-6","pink-7","red-1","red-3","red-6","red-7","orange-1","orange-3","orange-6","orange-7","yellow-1","yellow-3","yellow-6","yellow-7","volcano-1","volcano-3","volcano-6","volcano-7","geekblue-1","geekblue-3","geekblue-6","geekblue-7","lime-1","lime-3","lime-6","lime-7","gold-1","gold-3","gold-6","gold-7","colorSuccess","colorSuccessBg","colorSuccessBorder","colorInfo","colorInfoBg","colorInfoBorder","colorError","colorErrorBg","colorErrorBorder","colorWarning","colorWarningBg","colorWarningBorder"],"component":{}},"Timeline":{"global":["padding","paddingXXS","lineWidthBold","wireframe","colorText","fontSize","lineHeight","fontFamily","lineType","colorSplit","fontSizeSM","colorBgContainer","colorPrimary","colorError","colorSuccess","colorTextDisabled","lineWidth","margin","controlHeightLG","marginXXS","marginSM","marginXS"],"component":{}},"Tooltip":{"global":["zIndexPopupBase","colorBgSpotlight","borderRadius","colorTextLightSolid","borderRadiusOuter","controlHeight","boxShadowSecondary","paddingSM","paddingXS","colorText","fontSize","lineHeight","fontFamily","blue-1","blue-3","blue-6","blue-7","purple-1","purple-3","purple-6","purple-7","cyan-1","cyan-3","cyan-6","cyan-7","green-1","green-3","green-6","green-7","magenta-1","magenta-3","magenta-6","magenta-7","pink-1","pink-3","pink-6","pink-7","red-1","red-3","red-6","red-7","orange-1","orange-3","orange-6","orange-7","yellow-1","yellow-3","yellow-6","yellow-7","volcano-1","volcano-3","volcano-6","volcano-7","geekblue-1","geekblue-3","geekblue-6","geekblue-7","lime-1","lime-3","lime-6","lime-7","gold-1","gold-3","gold-6","gold-7","sizePopupArrow","marginXXS","borderRadiusXS","boxShadowPopoverArrow","motionDurationFast","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"zIndexPopup":1070,"colorBgDefault":"rgba(0, 0, 0, 0.85)"}},"Tour":{"global":["borderRadiusLG","fontSize","lineHeight","zIndexPopupBase","padding","paddingXS","borderRadius","borderRadiusXS","colorPrimary","colorText","colorFill","boxShadowTertiary","colorBgContainer","fontWeightStrong","marginXS","colorTextLightSolid","colorWhite","colorBgTextHover","motionDurationSlow","fontFamily","colorIcon","borderRadiusSM","motionDurationMid","colorIconHover","wireframe","sizePopupArrow","marginXXS","borderRadiusOuter","boxShadowPopoverArrow"],"component":{}},"Transfer":{"global":["fontSize","lineHeight","lineWidth","controlHeightLG","controlHeight","marginXS","marginXXS","fontSizeIcon","colorText","fontFamily","colorBgContainerDisabled","colorBorder","colorSplit","controlItemBgActive","controlItemBgActiveHover","colorTextDisabled","paddingSM","lineType","motionDurationSlow","borderRadiusLG","colorBgContainer","colorLinkHover","controlItemBgHover","paddingXS","margin","colorError","colorWarning"],"component":{"listWidth":180,"listHeight":200,"listWidthLG":250}},"TreeSelect":{"global":["colorBgElevated","paddingXS","controlHeightSM","fontSizeLG","colorText","fontSize","lineHeight","fontFamily","borderRadius","motionDurationSlow","lineWidthBold","colorPrimaryBorder","colorPrimary","colorTextDisabled","colorBorder","motionDurationMid","controlItemBgHover","controlItemBgActive","colorTextLightSolid","controlInteractiveSize","marginXS","colorBgContainer","lineWidth","lineType","borderRadiusSM","colorWhite","motionDurationFast","motionEaseInBack","colorPrimaryHover","motionEaseOutBack","colorBgContainerDisabled"],"component":{}},"Tree":{"global":["controlInteractiveSize","colorText","fontSize","lineHeight","fontFamily","marginXS","lineWidthBold","colorPrimaryBorder","colorBgContainer","lineWidth","lineType","colorBorder","borderRadiusSM","motionDurationSlow","colorWhite","motionDurationFast","motionEaseInBack","paddingXS","fontSizeLG","colorPrimary","colorPrimaryHover","motionDurationMid","motionEaseOutBack","colorBgContainerDisabled","colorTextDisabled","controlHeightSM","borderRadius","controlItemBgHover","controlItemBgActive","colorTextLightSolid","motionEaseInOut"],"component":{}},"Typography":{"global":["colorText","lineHeight","colorTextDescription","colorSuccess","colorWarning","colorError","colorErrorActive","colorErrorHover","colorTextDisabled","fontSizeHeading1","lineHeightHeading1","colorTextHeading","fontWeightStrong","fontSizeHeading2","lineHeightHeading2","fontSizeHeading3","lineHeightHeading3","fontSizeHeading4","lineHeightHeading4","fontSizeHeading5","lineHeightHeading5","colorLink","motionDurationSlow","colorLinkHover","colorLinkActive","linkDecoration","linkHoverDecoration","marginXXS","paddingXXS","controlHeight","fontSize","lineWidth","controlHeightLG","fontSizeLG","lineHeightLG","controlHeightSM","paddingSM","paddingXS","controlPaddingHorizontal","colorPrimaryHover","marginXS"],"component":{"sizeMarginHeadingVerticalStart":"1.2em","sizeMarginHeadingVerticalEnd":"0.5em"}},"Upload":{"global":["fontSizeHeading3","fontSize","lineHeight","lineWidth","controlHeightLG","colorTextDisabled","colorText","fontFamily","colorFillAlter","colorBorder","borderRadiusLG","motionDurationSlow","padding","colorPrimaryHover","margin","colorPrimary","marginXXS","colorTextHeading","fontSizeLG","colorTextDescription","paddingXS","lineType","paddingSM","fontSizeHeading2","colorError","colorErrorBg","colorTextLightSolid","marginXS","colorBgMask","marginXL","controlItemBgHover","motionEaseInOutCirc","motionDurationMid","motionEaseInOut"],"component":{}}} | ||
{"Affix":{"global":["zIndexBase"],"component":{}},"Alert":{"global":["fontSizeHeading3","motionDurationSlow","marginXS","marginSM","fontSize","fontSizeLG","lineHeight","borderRadiusLG","motionEaseInOutCirc","colorText","paddingContentVerticalSM","paddingMD","paddingContentHorizontalLG","fontFamily","colorSuccess","colorSuccessBorder","colorSuccessBg","colorWarning","colorWarningBorder","colorWarningBg","colorError","colorErrorBorder","colorErrorBg","colorInfo","colorInfoBorder","colorInfoBg","lineWidth","lineType","motionDurationMid","fontSizeIcon","colorIcon","colorIconHover"],"component":{}},"Anchor":{"global":["fontSize","fontSizeLG","padding","paddingXXS","motionDurationSlow","lineWidthBold","colorPrimary","lineType","colorSplit","colorText","lineHeight","fontFamily"],"component":{}},"App":{"global":["colorText","fontSize","lineHeight","fontFamily"],"component":{}},"Avatar":{"global":["controlHeight","controlHeightLG","controlHeightSM","fontSize","fontSizeLG","fontSizeXL","fontSizeHeading3","marginXS","marginXXS","colorBorderBg","colorTextLightSolid","colorTextPlaceholder","borderRadius","borderRadiusLG","borderRadiusSM","lineWidth","lineType","colorText","lineHeight","fontFamily"],"component":{"containerSize":32,"containerSizeLG":40,"containerSizeSM":24,"textFontSize":18,"textFontSizeLG":24,"textFontSizeSM":14,"groupSpace":4,"groupOverlapping":-8,"groupBorderColor":"#ffffff"}},"Badge":{"global":["fontSize","lineHeight","fontSizeSM","lineWidth","marginXS","colorBorderBg","colorBgContainer","colorError","colorErrorHover","motionDurationSlow","blue-1","blue-3","blue-6","blue-7","purple-1","purple-3","purple-6","purple-7","cyan-1","cyan-3","cyan-6","cyan-7","green-1","green-3","green-6","green-7","magenta-1","magenta-3","magenta-6","magenta-7","pink-1","pink-3","pink-6","pink-7","red-1","red-3","red-6","red-7","orange-1","orange-3","orange-6","orange-7","yellow-1","yellow-3","yellow-6","yellow-7","volcano-1","volcano-3","volcano-6","volcano-7","geekblue-1","geekblue-3","geekblue-6","geekblue-7","lime-1","lime-3","lime-6","lime-7","gold-1","gold-3","gold-6","gold-7","colorText","fontFamily","motionDurationMid","paddingXS","colorSuccess","colorPrimary","colorTextPlaceholder","colorWarning","motionEaseOutBack","borderRadiusSM","colorTextLightSolid"],"component":{}},"Breadcrumb":{"global":["colorTextDescription","fontSize","colorText","marginXS","lineHeight","fontFamily","motionDurationMid","paddingXXS","borderRadiusSM","marginXXS","colorBgTextHover","lineWidthBold","colorPrimaryBorder","fontSizeIcon"],"component":{}},"Button":{"global":["controlTmpOutline","paddingContentHorizontal","lineWidth","lineType","motionDurationMid","motionEaseInOut","lineHeight","colorText","marginXS","lineWidthBold","colorPrimaryBorder","colorPrimaryHover","controlHeightSM","paddingXS","borderRadiusSM","fontSize","opacityLoading","motionDurationSlow","controlHeight","borderRadius","controlHeightLG","fontSizeLG","borderRadiusLG","colorBorder","colorTextDisabled","colorBgContainerDisabled","colorBgContainer","controlOutlineWidth","colorPrimaryActive","colorError","colorErrorHover","colorErrorBorderHover","colorErrorActive","colorTextLightSolid","colorPrimary","controlOutline","colorErrorOutline","colorLink","colorLinkHover","colorLinkActive","colorBgTextHover","colorBgTextActive","colorErrorBg"],"component":{}},"Calendar":{"global":["paddingXXS","controlHeight","fontSize","lineHeight","lineWidth","controlHeightLG","fontSizeLG","lineHeightLG","controlHeightSM","paddingSM","paddingXS","controlPaddingHorizontal","colorPrimaryHover","colorPrimary","colorBgContainer","controlItemBgActive","fontSizeSM","lineHeightSM","marginXS","lineType","borderRadiusLG","colorTextHeading","colorSplit","colorIcon","motionDurationMid","colorIconHover","fontWeightStrong","colorTextDisabled","colorText","motionDurationSlow","colorLink","colorLinkActive","colorLinkHover","borderRadiusSM","colorTextLightSolid","borderRadius","controlItemBgHover","marginXXS","colorBgContainerDisabled","fontFamily","lineWidthBold","screenXS"],"component":{"yearControlWidth":80,"monthControlWidth":70,"miniContentHeight":256}},"Card":{"global":["boxShadowCard","fontSizeLG","lineHeightLG","padding","fontSize","lineHeight","paddingXS","paddingLG","lineWidth","paddingSM","colorBorderSecondary","boxShadow","colorText","fontFamily","colorBgContainer","borderRadiusLG","colorTextHeading","fontWeightStrong","lineType","motionDurationMid","colorTextDescription","colorPrimary","marginXXS","marginXS","colorFillAlter"],"component":{}},"Carousel":{"global":["controlHeightLG","controlHeightSM","marginXXS","colorText","fontSize","lineHeight","fontFamily","motionDurationSlow","colorBgContainer"],"component":{"dotWidth":16,"dotHeight":3,"dotWidthActive":24}},"Cascader":{"global":["controlHeight","fontSize","lineHeight","controlInteractiveSize","colorText","fontFamily","marginXS","lineWidthBold","colorPrimaryBorder","colorBgContainer","lineWidth","lineType","colorBorder","borderRadiusSM","motionDurationSlow","colorWhite","motionDurationFast","motionEaseInBack","paddingXS","fontSizeLG","colorPrimary","colorPrimaryHover","motionDurationMid","motionEaseOutBack","colorBgContainerDisabled","colorTextDisabled","paddingXXS","colorSplit","paddingSM","controlItemBgHover","fontWeightStrong","controlItemBgActive","colorTextDescription","fontSizeIcon","colorHighlight"],"component":{"controlWidth":184,"controlItemWidth":111,"dropdownHeight":180}},"Checkbox":{"global":["controlInteractiveSize","colorText","fontSize","lineHeight","fontFamily","marginXS","lineWidthBold","colorPrimaryBorder","colorBgContainer","lineWidth","lineType","colorBorder","borderRadiusSM","motionDurationSlow","colorWhite","motionDurationFast","motionEaseInBack","paddingXS","fontSizeLG","colorPrimary","colorPrimaryHover","motionDurationMid","motionEaseOutBack","colorBgContainerDisabled","colorTextDisabled"],"component":{}},"Collapse":{"global":["colorBgContainer","colorFillAlter","paddingSM","padding","borderRadiusLG","lineWidth","lineType","colorBorder","colorText","colorTextHeading","colorTextDisabled","fontSize","lineHeight","marginSM","motionDurationSlow","fontSizeIcon","fontFamily","paddingXXS","motionDurationMid","motionEaseInOut"],"component":{}},"Comment":{"global":["paddingMD","fontSize","fontSizeSM","colorTextTertiary","colorTextPlaceholder","colorTextSecondary","marginSM","marginXXS","paddingXS","motionDurationSlow"],"component":{}},"DatePicker":{"global":["zIndexPopupBase","paddingXXS","controlHeight","fontSize","lineHeight","lineWidth","controlHeightLG","fontSizeLG","lineHeightLG","controlHeightSM","paddingSM","paddingXS","controlPaddingHorizontal","colorPrimaryHover","colorPrimary","boxShadowPopoverArrow","colorBgContainer","lineType","colorBorder","borderRadius","motionDurationMid","colorBgContainerDisabled","colorTextDisabled","colorTextPlaceholder","marginXS","colorTextDescription","lineWidthBold","motionDurationSlow","controlItemBgActive","colorPrimaryBorder","sizePopupArrow","borderRadiusXS","borderRadiusOuter","colorBgElevated","borderRadiusLG","boxShadowSecondary","borderRadiusSM","colorSplit","controlItemBgHover","colorText","fontFamily","controlOutlineWidth","controlOutline","controlPaddingHorizontalSM","colorTextHeading","colorIcon","colorIconHover","fontWeightStrong","colorLink","colorLinkActive","colorLinkHover","colorTextLightSolid","marginXXS","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc","colorError","colorErrorOutline","colorWarning","colorWarningOutline"],"component":{"presetsWidth":120,"presetsMaxWidth":200,"zIndexPopup":1050}},"Descriptions":{"global":["colorFillAlter","fontSizeSM","lineHeightSM","colorText","paddingXS","padding","paddingLG","paddingSM","marginXS","marginXXS","fontSize","lineHeight","fontFamily","lineWidth","lineType","colorSplit","fontWeightStrong","fontSizeLG","lineHeightLG","borderRadiusLG"],"component":{}},"Divider":{"global":["marginXS","margin","marginLG","colorSplit","lineWidth","colorText","fontSize","lineHeight","fontFamily","colorTextHeading","fontSizeLG"],"component":{"sizePaddingEdgeHorizontal":0}},"Drawer":{"global":["zIndexPopupBase","paddingXS","padding","colorBgMask","colorBgElevated","motionDurationSlow","motionDurationMid","paddingLG","fontSizeLG","lineHeightLG","lineWidth","lineType","colorSplit","marginSM","colorIcon","colorIconHover","colorText","fontWeightStrong","boxShadowDrawerLeft","boxShadowDrawerRight","boxShadowDrawerUp","boxShadowDrawerDown"],"component":{"zIndexPopup":1000}},"Dropdown":{"global":["zIndexPopupBase","marginXXS","sizePopupArrow","controlHeight","fontSize","lineHeight","paddingXXS","borderRadiusOuter","borderRadiusLG","motionDurationMid","colorTextDisabled","fontSizeIcon","controlPaddingHorizontal","colorBgElevated","boxShadowPopoverArrow","colorText","fontFamily","borderRadiusXS","boxShadowSecondary","lineWidthBold","colorPrimaryBorder","colorTextDescription","borderRadiusSM","marginXS","fontSizeSM","controlItemBgHover","colorPrimary","controlItemBgActive","controlItemBgActiveHover","colorSplit","paddingXS","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc","opacityLoading","colorError","colorTextLightSolid"],"component":{"zIndexPopup":1050}},"Empty":{"global":["controlHeightLG","margin","marginXS","marginXL","fontSize","lineHeight","opacityImage","colorTextDisabled"],"component":{}},"FloatButton":{"global":["colorTextLightSolid","colorBgElevated","controlHeightLG","marginXXL","marginLG","fontSize","fontSizeIcon","controlItemBgHover","paddingXXS","borderRadiusLG","margin","borderRadiusSM","colorText","lineHeight","fontFamily","lineWidth","lineType","colorSplit","boxShadowSecondary","motionDurationMid","colorFillContent","fontSizeLG","fontSizeSM","colorPrimary","colorPrimaryHover","motionDurationSlow","motionEaseInOutCirc"],"component":{}},"Form":{"global":["colorText","fontSize","lineHeight","fontFamily","marginLG","colorTextDescription","fontSizeLG","lineWidth","lineType","colorBorder","controlOutlineWidth","controlOutline","paddingSM","controlHeightSM","controlHeightLG","colorError","colorWarning","controlHeight","colorTextHeading","marginXXS","marginXS","motionDurationMid","motionEaseOut","motionEaseOutBack","colorSuccess","colorPrimary","motionDurationSlow","motionEaseInOut","margin","paddingXS","screenXSMax","screenSMMax","screenMDMax","screenLGMax"],"component":{}},"Grid":{"global":[],"component":{}},"Image":{"global":["zIndexPopupBase","colorTextLightSolid","fontSizeIcon","controlHeightLG","colorBgContainerDisabled","motionDurationSlow","paddingXXS","marginXXS","motionEaseOut","paddingSM","colorText","fontSize","lineHeight","fontFamily","marginSM","colorBgMask","motionDurationMid","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"zIndexPopup":1080,"previewOperationColor":"rgb(255, 255, 255)","previewOperationColorDisabled":"rgba(255, 255, 255, 0.25)","previewOperationSize":18}},"InputNumber":{"global":["controlHeightSM","lineWidth","fontSize","paddingXXS","controlHeight","lineHeight","controlHeightLG","fontSizeLG","lineHeightLG","paddingSM","paddingXS","controlPaddingHorizontal","colorPrimaryHover","lineType","colorBorder","borderRadius","colorError","colorTextDescription","motionDurationMid","colorPrimary","colorBgContainer","colorTextDisabled","borderRadiusSM","borderRadiusLG","colorText","fontFamily","colorTextPlaceholder","controlOutlineWidth","controlOutline","colorBgContainerDisabled","motionDurationSlow","controlPaddingHorizontalSM","colorWarning","colorErrorOutline","colorWarningOutline","colorErrorBorderHover","colorWarningBorderHover","colorFillAlter","fontSizeSM"],"component":{"controlWidth":90,"handleWidth":22,"handleFontSize":7,"handleVisible":"auto"}},"Input":{"global":["paddingXXS","controlHeight","fontSize","lineHeight","lineWidth","controlHeightLG","fontSizeLG","lineHeightLG","controlHeightSM","paddingSM","paddingXS","controlPaddingHorizontal","colorPrimaryHover","colorText","fontFamily","colorBgContainer","lineType","colorBorder","borderRadius","motionDurationMid","colorTextPlaceholder","controlOutlineWidth","controlOutline","colorTextDisabled","colorBgContainerDisabled","motionDurationSlow","borderRadiusLG","controlPaddingHorizontalSM","borderRadiusSM","colorError","colorWarning","colorErrorOutline","colorWarningOutline","colorErrorBorderHover","colorWarningBorderHover","paddingLG","colorTextDescription","colorIcon","colorIconHover","colorTextQuaternary","fontSizeIcon","colorTextTertiary","colorSuccess","colorFillAlter","colorPrimary","fontSizeSM","colorPrimaryActive"],"component":{}},"Layout":{"global":["colorBgLayout","colorText","controlHeightSM","controlHeight","controlHeightLG","marginXXS","colorTextLightSolid","motionDurationMid","motionDurationSlow","fontSize","borderRadius","fontSizeXL","colorBgContainer"],"component":{"colorBgHeader":"#001529","colorBgBody":"#f5f5f5","colorBgTrigger":"#002140"}},"List":{"global":["controlHeightLG","paddingContentVertical","paddingContentHorizontalLG","paddingContentVerticalSM","paddingContentHorizontal","paddingContentVerticalLG","controlHeight","paddingSM","marginLG","padding","colorPrimary","paddingXS","margin","colorText","colorTextDescription","motionDurationSlow","lineWidth","fontSize","lineHeight","fontFamily","marginXXS","marginXXL","colorSplit","fontSizeSM","colorTextDisabled","fontSizeLG","lineHeightLG","lineType","paddingLG","borderRadiusLG","colorBorder","screenSM","screenMD","marginSM"],"component":{"contentWidth":220}},"Mentions":{"global":["zIndexPopupBase","paddingXXS","controlHeight","fontSize","lineHeight","lineWidth","controlHeightLG","fontSizeLG","lineHeightLG","controlHeightSM","paddingSM","paddingXS","controlPaddingHorizontal","colorPrimaryHover","colorTextDisabled","controlItemBgHover","colorText","motionDurationSlow","colorBgElevated","borderRadiusLG","boxShadowSecondary","fontFamily","colorBgContainer","lineType","colorBorder","borderRadius","motionDurationMid","colorTextPlaceholder","controlOutlineWidth","controlOutline","colorBgContainerDisabled","controlPaddingHorizontalSM","borderRadiusSM","colorError","colorWarning","colorErrorOutline","colorWarningOutline","colorErrorBorderHover","colorWarningBorderHover","fontWeightStrong"],"component":{"dropdownHeight":250,"controlItemWidth":100,"zIndexPopup":1050}},"Menu":{"global":["colorPrimary","colorError","colorTextDisabled","colorErrorBg","colorText","colorTextDescription","colorBgContainer","colorFillAlter","colorFillContent","lineWidth","lineWidthBold","controlItemBgActive","colorBgTextHover","zIndexPopupBase","borderRadiusLG","borderRadiusSM","marginXXS","colorBgElevated","colorErrorHover","colorTextLightSolid","controlHeightLG","fontSize","margin","motionDurationSlow","motionDurationMid","motionEaseInOut","lineHeight","paddingXS","padding","colorSplit","lineType","fontFamily","motionEaseOut","controlHeightSM","borderRadius","paddingXL","fontSizeSM","fontSizeLG","boxShadowSecondary","marginXS","colorPrimaryBorder","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"dropdownWidth":160,"zIndexPopup":1050,"radiusItem":8,"radiusSubMenuItem":4,"colorItemText":"rgba(0, 0, 0, 0.88)","colorItemTextHover":"rgba(0, 0, 0, 0.88)","colorItemTextHoverHorizontal":"#1677ff","colorGroupTitle":"rgba(0, 0, 0, 0.45)","colorItemTextSelected":"#1677ff","colorItemTextSelectedHorizontal":"#1677ff","colorItemBg":"#ffffff","colorItemBgHover":"rgba(0, 0, 0, 0.06)","colorItemBgActive":"rgba(0, 0, 0, 0.06)","colorSubItemBg":"rgba(0, 0, 0, 0.02)","colorItemBgSelected":"#e6f4ff","colorItemBgSelectedHorizontal":"transparent","colorActiveBarWidth":0,"colorActiveBarHeight":2,"colorActiveBarBorderSize":1,"colorItemTextDisabled":"rgba(0, 0, 0, 0.25)","colorDangerItemText":"#ff4d4f","colorDangerItemTextHover":"#ff4d4f","colorDangerItemTextSelected":"#ff4d4f","colorDangerItemBgActive":"#fff2f0","colorDangerItemBgSelected":"#fff2f0","itemMarginInline":4}},"Message":{"global":["zIndexPopupBase","controlHeightLG","fontSize","lineHeight","paddingSM","boxShadowSecondary","colorBgElevated","colorSuccess","colorError","colorWarning","colorInfo","fontSizeLG","motionEaseInOutCirc","motionDurationSlow","marginXS","paddingXS","borderRadiusLG","colorText","fontFamily"],"component":{"height":150,"zIndexPopup":1010}},"Modal":{"global":["padding","fontSizeHeading5","lineHeightHeading5","paddingLG","colorBgElevated","lineWidth","lineType","colorSplit","colorTextHeading","colorTextDescription","paddingXS","fontSizeLG","colorIconHover","fontSize","lineHeight","controlHeightLG","zIndexPopupBase","screenSMMax","marginXS","colorText","fontFamily","margin","fontWeightStrong","borderRadiusLG","boxShadowSecondary","paddingMD","paddingContentHorizontalLG","borderRadiusSM","motionDurationMid","wireframe","lineWidthBold","colorPrimaryBorder","marginSM","colorError","colorWarning","colorInfo","colorSuccess","motionDurationSlow","colorBgMask","marginLG","motionEaseOutCirc","motionEaseInOutCirc"],"component":{}},"Notification":{"global":["zIndexPopupBase","paddingMD","paddingLG","colorBgElevated","paddingContentHorizontalLG","margin","marginLG","fontSizeLG","lineHeightLG","controlHeightLG","boxShadowSecondary","borderRadiusLG","colorSuccess","colorInfo","colorWarning","colorError","colorTextHeading","motionDurationMid","motionEaseInOut","fontSize","lineHeight","colorText","fontFamily","marginXS","marginSM","colorIcon","borderRadiusSM","colorIconHover","wireframe"],"component":{"zIndexPopup":1050,"width":384}},"PageHeader":{"global":["paddingLG","paddingMD","paddingSM","colorTextBase","fontSizeHeading4","fontSize","fontSizeLG","colorText","lineHeight","fontFamily","colorBgContainer","marginMD","colorLink","motionDurationSlow","colorLinkHover","colorLinkActive","marginSM","marginXS","colorTextHeading","controlHeight","colorTextDescription","paddingXS"],"component":{}},"Pagination":{"global":["controlHeight","fontFamily","colorBgContainer","fontWeightStrong","controlHeightSM","controlItemBgActiveDisabled","colorTextDisabled","marginXXS","controlHeightLG","marginSM","paddingXXS","fontSize","lineHeight","lineWidth","fontSizeLG","lineHeightLG","paddingSM","paddingXS","controlPaddingHorizontal","colorPrimaryHover","colorText","marginXS","lineType","borderRadius","motionDurationMid","colorBgTextHover","colorBgTextActive","lineWidthBold","colorPrimaryBorder","colorPrimary","fontSizeSM","margin","colorBorder","colorTextPlaceholder","controlOutlineWidth","controlOutline","colorBgContainerDisabled","motionDurationSlow","borderRadiusLG","controlPaddingHorizontalSM","borderRadiusSM","screenLG","screenSM","wireframe"],"component":{}},"Popconfirm":{"global":["zIndexPopupBase","colorText","colorWarning","marginXS","fontSize","fontWeightStrong","lineHeight"],"component":{"zIndexPopup":1060}},"Popover":{"global":["zIndexPopupBase","colorBgElevated","colorText","wireframe","fontWeightStrong","boxShadowSecondary","colorTextHeading","borderRadiusLG","marginXS","fontSize","lineHeight","fontFamily","sizePopupArrow","marginXXS","borderRadiusXS","borderRadiusOuter","boxShadowPopoverArrow","blue-6","purple-6","cyan-6","green-6","magenta-6","pink-6","red-6","orange-6","yellow-6","volcano-6","geekblue-6","lime-6","gold-6","lineWidth","lineType","colorSplit","paddingSM","controlHeight","padding","motionDurationMid","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"zIndexPopup":1030,"width":177}},"Progress":{"global":["marginXXS","colorText","colorInfo","colorFillSecondary","fontSize","lineHeight","fontFamily","marginXS","paddingXS","motionDurationSlow","motionEaseInOutCirc","colorSuccess","colorBgContainer","motionEaseOutQuint","colorError","fontSizeSM"],"component":{}},"QRCode":{"global":["colorText","fontSize","lineHeight","fontFamily","paddingSM","colorWhite","borderRadiusLG","lineWidth","lineType","colorSplit","marginXS","controlHeight"],"component":{}},"Radio":{"global":["padding","lineWidth","controlItemBgActiveDisabled","colorTextDisabled","colorBgContainer","fontSizeLG","controlOutline","colorPrimaryHover","colorPrimaryActive","colorText","colorPrimary","marginXS","controlOutlineWidth","colorTextLightSolid","wireframe","fontSize","lineHeight","fontFamily","motionDurationSlow","motionDurationMid","motionEaseInOut","motionEaseInOutCirc","colorBorder","colorBgContainerDisabled","paddingXS","lineType","colorWhite","lineWidthBold","colorPrimaryBorder","controlHeight","controlHeightLG","controlHeightSM","borderRadius","borderRadiusSM","borderRadiusLG"],"component":{}},"Rate":{"global":["colorFillContent","yellow-6","controlHeightLG","colorText","fontSize","lineHeight","fontFamily","marginXS","motionDurationMid","lineWidth"],"component":{}},"Result":{"global":["paddingLG","fontSizeHeading3","fontSize","colorInfo","colorError","colorSuccess","colorWarning","lineHeightHeading3","padding","paddingXL","paddingXS","marginXS","lineHeight","colorTextHeading","colorTextDescription","colorFillAlter"],"component":{"imageWidth":250,"imageHeight":295}},"Segmented":{"global":["lineWidthBold","lineWidth","colorTextLabel","colorText","colorFillSecondary","colorBgLayout","colorBgElevated","controlPaddingHorizontal","controlPaddingHorizontalSM","fontSize","lineHeight","fontFamily","borderRadius","motionDurationMid","motionEaseInOut","borderRadiusSM","boxShadow","controlHeight","marginSM","paddingXXS","borderRadiusLG","controlHeightLG","fontSizeLG","controlHeightSM","borderRadiusXS","colorTextDisabled","motionDurationSlow"],"component":{}},"Select":{"global":["zIndexPopupBase","paddingSM","colorText","fontSize","lineHeight","fontFamily","colorBgContainer","lineWidth","lineType","colorBorder","motionDurationMid","motionEaseInOut","colorTextDisabled","colorBgContainerDisabled","colorTextPlaceholder","fontSizeIcon","colorTextQuaternary","motionDurationSlow","colorTextTertiary","paddingXXS","controlPaddingHorizontalSM","borderRadius","controlHeight","controlHeightSM","borderRadiusSM","controlHeightLG","fontSizeLG","borderRadiusLG","controlHeightXS","borderRadiusXS","controlPaddingHorizontal","colorFillSecondary","colorSplit","paddingXS","colorIcon","colorIconHover","colorBgElevated","boxShadowSecondary","colorTextDescription","fontSizeSM","controlItemBgHover","fontWeightStrong","controlItemBgActive","colorPrimary","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc","colorPrimaryHover","controlOutline","controlOutlineWidth","colorErrorHover","colorErrorOutline","colorWarningHover","colorWarningOutline"],"component":{"zIndexPopup":1050}},"Skeleton":{"global":["colorFillContent","colorFill","controlHeight","borderRadiusSM","marginLG","marginXXS","controlHeightLG","controlHeightSM","padding","marginSM","controlHeightXS"],"component":{"color":"rgba(0, 0, 0, 0.06)","colorGradientEnd":"rgba(0, 0, 0, 0.15)"}},"Slider":{"global":["controlHeightLG","controlHeightSM","lineWidth","controlHeight","colorFillContentHover","colorText","fontSize","lineHeight","fontFamily","colorFillTertiary","borderRadiusXS","motionDurationMid","colorPrimaryBorder","colorFillSecondary","colorPrimaryBorderHover","colorPrimary","colorBgElevated","colorTextDescription","colorBorderSecondary","motionDurationSlow","colorTextDisabled","colorBgContainer"],"component":{"controlSize":10,"railSize":4,"handleSize":10,"handleSizeHover":12,"dotSize":8,"handleLineWidth":2,"handleLineWidthHover":4}},"Space":{"global":[],"component":{}},"Spin":{"global":["colorTextDescription","controlHeightLG","controlHeight","colorText","fontSize","lineHeight","fontFamily","colorPrimary","motionDurationSlow","motionEaseInOutCirc","colorBgContainer","marginXXS"],"component":{"contentHeight":400}},"Statistic":{"global":["fontSizeHeading3","fontSize","fontFamily","marginXXS","padding","colorTextDescription","colorTextHeading","colorText","lineHeight"],"component":{}},"Steps":{"global":["wireframe","colorTextDisabled","fontSizeHeading3","fontSize","controlHeight","controlHeightLG","colorTextLightSolid","colorText","colorPrimary","colorTextLabel","colorTextDescription","colorTextQuaternary","colorFillContent","controlItemBgActive","colorError","colorBgContainer","colorBorderSecondary","colorSplit","lineHeight","fontFamily","motionDurationSlow","marginXS","lineWidth","lineType","paddingXXS","padding","fontSizeLG","fontWeightStrong","fontSizeSM","paddingSM","margin","marginXXS","paddingLG","marginSM","paddingXS","controlHeightSM","fontSizeIcon","lineWidthBold","marginLG","borderRadiusSM","motionDurationMid","controlItemBgHover","lineHeightSM","colorBorderBg"],"component":{"descriptionWidth":140}},"Switch":{"global":["fontSize","lineHeight","controlHeight","motionDurationMid","colorPrimary","opacityLoading","colorBgContainer","fontSizeIcon","colorText","fontFamily","colorTextQuaternary","colorTextTertiary","lineWidthBold","colorPrimaryBorder","colorPrimaryHover","colorTextLightSolid","fontSizeSM","colorWhite","marginXXS"],"component":{}},"Table":{"global":["controlItemBgActive","controlItemBgActiveHover","colorTextPlaceholder","colorTextHeading","colorSplit","colorBorderSecondary","fontSize","padding","paddingXS","paddingSM","controlHeight","colorFillAlter","colorIcon","colorIconHover","opacityLoading","colorBgContainer","borderRadiusLG","colorFillContent","colorFillSecondary","controlInteractiveSize","fontWeightStrong","lineWidth","lineType","motionDurationMid","paddingContentVerticalLG","colorText","lineHeight","fontFamily","margin","marginXXS","fontSizeIcon","motionDurationSlow","colorPrimary","paddingXXS","fontSizeSM","borderRadius","colorTextDescription","colorTextDisabled","controlItemBgHover","boxShadowSecondary","colorLink","colorLinkHover","colorLinkActive"],"component":{}},"Tabs":{"global":["zIndexPopupBase","controlHeightLG","colorPrimaryHover","colorPrimaryActive","fontSize","lineHeight","lineWidth","padding","marginXXS","colorFillAlter","paddingXXS","paddingXS","fontSizeLG","borderRadius","marginSM","marginXS","margin","colorSplit","lineType","lineWidthBold","motionDurationSlow","controlHeight","boxShadowTabsOverflowLeft","boxShadowTabsOverflowRight","paddingLG","boxShadowTabsOverflowTop","boxShadowTabsOverflowBottom","colorBorder","colorText","fontFamily","colorBgContainer","borderRadiusLG","boxShadowSecondary","paddingSM","colorTextDescription","fontSizeSM","controlItemBgHover","colorTextDisabled","motionEaseInOut","colorPrimary","colorPrimaryBorder","colorTextHeading","motionDurationMid","motionEaseOutQuint","motionEaseInQuint"],"component":{"zIndexPopup":1050}},"Tag":{"global":["fontSize","lineHeight","lineWidth","fontSizeIcon","fontSizeSM","colorFillAlter","colorText","colorFillTertiary","paddingXXS","fontFamily","marginXS","lineType","colorBorder","borderRadiusSM","motionDurationMid","colorTextDescription","colorTextHeading","colorTextLightSolid","colorPrimary","colorFillSecondary","colorPrimaryHover","colorPrimaryActive","blue-1","blue-3","blue-6","blue-7","purple-1","purple-3","purple-6","purple-7","cyan-1","cyan-3","cyan-6","cyan-7","green-1","green-3","green-6","green-7","magenta-1","magenta-3","magenta-6","magenta-7","pink-1","pink-3","pink-6","pink-7","red-1","red-3","red-6","red-7","orange-1","orange-3","orange-6","orange-7","yellow-1","yellow-3","yellow-6","yellow-7","volcano-1","volcano-3","volcano-6","volcano-7","geekblue-1","geekblue-3","geekblue-6","geekblue-7","lime-1","lime-3","lime-6","lime-7","gold-1","gold-3","gold-6","gold-7","colorSuccess","colorSuccessBg","colorSuccessBorder","colorInfo","colorInfoBg","colorInfoBorder","colorError","colorErrorBg","colorErrorBorder","colorWarning","colorWarningBg","colorWarningBorder"],"component":{}},"Timeline":{"global":["padding","paddingXXS","lineWidthBold","wireframe","colorText","fontSize","lineHeight","fontFamily","lineType","colorSplit","fontSizeSM","colorBgContainer","colorPrimary","colorError","colorSuccess","colorTextDisabled","lineWidth","margin","controlHeightLG","marginXXS","marginSM","marginXS"],"component":{}},"Tooltip":{"global":["zIndexPopupBase","colorBgSpotlight","borderRadius","colorTextLightSolid","borderRadiusOuter","controlHeight","boxShadowSecondary","paddingSM","paddingXS","colorText","fontSize","lineHeight","fontFamily","blue-1","blue-3","blue-6","blue-7","purple-1","purple-3","purple-6","purple-7","cyan-1","cyan-3","cyan-6","cyan-7","green-1","green-3","green-6","green-7","magenta-1","magenta-3","magenta-6","magenta-7","pink-1","pink-3","pink-6","pink-7","red-1","red-3","red-6","red-7","orange-1","orange-3","orange-6","orange-7","yellow-1","yellow-3","yellow-6","yellow-7","volcano-1","volcano-3","volcano-6","volcano-7","geekblue-1","geekblue-3","geekblue-6","geekblue-7","lime-1","lime-3","lime-6","lime-7","gold-1","gold-3","gold-6","gold-7","sizePopupArrow","marginXXS","borderRadiusXS","boxShadowPopoverArrow","motionDurationFast","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"zIndexPopup":1070,"colorBgDefault":"rgba(0, 0, 0, 0.85)"}},"Tour":{"global":["borderRadiusLG","fontSize","lineHeight","zIndexPopupBase","padding","paddingXS","borderRadius","borderRadiusXS","colorPrimary","colorText","colorFill","boxShadowTertiary","colorBgContainer","fontWeightStrong","marginXS","colorTextLightSolid","colorWhite","colorBgTextHover","motionDurationSlow","fontFamily","colorIcon","borderRadiusSM","motionDurationMid","colorIconHover","wireframe","sizePopupArrow","marginXXS","borderRadiusOuter","boxShadowPopoverArrow"],"component":{}},"Transfer":{"global":["fontSize","lineHeight","lineWidth","controlHeightLG","controlHeight","marginXS","marginXXS","fontSizeIcon","colorText","fontFamily","colorBgContainerDisabled","colorBorder","colorSplit","controlItemBgActive","controlItemBgActiveHover","colorTextDisabled","paddingSM","lineType","motionDurationSlow","borderRadiusLG","colorBgContainer","colorLinkHover","controlItemBgHover","paddingXS","margin","colorError","colorWarning"],"component":{"listWidth":180,"listHeight":200,"listWidthLG":250}},"TreeSelect":{"global":["colorBgElevated","paddingXS","controlHeightSM","fontSizeLG","colorText","fontSize","lineHeight","fontFamily","borderRadius","motionDurationSlow","lineWidthBold","colorPrimaryBorder","colorPrimary","colorTextDisabled","colorBorder","motionDurationMid","controlItemBgHover","controlItemBgActive","colorTextLightSolid","controlInteractiveSize","marginXS","colorBgContainer","lineWidth","lineType","borderRadiusSM","colorWhite","motionDurationFast","motionEaseInBack","colorPrimaryHover","motionEaseOutBack","colorBgContainerDisabled"],"component":{}},"Tree":{"global":["controlInteractiveSize","colorText","fontSize","lineHeight","fontFamily","marginXS","lineWidthBold","colorPrimaryBorder","colorBgContainer","lineWidth","lineType","colorBorder","borderRadiusSM","motionDurationSlow","colorWhite","motionDurationFast","motionEaseInBack","paddingXS","fontSizeLG","colorPrimary","colorPrimaryHover","motionDurationMid","motionEaseOutBack","colorBgContainerDisabled","colorTextDisabled","controlHeightSM","borderRadius","controlItemBgHover","controlItemBgActive","colorTextLightSolid","motionEaseInOut"],"component":{}},"Typography":{"global":["colorText","lineHeight","colorTextDescription","colorSuccess","colorWarning","colorError","colorErrorActive","colorErrorHover","colorTextDisabled","fontSizeHeading1","lineHeightHeading1","colorTextHeading","fontWeightStrong","fontSizeHeading2","lineHeightHeading2","fontSizeHeading3","lineHeightHeading3","fontSizeHeading4","lineHeightHeading4","fontSizeHeading5","lineHeightHeading5","colorLink","motionDurationSlow","colorLinkHover","colorLinkActive","linkDecoration","linkHoverDecoration","marginXXS","paddingXXS","controlHeight","fontSize","lineWidth","controlHeightLG","fontSizeLG","lineHeightLG","controlHeightSM","paddingSM","paddingXS","controlPaddingHorizontal","colorPrimaryHover","marginXS"],"component":{"sizeMarginHeadingVerticalStart":"1.2em","sizeMarginHeadingVerticalEnd":"0.5em"}},"Upload":{"global":["fontSizeHeading3","fontSize","lineHeight","lineWidth","controlHeightLG","colorTextDisabled","colorText","fontFamily","colorFillAlter","colorBorder","borderRadiusLG","motionDurationSlow","padding","colorPrimaryHover","margin","colorPrimary","marginXXS","colorTextHeading","fontSizeLG","colorTextDescription","paddingXS","lineType","paddingSM","fontSizeHeading2","colorError","colorErrorBg","colorTextLightSolid","marginXS","colorBgMask","marginXL","controlItemBgHover","motionEaseInOutCirc","motionDurationMid","motionEaseInOut"],"component":{}}} |
@@ -1,2 +0,2 @@ | ||
declare const _default: "4.0.0"; | ||
declare const _default: "4.0.1"; | ||
export default _default; |
@@ -7,3 +7,3 @@ "use strict"; | ||
exports.default = void 0; | ||
var _default = '4.0.0'; | ||
var _default = '4.0.1'; | ||
exports.default = _default; |
{ | ||
"name": "ant-design-vue", | ||
"version": "4.0.0", | ||
"version": "4.0.1", | ||
"title": "Ant Design Vue", | ||
@@ -5,0 +5,0 @@ "description": "An enterprise-class UI design language and Vue-based implementation", |
@@ -29,2 +29,8 @@ <p align="center"> | ||
## Getting started & staying tuned with us. | ||
Star us, and you will receive all releases notifications from GitHub without any delay! | ||
![star us](https://user-images.githubusercontent.com/6937879/261937060-e0501ab3-9388-4712-a25d-3f2ba2271865.gif) | ||
## Environment Support | ||
@@ -43,3 +49,3 @@ | ||
**We recommend using npm or yarn to install**,it not only makes development easier,but also allow you to take advantage of the rich ecosystem of Javascript packages and tooling. | ||
**We recommend using npm or yarn to install**, it not only makes development easier, but also allow you to take advantage of the rich ecosystem of Javascript packages and tooling. | ||
@@ -54,3 +60,3 @@ ```bash | ||
If you are in a bad network environment,you can try other registries and tools like [cnpm](https://github.com/cnpm/cnpm). | ||
If you are in a bad network environment, you can try other registries and tools like [cnpm](https://github.com/cnpm/cnpm). | ||
@@ -91,4 +97,12 @@ ## Links | ||
## Contributors | ||
Thank you to all the people who already contributed to ant-design-vue! | ||
<a href="https://github.com/vueComponent/ant-design-vue/graphs/contributors"> | ||
<img src="https://contrib.rocks/image?repo=vueComponent/ant-design-vue&max=100&columns=15" /> | ||
</a> | ||
[![Let's fund issues in this repository](https://issuehunt.io/static/embed/issuehunt-button-v1.svg)](https://issuehunt.io/repos/104172832) | ||
This project is tested with BrowserStack. |
@@ -269,4 +269,6 @@ /* eslint-disable @typescript-eslint/consistent-type-imports */ | ||
AWatermark: typeof import('ant-design-vue')['Watermark']; | ||
AStyleProvider: typeof import('ant-design-vue')['StyleProvider']; | ||
} | ||
} | ||
export {}; |
@@ -50,2 +50,8 @@ { | ||
}, | ||
"a-app": { | ||
"attributes": [ | ||
"message", | ||
"notification" | ||
] | ||
}, | ||
"a-auto-complete": { | ||
@@ -56,2 +62,4 @@ "attributes": [ | ||
"backfill", | ||
"bordered", | ||
"clearIcon", | ||
"default (for customize input element)", | ||
@@ -93,3 +101,4 @@ "defaultActiveFirstOption", | ||
"maxStyle", | ||
"size" | ||
"size", | ||
"shape" | ||
] | ||
@@ -416,3 +425,4 @@ }, | ||
"href", | ||
"target" | ||
"target", | ||
"badge" | ||
] | ||
@@ -537,2 +547,4 @@ }, | ||
"attributes": [ | ||
"visible(v-model)", | ||
"iconRender", | ||
"visibilityToggle" | ||
@@ -1057,2 +1069,26 @@ ] | ||
}, | ||
"a-statistic": { | ||
"attributes": [ | ||
"decimalSeparator", | ||
"formatter", | ||
"groupSeparator", | ||
"precision", | ||
"prefix", | ||
"suffix", | ||
"title", | ||
"value", | ||
"valueStyle" | ||
] | ||
}, | ||
"a-statistic-countdown": { | ||
"attributes": [ | ||
"format", | ||
"prefix", | ||
"suffix", | ||
"title", | ||
"value", | ||
"valueStyle", | ||
"finish" | ||
] | ||
}, | ||
"a-steps": { | ||
@@ -1084,26 +1120,2 @@ "attributes": [ | ||
}, | ||
"a-statistic": { | ||
"attributes": [ | ||
"decimalSeparator", | ||
"formatter", | ||
"groupSeparator", | ||
"precision", | ||
"prefix", | ||
"suffix", | ||
"title", | ||
"value", | ||
"valueStyle" | ||
] | ||
}, | ||
"a-statistic-countdown": { | ||
"attributes": [ | ||
"format", | ||
"prefix", | ||
"suffix", | ||
"title", | ||
"value", | ||
"valueStyle", | ||
"finish" | ||
] | ||
}, | ||
"a-switch": { | ||
@@ -1205,2 +1217,3 @@ "attributes": [ | ||
"icon", | ||
"bordered", | ||
"close" | ||
@@ -1307,2 +1320,24 @@ ] | ||
}, | ||
"a-transfer": { | ||
"attributes": [ | ||
"dataSource", | ||
"disabled", | ||
"filterOption", | ||
"footer", | ||
"listStyle", | ||
"locale", | ||
"oneWay", | ||
"operations", | ||
"operationStyle", | ||
"pagination", | ||
"render", | ||
"selectAllLabels", | ||
"selectedKeys(v-model)", | ||
"showSearch", | ||
"showSelectAll", | ||
"status", | ||
"targetKeys(v-model)", | ||
"titles" | ||
] | ||
}, | ||
"a-tree": { | ||
@@ -1356,24 +1391,2 @@ "attributes": [ | ||
}, | ||
"a-transfer": { | ||
"attributes": [ | ||
"dataSource", | ||
"disabled", | ||
"filterOption", | ||
"footer", | ||
"listStyle", | ||
"locale", | ||
"oneWay", | ||
"operations", | ||
"operationStyle", | ||
"pagination", | ||
"render", | ||
"selectAllLabels", | ||
"selectedKeys(v-model)", | ||
"showSearch", | ||
"showSelectAll", | ||
"status", | ||
"targetKeys(v-model)", | ||
"titles" | ||
] | ||
}, | ||
"a-tree-select": { | ||
@@ -1380,0 +1393,0 @@ "attributes": [] |
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
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
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
58513998
5338
476838
105