feat(components): export multiple components props (#5353)
parent
a2ecd5f48e
commit
120980cb5c
|
@ -41,7 +41,7 @@ export interface AffixState {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Affix
|
// Affix
|
||||||
const affixProps = {
|
export const affixProps = {
|
||||||
/**
|
/**
|
||||||
* 距离窗口顶部达到指定偏移量后触发
|
* 距离窗口顶部达到指定偏移量后触发
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -6,7 +6,7 @@ import classNames from '../_util/classNames';
|
||||||
import useConfigInject from '../_util/hooks/useConfigInject';
|
import useConfigInject from '../_util/hooks/useConfigInject';
|
||||||
import { useInjectAnchor } from './context';
|
import { useInjectAnchor } from './context';
|
||||||
|
|
||||||
const anchorLinkProps = {
|
export const anchorLinkProps = {
|
||||||
prefixCls: PropTypes.string,
|
prefixCls: PropTypes.string,
|
||||||
href: PropTypes.string.def('#'),
|
href: PropTypes.string.def('#'),
|
||||||
title: PropTypes.any,
|
title: PropTypes.any,
|
||||||
|
|
|
@ -13,7 +13,7 @@ function isSelectOptionOrSelectOptGroup(child: any): boolean {
|
||||||
return child?.type?.isSelectOption || child?.type?.isSelectOptGroup;
|
return child?.type?.isSelectOption || child?.type?.isSelectOptGroup;
|
||||||
}
|
}
|
||||||
|
|
||||||
const autoCompleteProps = {
|
export const autoCompleteProps = {
|
||||||
...omit(selectProps(), ['loading', 'mode', 'optionLabelProp', 'labelInValue']),
|
...omit(selectProps(), ['loading', 'mode', 'optionLabelProp', 'labelInValue']),
|
||||||
dataSource: PropTypes.array,
|
dataSource: PropTypes.array,
|
||||||
dropdownMenuStyle: PropTypes.style,
|
dropdownMenuStyle: PropTypes.style,
|
||||||
|
|
|
@ -7,7 +7,7 @@ import { defineComponent, computed } from 'vue';
|
||||||
import PropTypes from '../_util/vue-types';
|
import PropTypes from '../_util/vue-types';
|
||||||
import useConfigInject from '../_util/hooks/useConfigInject';
|
import useConfigInject from '../_util/hooks/useConfigInject';
|
||||||
|
|
||||||
const ribbonProps = {
|
export const ribbonProps = {
|
||||||
prefix: PropTypes.string,
|
prefix: PropTypes.string,
|
||||||
color: { type: String as PropType<LiteralUnion<PresetColorType, string>> },
|
color: { type: String as PropType<LiteralUnion<PresetColorType, string>> },
|
||||||
text: PropTypes.any,
|
text: PropTypes.any,
|
||||||
|
|
|
@ -14,7 +14,7 @@ export interface Route {
|
||||||
children?: Omit<Route, 'children'>[];
|
children?: Omit<Route, 'children'>[];
|
||||||
}
|
}
|
||||||
|
|
||||||
const breadcrumbProps = {
|
export const breadcrumbProps = {
|
||||||
prefixCls: PropTypes.string,
|
prefixCls: PropTypes.string,
|
||||||
routes: { type: Array as PropType<Route[]> },
|
routes: { type: Array as PropType<Route[]> },
|
||||||
params: PropTypes.any,
|
params: PropTypes.any,
|
||||||
|
|
|
@ -6,7 +6,7 @@ import DropDown from '../dropdown/dropdown';
|
||||||
import DownOutlined from '@ant-design/icons-vue/DownOutlined';
|
import DownOutlined from '@ant-design/icons-vue/DownOutlined';
|
||||||
import useConfigInject from '../_util/hooks/useConfigInject';
|
import useConfigInject from '../_util/hooks/useConfigInject';
|
||||||
|
|
||||||
const breadcrumbItemProps = {
|
export const breadcrumbItemProps = {
|
||||||
prefixCls: PropTypes.string,
|
prefixCls: PropTypes.string,
|
||||||
href: PropTypes.string,
|
href: PropTypes.string,
|
||||||
separator: PropTypes.any,
|
separator: PropTypes.any,
|
||||||
|
|
|
@ -4,7 +4,7 @@ import PropTypes from '../_util/vue-types';
|
||||||
import { flattenChildren } from '../_util/props-util';
|
import { flattenChildren } from '../_util/props-util';
|
||||||
import useConfigInject from '../_util/hooks/useConfigInject';
|
import useConfigInject from '../_util/hooks/useConfigInject';
|
||||||
|
|
||||||
const breadcrumbSeparatorProps = {
|
export const breadcrumbSeparatorProps = {
|
||||||
prefixCls: PropTypes.string,
|
prefixCls: PropTypes.string,
|
||||||
};
|
};
|
||||||
export type BreadcrumbSeparatorProps = Partial<ExtractPropTypes<typeof breadcrumbSeparatorProps>>;
|
export type BreadcrumbSeparatorProps = Partial<ExtractPropTypes<typeof breadcrumbSeparatorProps>>;
|
||||||
|
|
|
@ -20,7 +20,7 @@ export function convertLegacyProps(type?: LegacyButtonType): ButtonProps {
|
||||||
return { type };
|
return { type };
|
||||||
}
|
}
|
||||||
|
|
||||||
const buttonProps = () => ({
|
export const buttonProps = () => ({
|
||||||
prefixCls: PropTypes.string,
|
prefixCls: PropTypes.string,
|
||||||
type: PropTypes.oneOf(ButtonTypes),
|
type: PropTypes.oneOf(ButtonTypes),
|
||||||
htmlType: PropTypes.oneOf(ButtonHTMLTypes).def('button'),
|
htmlType: PropTypes.oneOf(ButtonHTMLTypes).def('button'),
|
||||||
|
|
|
@ -23,7 +23,7 @@ export type CardSize = 'default' | 'small';
|
||||||
|
|
||||||
const { TabPane } = Tabs;
|
const { TabPane } = Tabs;
|
||||||
|
|
||||||
const cardProps = () => ({
|
export const cardProps = () => ({
|
||||||
prefixCls: PropTypes.string,
|
prefixCls: PropTypes.string,
|
||||||
title: PropTypes.any,
|
title: PropTypes.any,
|
||||||
extra: PropTypes.any,
|
extra: PropTypes.any,
|
||||||
|
|
|
@ -128,7 +128,7 @@ function getRows(children: VNode[], column: number) {
|
||||||
return rows;
|
return rows;
|
||||||
}
|
}
|
||||||
|
|
||||||
const descriptionsProps = {
|
export const descriptionsProps = {
|
||||||
prefixCls: PropTypes.string,
|
prefixCls: PropTypes.string,
|
||||||
bordered: PropTypes.looseBool,
|
bordered: PropTypes.looseBool,
|
||||||
size: PropTypes.oneOf(tuple('default', 'middle', 'small')).def('default'),
|
size: PropTypes.oneOf(tuple('default', 'middle', 'small')).def('default'),
|
||||||
|
|
|
@ -34,7 +34,7 @@ export interface PushState {
|
||||||
|
|
||||||
const defaultPushState: PushState = { distance: 180 };
|
const defaultPushState: PushState = { distance: 180 };
|
||||||
|
|
||||||
const drawerProps = () => ({
|
export const drawerProps = () => ({
|
||||||
autofocus: PropTypes.looseBool,
|
autofocus: PropTypes.looseBool,
|
||||||
closable: PropTypes.looseBool,
|
closable: PropTypes.looseBool,
|
||||||
closeIcon: PropTypes.any,
|
closeIcon: PropTypes.any,
|
||||||
|
|
|
@ -28,7 +28,7 @@ function parseFlex(flex: FlexType): string {
|
||||||
return flex;
|
return flex;
|
||||||
}
|
}
|
||||||
|
|
||||||
const colProps = () => ({
|
export const colProps = () => ({
|
||||||
span: [String, Number],
|
span: [String, Number],
|
||||||
order: [String, Number],
|
order: [String, Number],
|
||||||
offset: [String, Number],
|
offset: [String, Number],
|
||||||
|
|
|
@ -58,7 +58,7 @@ const getMentions = (value = '', config: MentionsConfig = {}): MentionsEntity[]
|
||||||
.filter((entity): entity is MentionsEntity => !!entity && !!entity.value);
|
.filter((entity): entity is MentionsEntity => !!entity && !!entity.value);
|
||||||
};
|
};
|
||||||
|
|
||||||
const mentionsProps = {
|
export const mentionsProps = {
|
||||||
...baseMentionsProps,
|
...baseMentionsProps,
|
||||||
loading: PropTypes.looseBool,
|
loading: PropTypes.looseBool,
|
||||||
onFocus: {
|
onFocus: {
|
||||||
|
|
|
@ -5,7 +5,7 @@ import PropTypes from '../../_util/vue-types';
|
||||||
import { useInjectMenu } from './hooks/useMenuContext';
|
import { useInjectMenu } from './hooks/useMenuContext';
|
||||||
import { useMeasure } from './hooks/useKeyPath';
|
import { useMeasure } from './hooks/useKeyPath';
|
||||||
|
|
||||||
const menuItemGroupProps = {
|
export const menuItemGroupProps = {
|
||||||
title: PropTypes.any,
|
title: PropTypes.any,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,7 @@ import Overflow from '../../vc-overflow';
|
||||||
import devWarning from '../../vc-util/devWarning';
|
import devWarning from '../../vc-util/devWarning';
|
||||||
|
|
||||||
let indexGuid = 0;
|
let indexGuid = 0;
|
||||||
const menuItemProps = {
|
export const menuItemProps = {
|
||||||
id: String,
|
id: String,
|
||||||
role: String,
|
role: String,
|
||||||
disabled: Boolean,
|
disabled: Boolean,
|
||||||
|
|
|
@ -22,7 +22,7 @@ import isValid from '../../_util/isValid';
|
||||||
|
|
||||||
let indexGuid = 0;
|
let indexGuid = 0;
|
||||||
|
|
||||||
const subMenuProps = {
|
export const subMenuProps = {
|
||||||
icon: PropTypes.any,
|
icon: PropTypes.any,
|
||||||
title: PropTypes.any,
|
title: PropTypes.any,
|
||||||
disabled: Boolean,
|
disabled: Boolean,
|
||||||
|
|
|
@ -7,7 +7,7 @@ import type { StringGradients, ProgressGradient } from './props';
|
||||||
import { progressProps } from './props';
|
import { progressProps } from './props';
|
||||||
import { getSuccessPercent, validProgress } from './utils';
|
import { getSuccessPercent, validProgress } from './utils';
|
||||||
|
|
||||||
const lineProps = {
|
export const lineProps = {
|
||||||
...progressProps(),
|
...progressProps(),
|
||||||
prefixCls: PropTypes.string,
|
prefixCls: PropTypes.string,
|
||||||
direction: {
|
direction: {
|
||||||
|
|
|
@ -5,7 +5,7 @@ import PropTypes from '../_util/vue-types';
|
||||||
import type { ProgressSize } from './props';
|
import type { ProgressSize } from './props';
|
||||||
import { progressProps } from './props';
|
import { progressProps } from './props';
|
||||||
|
|
||||||
const stepsProps = {
|
export const stepsProps = {
|
||||||
...progressProps(),
|
...progressProps(),
|
||||||
steps: PropTypes.number,
|
steps: PropTypes.number,
|
||||||
size: {
|
size: {
|
||||||
|
|
|
@ -22,7 +22,7 @@ export type RadioGroupChildOption = {
|
||||||
disabled?: boolean;
|
disabled?: boolean;
|
||||||
};
|
};
|
||||||
|
|
||||||
const radioGroupProps = {
|
export const radioGroupProps = {
|
||||||
prefixCls: PropTypes.string,
|
prefixCls: PropTypes.string,
|
||||||
value: PropTypes.any,
|
value: PropTypes.any,
|
||||||
size: PropTypes.oneOf(RadioGroupSizeTypes).def('default'),
|
size: PropTypes.oneOf(RadioGroupSizeTypes).def('default'),
|
||||||
|
|
|
@ -14,7 +14,7 @@ const spaceSize = {
|
||||||
middle: 16,
|
middle: 16,
|
||||||
large: 24,
|
large: 24,
|
||||||
};
|
};
|
||||||
const spaceProps = {
|
export const spaceProps = {
|
||||||
prefixCls: PropTypes.string,
|
prefixCls: PropTypes.string,
|
||||||
size: {
|
size: {
|
||||||
type: [String, Number, Array] as PropType<SpaceSize | [SpaceSize, SpaceSize]>,
|
type: [String, Number, Array] as PropType<SpaceSize | [SpaceSize, SpaceSize]>,
|
||||||
|
|
|
@ -13,7 +13,7 @@ import omit from '../_util/omit';
|
||||||
|
|
||||||
export const SwitchSizes = tuple('small', 'default');
|
export const SwitchSizes = tuple('small', 'default');
|
||||||
type CheckedType = boolean | string | number;
|
type CheckedType = boolean | string | number;
|
||||||
const switchProps = {
|
export const switchProps = {
|
||||||
id: PropTypes.string,
|
id: PropTypes.string,
|
||||||
prefixCls: PropTypes.string,
|
prefixCls: PropTypes.string,
|
||||||
size: PropTypes.oneOf(SwitchSizes),
|
size: PropTypes.oneOf(SwitchSizes),
|
||||||
|
|
|
@ -11,7 +11,7 @@ import PropTypes from '../../../_util/vue-types';
|
||||||
import useState from '../../../_util/hooks/useState';
|
import useState from '../../../_util/hooks/useState';
|
||||||
import { EllipsisOutlined } from '@ant-design/icons-vue';
|
import { EllipsisOutlined } from '@ant-design/icons-vue';
|
||||||
|
|
||||||
const operationNodeProps = {
|
export const operationNodeProps = {
|
||||||
prefixCls: { type: String },
|
prefixCls: { type: String },
|
||||||
id: { type: String },
|
id: { type: String },
|
||||||
tabs: { type: Object as PropType<Tab[]> },
|
tabs: { type: Object as PropType<Tab[]> },
|
||||||
|
|
|
@ -30,7 +30,7 @@ import useRefs from '../../../_util/hooks/useRefs';
|
||||||
import pick from 'lodash-es/pick';
|
import pick from 'lodash-es/pick';
|
||||||
|
|
||||||
const DEFAULT_SIZE = { width: 0, height: 0, left: 0, top: 0, right: 0 };
|
const DEFAULT_SIZE = { width: 0, height: 0, left: 0, top: 0, right: 0 };
|
||||||
const tabNavListProps = () => {
|
export const tabNavListProps = () => {
|
||||||
return {
|
return {
|
||||||
id: { type: String },
|
id: { type: String },
|
||||||
tabPosition: { type: String as PropType<TabPosition> },
|
tabPosition: { type: String as PropType<TabPosition> },
|
||||||
|
|
|
@ -13,7 +13,7 @@ import useConfigInject from '../_util/hooks/useConfigInject';
|
||||||
const PresetColorRegex = new RegExp(`^(${PresetColorTypes.join('|')})(-inverse)?$`);
|
const PresetColorRegex = new RegExp(`^(${PresetColorTypes.join('|')})(-inverse)?$`);
|
||||||
const PresetStatusColorRegex = new RegExp(`^(${PresetStatusColorTypes.join('|')})$`);
|
const PresetStatusColorRegex = new RegExp(`^(${PresetStatusColorTypes.join('|')})$`);
|
||||||
|
|
||||||
const tagProps = {
|
export const tagProps = {
|
||||||
prefixCls: PropTypes.string,
|
prefixCls: PropTypes.string,
|
||||||
color: {
|
color: {
|
||||||
type: String as PropType<LiteralUnion<PresetColorType | PresetStatusColorType, string>>,
|
type: String as PropType<LiteralUnion<PresetColorType | PresetStatusColorType, string>>,
|
||||||
|
|
|
@ -19,7 +19,7 @@ export interface TimePickerLocale {
|
||||||
rangePlaceholder?: [string, string];
|
rangePlaceholder?: [string, string];
|
||||||
}
|
}
|
||||||
|
|
||||||
const timePickerProps = {
|
export const timePickerProps = {
|
||||||
format: String,
|
format: String,
|
||||||
showNow: { type: Boolean, default: undefined },
|
showNow: { type: Boolean, default: undefined },
|
||||||
showHour: { type: Boolean, default: undefined },
|
showHour: { type: Boolean, default: undefined },
|
||||||
|
|
|
@ -21,7 +21,7 @@ import { filterEmpty } from '../_util/props-util';
|
||||||
|
|
||||||
export type ExpandAction = false | 'click' | 'doubleclick' | 'dblclick';
|
export type ExpandAction = false | 'click' | 'doubleclick' | 'dblclick';
|
||||||
|
|
||||||
const directoryTreeProps = {
|
export const directoryTreeProps = {
|
||||||
...treeProps(),
|
...treeProps(),
|
||||||
expandAction: { type: [Boolean, String] as PropType<ExpandAction> },
|
expandAction: { type: [Boolean, String] as PropType<ExpandAction> },
|
||||||
};
|
};
|
||||||
|
|
|
@ -30,7 +30,7 @@ export interface AlignProps {
|
||||||
disabled?: boolean;
|
disabled?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
const alignProps = {
|
export const alignProps = {
|
||||||
align: Object as PropType<AlignType>,
|
align: Object as PropType<AlignType>,
|
||||||
target: [Object, Function] as PropType<TargetType>,
|
target: [Object, Function] as PropType<TargetType>,
|
||||||
onAlign: Function as PropType<OnAlign>,
|
onAlign: Function as PropType<OnAlign>,
|
||||||
|
|
|
@ -5,7 +5,7 @@ import classNames from '../_util/classNames';
|
||||||
import PropTypes from '../_util/vue-types';
|
import PropTypes from '../_util/vue-types';
|
||||||
import { initDefaultProps } from '../_util/props-util';
|
import { initDefaultProps } from '../_util/props-util';
|
||||||
|
|
||||||
const checkboxProps = {
|
export const checkboxProps = {
|
||||||
prefixCls: String,
|
prefixCls: String,
|
||||||
name: String,
|
name: String,
|
||||||
id: String,
|
id: String,
|
||||||
|
|
Loading…
Reference in New Issue