mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 05:42:44 +08:00
feat: export props of all components (#11024)
This commit is contained in:
parent
019c328975
commit
e2ea3be819
@ -17,7 +17,7 @@ import { Button, ButtonType } from '../button';
|
||||
|
||||
const [name, bem] = createNamespace('action-bar-button');
|
||||
|
||||
const actionBarButtonProps = extend({}, routeProps, {
|
||||
export const actionBarButtonProps = extend({}, routeProps, {
|
||||
type: String as PropType<ButtonType>,
|
||||
text: String,
|
||||
icon: String,
|
||||
|
@ -3,6 +3,7 @@ import _ActionBarButton from './ActionBarButton';
|
||||
|
||||
export const ActionBarButton = withInstall(_ActionBarButton);
|
||||
export default ActionBarButton;
|
||||
export { actionBarButtonProps } from './ActionBarButton';
|
||||
export type { ActionBarButtonProps } from './ActionBarButton';
|
||||
|
||||
declare module 'vue' {
|
||||
|
@ -12,7 +12,7 @@ import { Badge, type BadgeProps } from '../badge';
|
||||
|
||||
const [name, bem] = createNamespace('action-bar-icon');
|
||||
|
||||
const actionBarIconProps = extend({}, routeProps, {
|
||||
export const actionBarIconProps = extend({}, routeProps, {
|
||||
dot: Boolean,
|
||||
text: String,
|
||||
icon: String,
|
||||
|
@ -3,6 +3,7 @@ import _ActionBarIcon from './ActionBarIcon';
|
||||
|
||||
export const ActionBarIcon = withInstall(_ActionBarIcon);
|
||||
export default ActionBarIcon;
|
||||
export { actionBarIconProps } from './ActionBarIcon';
|
||||
export type { ActionBarIconProps } from './ActionBarIcon';
|
||||
|
||||
declare module 'vue' {
|
||||
|
@ -7,7 +7,7 @@ const [name, bem] = createNamespace('action-bar');
|
||||
|
||||
export const ACTION_BAR_KEY = Symbol(name);
|
||||
|
||||
const actionBarProps = {
|
||||
export const actionBarProps = {
|
||||
placeholder: Boolean,
|
||||
safeAreaInsetBottom: truthProp,
|
||||
};
|
||||
|
@ -3,6 +3,7 @@ import _ActionBar from './ActionBar';
|
||||
|
||||
export const ActionBar = withInstall(_ActionBar);
|
||||
export default ActionBar;
|
||||
export { actionBarProps } from './ActionBar';
|
||||
export type { ActionBarProps } from './ActionBar';
|
||||
|
||||
declare module 'vue' {
|
||||
|
@ -29,7 +29,7 @@ export type ActionSheetAction = {
|
||||
className?: unknown;
|
||||
};
|
||||
|
||||
const actionSheetProps = extend({}, popupSharedProps, {
|
||||
export const actionSheetProps = extend({}, popupSharedProps, {
|
||||
title: String,
|
||||
round: truthProp,
|
||||
actions: makeArrayProp<ActionSheetAction>(),
|
||||
|
@ -3,6 +3,7 @@ import _ActionSheet from './ActionSheet';
|
||||
|
||||
export const ActionSheet = withInstall(_ActionSheet);
|
||||
export default ActionSheet;
|
||||
export { actionSheetProps } from './ActionSheet';
|
||||
export type { ActionSheetProps, ActionSheetAction } from './ActionSheet';
|
||||
|
||||
declare module 'vue' {
|
||||
|
@ -54,7 +54,7 @@ const DEFAULT_DATA: AddressEditInfo = {
|
||||
addressDetail: '',
|
||||
};
|
||||
|
||||
const addressEditProps = {
|
||||
export const addressEditProps = {
|
||||
areaList: Object as PropType<AreaList>,
|
||||
isSaving: Boolean,
|
||||
isDeleting: Boolean,
|
||||
|
@ -3,6 +3,7 @@ import _AddressEdit, { AddressEditProps } from './AddressEdit';
|
||||
|
||||
export const AddressEdit = withInstall(_AddressEdit);
|
||||
export default AddressEdit;
|
||||
export { addressEditProps } from './AddressEdit';
|
||||
export type { AddressEditProps };
|
||||
export type {
|
||||
AddressEditInfo,
|
||||
|
@ -15,7 +15,7 @@ import AddressListItem, { AddressListAddress } from './AddressListItem';
|
||||
|
||||
const [name, bem, t] = createNamespace('address-list');
|
||||
|
||||
const addressListProps = {
|
||||
export const addressListProps = {
|
||||
list: makeArrayProp<AddressListAddress>(),
|
||||
modelValue: numericProp,
|
||||
switchable: truthProp,
|
||||
|
@ -3,6 +3,7 @@ import _AddressList from './AddressList';
|
||||
|
||||
export const AddressList = withInstall(_AddressList);
|
||||
export default AddressList;
|
||||
export { addressListProps } from './AddressList';
|
||||
export type { AddressListProps } from './AddressList';
|
||||
export type { AddressListAddress } from './AddressListItem';
|
||||
|
||||
|
@ -30,7 +30,7 @@ import type { PickerExpose } from '../picker/types';
|
||||
|
||||
const [name, bem] = createNamespace('area');
|
||||
|
||||
const areaProps = extend({}, pickerSharedProps, {
|
||||
export const areaProps = extend({}, pickerSharedProps, {
|
||||
modelValue: String,
|
||||
columnsNum: makeNumericProp(3),
|
||||
columnsPlaceholder: makeArrayProp<string>(),
|
||||
|
@ -3,6 +3,7 @@ import _Area from './Area';
|
||||
|
||||
export const Area = withInstall(_Area);
|
||||
export default Area;
|
||||
export { areaProps } from './Area';
|
||||
export type { AreaProps } from './Area';
|
||||
export type { AreaList, AreaInstance } from './types';
|
||||
|
||||
|
@ -24,7 +24,7 @@ export type BadgePosition =
|
||||
| 'bottom-left'
|
||||
| 'bottom-right';
|
||||
|
||||
const badgeProps = {
|
||||
export const badgeProps = {
|
||||
dot: Boolean,
|
||||
max: numericProp,
|
||||
tag: makeStringProp<keyof HTMLElementTagNameMap>('div'),
|
||||
|
@ -3,6 +3,7 @@ import _Badge from './Badge';
|
||||
|
||||
export const Badge = withInstall(_Badge);
|
||||
export default Badge;
|
||||
export { badgeProps } from './Badge';
|
||||
export type { BadgeProps, BadgePosition } from './Badge';
|
||||
|
||||
declare module 'vue' {
|
||||
|
@ -30,7 +30,7 @@ import {
|
||||
|
||||
const [name, bem] = createNamespace('button');
|
||||
|
||||
const buttonProps = extend({}, routeProps, {
|
||||
export const buttonProps = extend({}, routeProps, {
|
||||
tag: makeStringProp<keyof HTMLElementTagNameMap>('button'),
|
||||
text: String,
|
||||
icon: String,
|
||||
|
@ -3,6 +3,7 @@ import _Button from './Button';
|
||||
|
||||
export const Button = withInstall(_Button);
|
||||
export default Button;
|
||||
export { buttonProps } from './Button';
|
||||
export type { ButtonProps } from './Button';
|
||||
export type {
|
||||
ButtonType,
|
||||
|
@ -53,7 +53,7 @@ import type {
|
||||
CalendarMonthInstance,
|
||||
} from './types';
|
||||
|
||||
const calendarProps = {
|
||||
export const calendarProps = {
|
||||
show: Boolean,
|
||||
type: makeStringProp<CalendarType>('single'),
|
||||
title: String,
|
||||
|
@ -3,6 +3,7 @@ import _Calendar from './Calendar';
|
||||
|
||||
export const Calendar = withInstall(_Calendar);
|
||||
export default Calendar;
|
||||
export { calendarProps } from './Calendar';
|
||||
export type { CalendarProps } from './Calendar';
|
||||
export type {
|
||||
CalendarType,
|
||||
|
@ -9,7 +9,7 @@ import { Image } from '../image';
|
||||
|
||||
const [name, bem] = createNamespace('card');
|
||||
|
||||
const cardProps = {
|
||||
export const cardProps = {
|
||||
tag: String,
|
||||
num: numericProp,
|
||||
desc: String,
|
||||
|
@ -3,6 +3,7 @@ import _Card from './Card';
|
||||
|
||||
export const Card = withInstall(_Card);
|
||||
export default Card;
|
||||
export { cardProps } from './Card';
|
||||
export type { CardProps } from './Card';
|
||||
|
||||
declare module 'vue' {
|
||||
|
@ -28,7 +28,7 @@ import type { CascaderTab, CascaderOption, CascaderFieldNames } from './types';
|
||||
|
||||
const [name, bem, t] = createNamespace('cascader');
|
||||
|
||||
const cascaderProps = {
|
||||
export const cascaderProps = {
|
||||
title: String,
|
||||
options: makeArrayProp<CascaderOption>(),
|
||||
closeable: truthProp,
|
||||
|
@ -3,6 +3,7 @@ import _Cascader from './Cascader';
|
||||
|
||||
export const Cascader = withInstall(_Cascader);
|
||||
export default Cascader;
|
||||
export { cascaderProps } from './Cascader';
|
||||
export type { CascaderProps } from './Cascader';
|
||||
export type { CascaderOption, CascaderFieldNames } from './types';
|
||||
|
||||
|
@ -3,7 +3,7 @@ import { truthProp, createNamespace, BORDER_TOP_BOTTOM } from '../utils';
|
||||
|
||||
const [name, bem] = createNamespace('cell-group');
|
||||
|
||||
const cellGroupProps = {
|
||||
export const cellGroupProps = {
|
||||
title: String,
|
||||
inset: Boolean,
|
||||
border: truthProp,
|
||||
|
@ -3,6 +3,7 @@ import _CellGroup from './CellGroup';
|
||||
|
||||
export const CellGroup = withInstall(_CellGroup);
|
||||
export default CellGroup;
|
||||
export { cellGroupProps } from './CellGroup';
|
||||
export type { CellGroupProps } from './CellGroup';
|
||||
|
||||
declare module 'vue' {
|
||||
|
@ -49,7 +49,7 @@ export const cellSharedProps = {
|
||||
},
|
||||
};
|
||||
|
||||
const cellProps = extend({}, cellSharedProps, routeProps);
|
||||
export const cellProps = extend({}, cellSharedProps, routeProps);
|
||||
|
||||
export type CellProps = ExtractPropTypes<typeof cellProps>;
|
||||
|
||||
|
@ -3,6 +3,7 @@ import _Cell from './Cell';
|
||||
|
||||
export const Cell = withInstall(_Cell);
|
||||
export default Cell;
|
||||
export { cellProps } from './Cell';
|
||||
export type { CellSize, CellProps, CellArrowDirection } from './Cell';
|
||||
|
||||
declare module 'vue' {
|
||||
|
@ -23,7 +23,7 @@ import type {
|
||||
|
||||
const [name, bem] = createNamespace('checkbox-group');
|
||||
|
||||
const checkboxGroupProps = {
|
||||
export const checkboxGroupProps = {
|
||||
max: numericProp,
|
||||
disabled: Boolean,
|
||||
iconSize: numericProp,
|
||||
|
@ -3,6 +3,7 @@ import _CheckboxGroup from './CheckboxGroup';
|
||||
|
||||
export const CheckboxGroup = withInstall(_CheckboxGroup);
|
||||
export default CheckboxGroup;
|
||||
export { checkboxGroupProps } from './CheckboxGroup';
|
||||
export type { CheckboxGroupProps } from './CheckboxGroup';
|
||||
export type {
|
||||
CheckboxGroupInstance,
|
||||
|
@ -16,7 +16,7 @@ import type { CheckboxExpose } from './types';
|
||||
|
||||
const [name, bem] = createNamespace('checkbox');
|
||||
|
||||
const checkboxProps = extend({}, checkerProps, {
|
||||
export const checkboxProps = extend({}, checkerProps, {
|
||||
bindGroup: truthProp,
|
||||
});
|
||||
|
||||
|
@ -3,6 +3,7 @@ import _Checkbox from './Checkbox';
|
||||
|
||||
export const Checkbox = withInstall(_Checkbox);
|
||||
export default Checkbox;
|
||||
export { checkboxProps } from './Checkbox';
|
||||
export type { CheckboxProps } from './Checkbox';
|
||||
export type {
|
||||
CheckboxShape,
|
||||
|
@ -34,7 +34,7 @@ function getPath(clockwise: boolean, viewBoxSize: number) {
|
||||
|
||||
export type CircleStartPosition = 'top' | 'right' | 'bottom' | 'left';
|
||||
|
||||
const circleProps = {
|
||||
export const circleProps = {
|
||||
text: String,
|
||||
size: numericProp,
|
||||
fill: makeStringProp('none'),
|
||||
|
@ -3,6 +3,7 @@ import _Circle from './Circle';
|
||||
|
||||
export const Circle = withInstall(_Circle);
|
||||
export default Circle;
|
||||
export { circleProps } from './Circle';
|
||||
export type { CircleProps, CircleStartPosition } from './Circle';
|
||||
|
||||
declare module 'vue' {
|
||||
|
@ -10,7 +10,7 @@ import { ROW_KEY } from '../row/Row';
|
||||
|
||||
const [name, bem] = createNamespace('col');
|
||||
|
||||
const colProps = {
|
||||
export const colProps = {
|
||||
tag: makeStringProp<keyof HTMLElementTagNameMap>('div'),
|
||||
span: makeNumericProp(0),
|
||||
offset: numericProp,
|
||||
|
@ -3,6 +3,7 @@ import _Col from './Col';
|
||||
|
||||
export const Col = withInstall(_Col);
|
||||
export default Col;
|
||||
export { colProps } from './Col';
|
||||
export type { ColProps } from './Col';
|
||||
|
||||
declare module 'vue' {
|
||||
|
@ -30,7 +30,7 @@ const [name, bem] = createNamespace('collapse-item');
|
||||
|
||||
const CELL_SLOTS = ['icon', 'title', 'value', 'label', 'right-icon'] as const;
|
||||
|
||||
const collapseItemProps = extend({}, cellSharedProps, {
|
||||
export const collapseItemProps = extend({}, cellSharedProps, {
|
||||
name: numericProp,
|
||||
isLink: truthProp,
|
||||
disabled: Boolean,
|
||||
|
@ -3,6 +3,7 @@ import _CollapseItem from './CollapseItem';
|
||||
|
||||
export const CollapseItem = withInstall(_CollapseItem);
|
||||
export default CollapseItem;
|
||||
export { collapseItemProps } from './CollapseItem';
|
||||
export type { CollapseItemProps } from './CollapseItem';
|
||||
export type { CollapseItemInstance } from './types';
|
||||
|
||||
|
@ -30,7 +30,7 @@ export type CollapseToggleAllOptions =
|
||||
|
||||
export const COLLAPSE_KEY: InjectionKey<CollapseProvide> = Symbol(name);
|
||||
|
||||
const collapseProps = {
|
||||
export const collapseProps = {
|
||||
border: truthProp,
|
||||
accordion: Boolean,
|
||||
modelValue: {
|
||||
|
@ -3,6 +3,7 @@ import _Collapse from './Collapse';
|
||||
|
||||
export const Collapse = withInstall(_Collapse);
|
||||
export default Collapse;
|
||||
export { collapseProps } from './Collapse';
|
||||
export type {
|
||||
CollapseProps,
|
||||
CollapseInstance,
|
||||
|
@ -35,7 +35,7 @@ export const CONFIG_PROVIDER_KEY: InjectionKey<ConfigProviderProvide> =
|
||||
|
||||
export type ThemeVars = PropType<Record<string, Numeric>>;
|
||||
|
||||
const configProviderProps = {
|
||||
export const configProviderProps = {
|
||||
tag: makeStringProp<keyof HTMLElementTagNameMap>('div'),
|
||||
theme: makeStringProp<ConfigProviderTheme>('light'),
|
||||
zIndex: Number,
|
||||
|
@ -3,6 +3,7 @@ import _ConfigProvider from './ConfigProvider';
|
||||
|
||||
export const ConfigProvider = withInstall(_ConfigProvider);
|
||||
export default ConfigProvider;
|
||||
export { configProviderProps } from './ConfigProvider';
|
||||
export type {
|
||||
ConfigProviderProps,
|
||||
ConfigProviderTheme,
|
||||
|
@ -6,7 +6,7 @@ const [name, bem, t] = createNamespace('contact-card');
|
||||
|
||||
export type ContactCardType = 'add' | 'edit';
|
||||
|
||||
const contactCardProps = {
|
||||
export const contactCardProps = {
|
||||
tel: String,
|
||||
name: String,
|
||||
type: makeStringProp<ContactCardType>('add'),
|
||||
|
@ -3,6 +3,7 @@ import _ContactCard from './ContactCard';
|
||||
|
||||
export const ContactCard = withInstall(_ContactCard);
|
||||
export default ContactCard;
|
||||
export { contactCardProps } from './ContactCard';
|
||||
export type { ContactCardType, ContactCardProps } from './ContactCard';
|
||||
|
||||
declare module 'vue' {
|
||||
|
@ -29,7 +29,7 @@ const DEFAULT_CONTACT: ContactEditInfo = {
|
||||
name: '',
|
||||
};
|
||||
|
||||
const contactEditProps = {
|
||||
export const contactEditProps = {
|
||||
isEdit: Boolean,
|
||||
isSaving: Boolean,
|
||||
isDeleting: Boolean,
|
||||
|
@ -3,6 +3,7 @@ import _ContactEdit from './ContactEdit';
|
||||
|
||||
export const ContactEdit = withInstall(_ContactEdit);
|
||||
export default ContactEdit;
|
||||
export { contactEditProps } from './ContactEdit';
|
||||
export type { ContactEditInfo, ContactEditProps } from './ContactEdit';
|
||||
|
||||
declare module 'vue' {
|
||||
|
@ -20,7 +20,7 @@ export type ContactListItem = {
|
||||
isDefault?: boolean;
|
||||
};
|
||||
|
||||
const contactListProps = {
|
||||
export const contactListProps = {
|
||||
list: Array as PropType<ContactListItem[]>,
|
||||
addText: String,
|
||||
modelValue: unknownProp,
|
||||
|
@ -3,6 +3,7 @@ import _ContactList from './ContactList';
|
||||
|
||||
export const ContactList = withInstall(_ContactList);
|
||||
export default ContactList;
|
||||
export { contactListProps } from './ContactList';
|
||||
export type { ContactListItem, ContactListProps } from './ContactList';
|
||||
|
||||
declare module 'vue' {
|
||||
|
@ -15,7 +15,7 @@ import { useExpose } from '../composables/use-expose';
|
||||
|
||||
const [name, bem] = createNamespace('count-down');
|
||||
|
||||
const countDownProps = {
|
||||
export const countDownProps = {
|
||||
time: makeNumericProp(0),
|
||||
format: makeStringProp('HH:mm:ss'),
|
||||
autoStart: truthProp,
|
||||
|
@ -3,6 +3,7 @@ import _CountDown from './CountDown';
|
||||
|
||||
export const CountDown = withInstall(_CountDown);
|
||||
export default CountDown;
|
||||
export { countDownProps } from './CountDown';
|
||||
export type { CountDownProps } from './CountDown';
|
||||
export type { CountDownInstance, CountDownCurrentTime } from './types';
|
||||
|
||||
|
@ -18,7 +18,7 @@ import type { CouponInfo } from '../coupon';
|
||||
|
||||
const [name, bem, t] = createNamespace('coupon-cell');
|
||||
|
||||
const couponCellProps = {
|
||||
export const couponCellProps = {
|
||||
title: String,
|
||||
border: truthProp,
|
||||
editable: truthProp,
|
||||
|
@ -3,6 +3,7 @@ import _CouponCell from './CouponCell';
|
||||
|
||||
export const CouponCell = withInstall(_CouponCell);
|
||||
export default CouponCell;
|
||||
export { couponCellProps } from './CouponCell';
|
||||
export type { CouponCellProps } from './CouponCell';
|
||||
|
||||
declare module 'vue' {
|
||||
|
@ -31,7 +31,7 @@ import { Coupon, CouponInfo } from '../coupon';
|
||||
import { useRect } from '@vant/use';
|
||||
|
||||
const [name, bem, t] = createNamespace('coupon-list');
|
||||
const couponListProps = {
|
||||
export const couponListProps = {
|
||||
code: makeStringProp(''),
|
||||
coupons: makeArrayProp<CouponInfo>(),
|
||||
currency: makeStringProp('¥'),
|
||||
|
@ -3,6 +3,7 @@ import _CouponList from './CouponList';
|
||||
|
||||
export const CouponList = withInstall(_CouponList);
|
||||
export default CouponList;
|
||||
export { couponListProps } from './CouponList';
|
||||
export type { CouponListProps } from './CouponList';
|
||||
|
||||
declare module 'vue' {
|
||||
|
@ -24,7 +24,7 @@ const [name] = createNamespace('date-picker');
|
||||
|
||||
export type DatePickerColumnType = 'year' | 'month' | 'day';
|
||||
|
||||
const datePickerProps = extend({}, sharedProps, {
|
||||
export const datePickerProps = extend({}, sharedProps, {
|
||||
columnsType: {
|
||||
type: Array as PropType<DatePickerColumnType[]>,
|
||||
default: () => ['year', 'month', 'day'],
|
||||
|
@ -3,6 +3,7 @@ import _DatePicker, { DatePickerProps } from './DatePicker';
|
||||
|
||||
export const DatePicker = withInstall(_DatePicker);
|
||||
export default DatePicker;
|
||||
export { datePickerProps } from './DatePicker';
|
||||
export type { DatePickerProps };
|
||||
export type { DatePickerColumnType } from './DatePicker';
|
||||
|
||||
|
@ -42,7 +42,7 @@ import type {
|
||||
|
||||
const [name, bem, t] = createNamespace('dialog');
|
||||
|
||||
const dialogProps = extend({}, popupSharedProps, {
|
||||
export const dialogProps = extend({}, popupSharedProps, {
|
||||
title: String,
|
||||
theme: String as PropType<DialogTheme>,
|
||||
width: numericProp,
|
||||
|
@ -3,6 +3,7 @@ import _Dialog from './Dialog';
|
||||
|
||||
export const Dialog = withInstall(_Dialog);
|
||||
export default Dialog;
|
||||
export { dialogProps } from './Dialog';
|
||||
export {
|
||||
showDialog,
|
||||
closeDialog,
|
||||
|
@ -5,7 +5,7 @@ const [name, bem] = createNamespace('divider');
|
||||
|
||||
export type DividerContentPosition = 'left' | 'center' | 'right';
|
||||
|
||||
const dividerProps = {
|
||||
export const dividerProps = {
|
||||
dashed: Boolean,
|
||||
hairline: truthProp,
|
||||
contentPosition: makeStringProp<DividerContentPosition>('center'),
|
||||
|
@ -3,6 +3,7 @@ import _Divider from './Divider';
|
||||
|
||||
export const Divider = withInstall(_Divider);
|
||||
export default Divider;
|
||||
export { dividerProps } from './Divider';
|
||||
export type { DividerProps, DividerContentPosition } from './Divider';
|
||||
|
||||
declare module 'vue' {
|
||||
|
@ -32,7 +32,7 @@ import type { DropdownItemOption } from './types';
|
||||
|
||||
const [name, bem] = createNamespace('dropdown-item');
|
||||
|
||||
const dropdownItemProps = {
|
||||
export const dropdownItemProps = {
|
||||
title: String,
|
||||
options: makeArrayProp<DropdownItemOption>(),
|
||||
disabled: Boolean,
|
||||
|
@ -3,6 +3,7 @@ import _DropdownItem, { DropdownItemProps } from './DropdownItem';
|
||||
|
||||
export const DropdownItem = withInstall(_DropdownItem);
|
||||
export default DropdownItem;
|
||||
export { dropdownItemProps } from './DropdownItem';
|
||||
export type { DropdownItemProps };
|
||||
export type { DropdownItemInstance, DropdownItemOption } from './types';
|
||||
|
||||
|
@ -35,7 +35,7 @@ import type { DropdownMenuProvide, DropdownMenuDirection } from './types';
|
||||
|
||||
const [name, bem] = createNamespace('dropdown-menu');
|
||||
|
||||
const dropdownMenuProps = {
|
||||
export const dropdownMenuProps = {
|
||||
overlay: truthProp,
|
||||
zIndex: numericProp,
|
||||
duration: makeNumericProp(0.2),
|
||||
|
@ -3,6 +3,7 @@ import _DropdownMenu, { DropdownMenuProps } from './DropdownMenu';
|
||||
|
||||
export const DropdownMenu = withInstall(_DropdownMenu);
|
||||
export default DropdownMenu;
|
||||
export { dropdownMenuProps } from './DropdownMenu';
|
||||
export type { DropdownMenuProps };
|
||||
export type { DropdownMenuDirection } from './types';
|
||||
|
||||
|
@ -9,7 +9,7 @@ import {
|
||||
|
||||
const [name, bem] = createNamespace('empty');
|
||||
|
||||
const emptyProps = {
|
||||
export const emptyProps = {
|
||||
image: makeStringProp('default'),
|
||||
imageSize: [Number, String, Array] as PropType<Numeric | [Numeric, Numeric]>,
|
||||
description: String,
|
||||
|
@ -3,6 +3,7 @@ import _Empty from './Empty';
|
||||
|
||||
export const Empty = withInstall(_Empty);
|
||||
export default Empty;
|
||||
export { emptyProps } from './Empty';
|
||||
export type { EmptyProps } from './Empty';
|
||||
|
||||
declare module 'vue' {
|
||||
|
@ -105,7 +105,7 @@ export const fieldSharedProps = {
|
||||
},
|
||||
};
|
||||
|
||||
const fieldProps = extend({}, cellSharedProps, fieldSharedProps, {
|
||||
export const fieldProps = extend({}, cellSharedProps, fieldSharedProps, {
|
||||
rows: numericProp,
|
||||
type: makeStringProp<FieldType>('text'),
|
||||
rules: Array as PropType<FieldRule[]>,
|
||||
|
@ -3,6 +3,7 @@ import _Field, { FieldProps } from './Field';
|
||||
|
||||
export const Field = withInstall(_Field);
|
||||
export default Field;
|
||||
export { fieldProps } from './Field';
|
||||
export type { FieldProps };
|
||||
export type {
|
||||
FieldType,
|
||||
|
@ -24,7 +24,7 @@ import type { FormExpose } from './types';
|
||||
|
||||
const [name, bem] = createNamespace('form');
|
||||
|
||||
const formProps = {
|
||||
export const formProps = {
|
||||
colon: Boolean,
|
||||
disabled: Boolean,
|
||||
readonly: Boolean,
|
||||
|
@ -3,6 +3,7 @@ import _Form, { FormProps } from './Form';
|
||||
|
||||
export const Form = withInstall(_Form);
|
||||
export default Form;
|
||||
export { formProps } from './Form';
|
||||
export type { FormProps };
|
||||
export type { FormInstance } from './types';
|
||||
|
||||
|
@ -26,7 +26,7 @@ import { Badge, type BadgeProps } from '../badge';
|
||||
|
||||
const [name, bem] = createNamespace('grid-item');
|
||||
|
||||
const gridItemProps = extend({}, routeProps, {
|
||||
export const gridItemProps = extend({}, routeProps, {
|
||||
dot: Boolean,
|
||||
text: String,
|
||||
icon: String,
|
||||
|
@ -3,6 +3,7 @@ import _GridItem from './GridItem';
|
||||
|
||||
export const GridItem = withInstall(_GridItem);
|
||||
export default GridItem;
|
||||
export { gridItemProps } from './GridItem';
|
||||
export type { GridItemProps } from './GridItem';
|
||||
|
||||
declare module 'vue' {
|
||||
|
@ -18,7 +18,7 @@ const [name, bem] = createNamespace('grid');
|
||||
|
||||
export type GridDirection = 'horizontal' | 'vertical';
|
||||
|
||||
const gridProps = {
|
||||
export const gridProps = {
|
||||
square: Boolean,
|
||||
center: truthProp,
|
||||
border: truthProp,
|
||||
|
@ -3,6 +3,7 @@ import _Grid from './Grid';
|
||||
|
||||
export const Grid = withInstall(_Grid);
|
||||
export default Grid;
|
||||
export { gridProps } from './Grid';
|
||||
export type { GridProps, GridDirection } from './Grid';
|
||||
|
||||
declare module 'vue' {
|
||||
|
@ -18,7 +18,7 @@ const [name, bem] = createNamespace('icon');
|
||||
|
||||
const isImage = (name?: string) => name?.includes('/');
|
||||
|
||||
const iconProps = {
|
||||
export const iconProps = {
|
||||
dot: Boolean,
|
||||
tag: makeStringProp<keyof HTMLElementTagNameMap>('i'),
|
||||
name: String,
|
||||
|
@ -3,6 +3,7 @@ import _Icon from './Icon';
|
||||
|
||||
export const Icon = withInstall(_Icon);
|
||||
export default Icon;
|
||||
export { iconProps } from './Icon';
|
||||
export type { IconProps } from './Icon';
|
||||
|
||||
declare module 'vue' {
|
||||
|
@ -48,7 +48,7 @@ const popupProps = [
|
||||
'closeOnPopstate',
|
||||
] as const;
|
||||
|
||||
const imagePreviewProps = {
|
||||
export const imagePreviewProps = {
|
||||
show: Boolean,
|
||||
loop: truthProp,
|
||||
images: makeArrayProp<string>(),
|
||||
|
@ -4,6 +4,7 @@ import type { ImagePreviewProps } from './ImagePreview';
|
||||
|
||||
export const ImagePreview = withInstall(_ImagePreview);
|
||||
export default ImagePreview;
|
||||
export { imagePreviewProps } from './ImagePreview';
|
||||
export { showImagePreview } from './function-call';
|
||||
|
||||
export type { ImagePreviewProps };
|
||||
|
@ -38,7 +38,7 @@ export type ImagePosition =
|
||||
| 'left'
|
||||
| string;
|
||||
|
||||
const imageProps = {
|
||||
export const imageProps = {
|
||||
src: String,
|
||||
alt: String,
|
||||
fit: String as PropType<ImageFit>,
|
||||
|
@ -3,6 +3,7 @@ import _Image from './Image';
|
||||
|
||||
export const Image = withInstall(_Image);
|
||||
export default Image;
|
||||
export { imageProps } from './Image';
|
||||
export type { ImageFit, ImageProps } from './Image';
|
||||
|
||||
declare module 'vue' {
|
||||
|
@ -24,7 +24,7 @@ import { useExpose } from '../composables/use-expose';
|
||||
|
||||
const [name, bem] = createNamespace('index-anchor');
|
||||
|
||||
const indexAnchorProps = {
|
||||
export const indexAnchorProps = {
|
||||
index: numericProp,
|
||||
};
|
||||
|
||||
|
@ -3,6 +3,7 @@ import _IndexAnchor from './IndexAnchor';
|
||||
|
||||
export const IndexAnchor = withInstall(_IndexAnchor);
|
||||
export default IndexAnchor;
|
||||
export { indexAnchorProps } from './IndexAnchor';
|
||||
export type { IndexAnchorProps } from './IndexAnchor';
|
||||
|
||||
declare module 'vue' {
|
||||
|
@ -52,7 +52,7 @@ function genAlphabet() {
|
||||
|
||||
const [name, bem] = createNamespace('index-bar');
|
||||
|
||||
const indexBarProps = {
|
||||
export const indexBarProps = {
|
||||
sticky: truthProp,
|
||||
zIndex: numericProp,
|
||||
teleport: [String, Object] as PropType<TeleportProps['to']>,
|
||||
|
@ -3,6 +3,7 @@ import _IndexBar, { IndexBarProps } from './IndexBar';
|
||||
|
||||
export const IndexBar = withInstall(_IndexBar);
|
||||
export default IndexBar;
|
||||
export { indexBarProps } from './IndexBar';
|
||||
export type { IndexBarProps };
|
||||
export type { IndexBarInstance } from './types';
|
||||
|
||||
|
@ -30,7 +30,7 @@ import type { ListExpose, ListDirection } from './types';
|
||||
|
||||
const [name, bem, t] = createNamespace('list');
|
||||
|
||||
const listProps = {
|
||||
export const listProps = {
|
||||
error: Boolean,
|
||||
offset: makeNumericProp(300),
|
||||
loading: Boolean,
|
||||
|
@ -3,6 +3,7 @@ import _List, { ListProps } from './List';
|
||||
|
||||
export const List = withInstall(_List);
|
||||
export default List;
|
||||
export { listProps } from './List';
|
||||
export type { ListProps };
|
||||
export type { ListInstance, ListDirection } from './types';
|
||||
|
||||
|
@ -22,7 +22,7 @@ const CircularIcon = (
|
||||
|
||||
export type LoadingType = 'circular' | 'spinner';
|
||||
|
||||
const loadingProps = {
|
||||
export const loadingProps = {
|
||||
size: numericProp,
|
||||
type: makeStringProp<LoadingType>('circular'),
|
||||
color: String,
|
||||
|
@ -3,6 +3,7 @@ import _Loading from './Loading';
|
||||
|
||||
export const Loading = withInstall(_Loading);
|
||||
export default Loading;
|
||||
export { loadingProps } from './Loading';
|
||||
export type { LoadingType, LoadingProps } from './Loading';
|
||||
|
||||
declare module 'vue' {
|
||||
|
@ -23,7 +23,7 @@ import { Icon } from '../icon';
|
||||
|
||||
const [name, bem] = createNamespace('nav-bar');
|
||||
|
||||
const navBarProps = {
|
||||
export const navBarProps = {
|
||||
title: String,
|
||||
fixed: Boolean,
|
||||
zIndex: numericProp,
|
||||
|
@ -3,6 +3,7 @@ import _NavBar from './NavBar';
|
||||
|
||||
export const NavBar = withInstall(_NavBar);
|
||||
export default NavBar;
|
||||
export { navBarProps } from './NavBar';
|
||||
export type { NavBarProps } from './NavBar';
|
||||
|
||||
declare module 'vue' {
|
||||
|
@ -29,7 +29,7 @@ import { NoticeBarMode } from './types';
|
||||
|
||||
const [name, bem] = createNamespace('notice-bar');
|
||||
|
||||
const noticeBarProps = {
|
||||
export const noticeBarProps = {
|
||||
text: String,
|
||||
mode: String as PropType<NoticeBarMode>,
|
||||
color: String,
|
||||
|
@ -3,6 +3,7 @@ import _NoticeBar, { NoticeBarProps } from './NoticeBar';
|
||||
|
||||
export const NoticeBar = withInstall(_NoticeBar);
|
||||
export default NoticeBar;
|
||||
export { noticeBarProps } from './NoticeBar';
|
||||
export type { NoticeBarProps };
|
||||
export type { NoticeBarMode, NoticeBarInstance } from './types';
|
||||
|
||||
|
@ -12,7 +12,7 @@ import type { NotifyType, NotifyPosition } from './types';
|
||||
|
||||
const [name, bem] = createNamespace('notify');
|
||||
|
||||
const notifyProps = extend({}, popupSharedProps, {
|
||||
export const notifyProps = extend({}, popupSharedProps, {
|
||||
type: makeStringProp<NotifyType>('danger'),
|
||||
color: String,
|
||||
message: numericProp,
|
||||
|
@ -3,6 +3,7 @@ import _Notify from './Notify';
|
||||
|
||||
export const Notify = withInstall(_Notify);
|
||||
export default Notify;
|
||||
export { notifyProps } from './Notify';
|
||||
export {
|
||||
showNotify,
|
||||
closeNotify,
|
||||
|
@ -41,7 +41,7 @@ type KeyConfig = {
|
||||
wider?: boolean;
|
||||
};
|
||||
|
||||
const numberKeyboardProps = {
|
||||
export const numberKeyboardProps = {
|
||||
show: Boolean,
|
||||
title: String,
|
||||
theme: makeStringProp<NumberKeyboardTheme>('default'),
|
||||
|
@ -3,6 +3,7 @@ import _NumberKeyboard from './NumberKeyboard';
|
||||
|
||||
export const NumberKeyboard = withInstall(_NumberKeyboard);
|
||||
export default NumberKeyboard;
|
||||
export { numberKeyboardProps } from './NumberKeyboard';
|
||||
export type {
|
||||
NumberKeyboardProps,
|
||||
NumberKeyboardTheme,
|
||||
|
@ -25,7 +25,7 @@ import { useLazyRender } from '../composables/use-lazy-render';
|
||||
|
||||
const [name, bem] = createNamespace('overlay');
|
||||
|
||||
const overlayProps = {
|
||||
export const overlayProps = {
|
||||
show: Boolean,
|
||||
zIndex: numericProp,
|
||||
duration: numericProp,
|
||||
|
@ -3,6 +3,7 @@ import _Overlay from './Overlay';
|
||||
|
||||
export const Overlay = withInstall(_Overlay);
|
||||
export default Overlay;
|
||||
export { overlayProps } from './Overlay';
|
||||
export type { OverlayProps } from './Overlay';
|
||||
|
||||
declare module 'vue' {
|
||||
|
@ -30,7 +30,7 @@ const makePage = (
|
||||
|
||||
export type PaginationMode = 'simple' | 'multi';
|
||||
|
||||
const paginationProps = {
|
||||
export const paginationProps = {
|
||||
mode: makeStringProp<PaginationMode>('multi'),
|
||||
prevText: String,
|
||||
nextText: String,
|
||||
|
@ -3,6 +3,7 @@ import _Pagination from './Pagination';
|
||||
|
||||
export const Pagination = withInstall(_Pagination);
|
||||
export default Pagination;
|
||||
export { paginationProps } from './Pagination';
|
||||
export type { PaginationMode, PaginationProps } from './Pagination';
|
||||
|
||||
declare module 'vue' {
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user