feat: export props of all components (#11024)

This commit is contained in:
neverland 2022-09-10 21:49:21 +08:00 committed by GitHub
parent 019c328975
commit e2ea3be819
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
167 changed files with 169 additions and 83 deletions

View File

@ -17,7 +17,7 @@ import { Button, ButtonType } from '../button';
const [name, bem] = createNamespace('action-bar-button'); const [name, bem] = createNamespace('action-bar-button');
const actionBarButtonProps = extend({}, routeProps, { export const actionBarButtonProps = extend({}, routeProps, {
type: String as PropType<ButtonType>, type: String as PropType<ButtonType>,
text: String, text: String,
icon: String, icon: String,

View File

@ -3,6 +3,7 @@ import _ActionBarButton from './ActionBarButton';
export const ActionBarButton = withInstall(_ActionBarButton); export const ActionBarButton = withInstall(_ActionBarButton);
export default ActionBarButton; export default ActionBarButton;
export { actionBarButtonProps } from './ActionBarButton';
export type { ActionBarButtonProps } from './ActionBarButton'; export type { ActionBarButtonProps } from './ActionBarButton';
declare module 'vue' { declare module 'vue' {

View File

@ -12,7 +12,7 @@ import { Badge, type BadgeProps } from '../badge';
const [name, bem] = createNamespace('action-bar-icon'); const [name, bem] = createNamespace('action-bar-icon');
const actionBarIconProps = extend({}, routeProps, { export const actionBarIconProps = extend({}, routeProps, {
dot: Boolean, dot: Boolean,
text: String, text: String,
icon: String, icon: String,

View File

@ -3,6 +3,7 @@ import _ActionBarIcon from './ActionBarIcon';
export const ActionBarIcon = withInstall(_ActionBarIcon); export const ActionBarIcon = withInstall(_ActionBarIcon);
export default ActionBarIcon; export default ActionBarIcon;
export { actionBarIconProps } from './ActionBarIcon';
export type { ActionBarIconProps } from './ActionBarIcon'; export type { ActionBarIconProps } from './ActionBarIcon';
declare module 'vue' { declare module 'vue' {

View File

@ -7,7 +7,7 @@ const [name, bem] = createNamespace('action-bar');
export const ACTION_BAR_KEY = Symbol(name); export const ACTION_BAR_KEY = Symbol(name);
const actionBarProps = { export const actionBarProps = {
placeholder: Boolean, placeholder: Boolean,
safeAreaInsetBottom: truthProp, safeAreaInsetBottom: truthProp,
}; };

View File

@ -3,6 +3,7 @@ import _ActionBar from './ActionBar';
export const ActionBar = withInstall(_ActionBar); export const ActionBar = withInstall(_ActionBar);
export default ActionBar; export default ActionBar;
export { actionBarProps } from './ActionBar';
export type { ActionBarProps } from './ActionBar'; export type { ActionBarProps } from './ActionBar';
declare module 'vue' { declare module 'vue' {

View File

@ -29,7 +29,7 @@ export type ActionSheetAction = {
className?: unknown; className?: unknown;
}; };
const actionSheetProps = extend({}, popupSharedProps, { export const actionSheetProps = extend({}, popupSharedProps, {
title: String, title: String,
round: truthProp, round: truthProp,
actions: makeArrayProp<ActionSheetAction>(), actions: makeArrayProp<ActionSheetAction>(),

View File

@ -3,6 +3,7 @@ import _ActionSheet from './ActionSheet';
export const ActionSheet = withInstall(_ActionSheet); export const ActionSheet = withInstall(_ActionSheet);
export default ActionSheet; export default ActionSheet;
export { actionSheetProps } from './ActionSheet';
export type { ActionSheetProps, ActionSheetAction } from './ActionSheet'; export type { ActionSheetProps, ActionSheetAction } from './ActionSheet';
declare module 'vue' { declare module 'vue' {

View File

@ -54,7 +54,7 @@ const DEFAULT_DATA: AddressEditInfo = {
addressDetail: '', addressDetail: '',
}; };
const addressEditProps = { export const addressEditProps = {
areaList: Object as PropType<AreaList>, areaList: Object as PropType<AreaList>,
isSaving: Boolean, isSaving: Boolean,
isDeleting: Boolean, isDeleting: Boolean,

View File

@ -3,6 +3,7 @@ import _AddressEdit, { AddressEditProps } from './AddressEdit';
export const AddressEdit = withInstall(_AddressEdit); export const AddressEdit = withInstall(_AddressEdit);
export default AddressEdit; export default AddressEdit;
export { addressEditProps } from './AddressEdit';
export type { AddressEditProps }; export type { AddressEditProps };
export type { export type {
AddressEditInfo, AddressEditInfo,

View File

@ -15,7 +15,7 @@ import AddressListItem, { AddressListAddress } from './AddressListItem';
const [name, bem, t] = createNamespace('address-list'); const [name, bem, t] = createNamespace('address-list');
const addressListProps = { export const addressListProps = {
list: makeArrayProp<AddressListAddress>(), list: makeArrayProp<AddressListAddress>(),
modelValue: numericProp, modelValue: numericProp,
switchable: truthProp, switchable: truthProp,

View File

@ -3,6 +3,7 @@ import _AddressList from './AddressList';
export const AddressList = withInstall(_AddressList); export const AddressList = withInstall(_AddressList);
export default AddressList; export default AddressList;
export { addressListProps } from './AddressList';
export type { AddressListProps } from './AddressList'; export type { AddressListProps } from './AddressList';
export type { AddressListAddress } from './AddressListItem'; export type { AddressListAddress } from './AddressListItem';

View File

@ -30,7 +30,7 @@ import type { PickerExpose } from '../picker/types';
const [name, bem] = createNamespace('area'); const [name, bem] = createNamespace('area');
const areaProps = extend({}, pickerSharedProps, { export const areaProps = extend({}, pickerSharedProps, {
modelValue: String, modelValue: String,
columnsNum: makeNumericProp(3), columnsNum: makeNumericProp(3),
columnsPlaceholder: makeArrayProp<string>(), columnsPlaceholder: makeArrayProp<string>(),

View File

@ -3,6 +3,7 @@ import _Area from './Area';
export const Area = withInstall(_Area); export const Area = withInstall(_Area);
export default Area; export default Area;
export { areaProps } from './Area';
export type { AreaProps } from './Area'; export type { AreaProps } from './Area';
export type { AreaList, AreaInstance } from './types'; export type { AreaList, AreaInstance } from './types';

View File

@ -24,7 +24,7 @@ export type BadgePosition =
| 'bottom-left' | 'bottom-left'
| 'bottom-right'; | 'bottom-right';
const badgeProps = { export const badgeProps = {
dot: Boolean, dot: Boolean,
max: numericProp, max: numericProp,
tag: makeStringProp<keyof HTMLElementTagNameMap>('div'), tag: makeStringProp<keyof HTMLElementTagNameMap>('div'),

View File

@ -3,6 +3,7 @@ import _Badge from './Badge';
export const Badge = withInstall(_Badge); export const Badge = withInstall(_Badge);
export default Badge; export default Badge;
export { badgeProps } from './Badge';
export type { BadgeProps, BadgePosition } from './Badge'; export type { BadgeProps, BadgePosition } from './Badge';
declare module 'vue' { declare module 'vue' {

View File

@ -30,7 +30,7 @@ import {
const [name, bem] = createNamespace('button'); const [name, bem] = createNamespace('button');
const buttonProps = extend({}, routeProps, { export const buttonProps = extend({}, routeProps, {
tag: makeStringProp<keyof HTMLElementTagNameMap>('button'), tag: makeStringProp<keyof HTMLElementTagNameMap>('button'),
text: String, text: String,
icon: String, icon: String,

View File

@ -3,6 +3,7 @@ import _Button from './Button';
export const Button = withInstall(_Button); export const Button = withInstall(_Button);
export default Button; export default Button;
export { buttonProps } from './Button';
export type { ButtonProps } from './Button'; export type { ButtonProps } from './Button';
export type { export type {
ButtonType, ButtonType,

View File

@ -53,7 +53,7 @@ import type {
CalendarMonthInstance, CalendarMonthInstance,
} from './types'; } from './types';
const calendarProps = { export const calendarProps = {
show: Boolean, show: Boolean,
type: makeStringProp<CalendarType>('single'), type: makeStringProp<CalendarType>('single'),
title: String, title: String,

View File

@ -3,6 +3,7 @@ import _Calendar from './Calendar';
export const Calendar = withInstall(_Calendar); export const Calendar = withInstall(_Calendar);
export default Calendar; export default Calendar;
export { calendarProps } from './Calendar';
export type { CalendarProps } from './Calendar'; export type { CalendarProps } from './Calendar';
export type { export type {
CalendarType, CalendarType,

View File

@ -9,7 +9,7 @@ import { Image } from '../image';
const [name, bem] = createNamespace('card'); const [name, bem] = createNamespace('card');
const cardProps = { export const cardProps = {
tag: String, tag: String,
num: numericProp, num: numericProp,
desc: String, desc: String,

View File

@ -3,6 +3,7 @@ import _Card from './Card';
export const Card = withInstall(_Card); export const Card = withInstall(_Card);
export default Card; export default Card;
export { cardProps } from './Card';
export type { CardProps } from './Card'; export type { CardProps } from './Card';
declare module 'vue' { declare module 'vue' {

View File

@ -28,7 +28,7 @@ import type { CascaderTab, CascaderOption, CascaderFieldNames } from './types';
const [name, bem, t] = createNamespace('cascader'); const [name, bem, t] = createNamespace('cascader');
const cascaderProps = { export const cascaderProps = {
title: String, title: String,
options: makeArrayProp<CascaderOption>(), options: makeArrayProp<CascaderOption>(),
closeable: truthProp, closeable: truthProp,

View File

@ -3,6 +3,7 @@ import _Cascader from './Cascader';
export const Cascader = withInstall(_Cascader); export const Cascader = withInstall(_Cascader);
export default Cascader; export default Cascader;
export { cascaderProps } from './Cascader';
export type { CascaderProps } from './Cascader'; export type { CascaderProps } from './Cascader';
export type { CascaderOption, CascaderFieldNames } from './types'; export type { CascaderOption, CascaderFieldNames } from './types';

View File

@ -3,7 +3,7 @@ import { truthProp, createNamespace, BORDER_TOP_BOTTOM } from '../utils';
const [name, bem] = createNamespace('cell-group'); const [name, bem] = createNamespace('cell-group');
const cellGroupProps = { export const cellGroupProps = {
title: String, title: String,
inset: Boolean, inset: Boolean,
border: truthProp, border: truthProp,

View File

@ -3,6 +3,7 @@ import _CellGroup from './CellGroup';
export const CellGroup = withInstall(_CellGroup); export const CellGroup = withInstall(_CellGroup);
export default CellGroup; export default CellGroup;
export { cellGroupProps } from './CellGroup';
export type { CellGroupProps } from './CellGroup'; export type { CellGroupProps } from './CellGroup';
declare module 'vue' { declare module 'vue' {

View File

@ -49,7 +49,7 @@ export const cellSharedProps = {
}, },
}; };
const cellProps = extend({}, cellSharedProps, routeProps); export const cellProps = extend({}, cellSharedProps, routeProps);
export type CellProps = ExtractPropTypes<typeof cellProps>; export type CellProps = ExtractPropTypes<typeof cellProps>;

View File

@ -3,6 +3,7 @@ import _Cell from './Cell';
export const Cell = withInstall(_Cell); export const Cell = withInstall(_Cell);
export default Cell; export default Cell;
export { cellProps } from './Cell';
export type { CellSize, CellProps, CellArrowDirection } from './Cell'; export type { CellSize, CellProps, CellArrowDirection } from './Cell';
declare module 'vue' { declare module 'vue' {

View File

@ -23,7 +23,7 @@ import type {
const [name, bem] = createNamespace('checkbox-group'); const [name, bem] = createNamespace('checkbox-group');
const checkboxGroupProps = { export const checkboxGroupProps = {
max: numericProp, max: numericProp,
disabled: Boolean, disabled: Boolean,
iconSize: numericProp, iconSize: numericProp,

View File

@ -3,6 +3,7 @@ import _CheckboxGroup from './CheckboxGroup';
export const CheckboxGroup = withInstall(_CheckboxGroup); export const CheckboxGroup = withInstall(_CheckboxGroup);
export default CheckboxGroup; export default CheckboxGroup;
export { checkboxGroupProps } from './CheckboxGroup';
export type { CheckboxGroupProps } from './CheckboxGroup'; export type { CheckboxGroupProps } from './CheckboxGroup';
export type { export type {
CheckboxGroupInstance, CheckboxGroupInstance,

View File

@ -16,7 +16,7 @@ import type { CheckboxExpose } from './types';
const [name, bem] = createNamespace('checkbox'); const [name, bem] = createNamespace('checkbox');
const checkboxProps = extend({}, checkerProps, { export const checkboxProps = extend({}, checkerProps, {
bindGroup: truthProp, bindGroup: truthProp,
}); });

View File

@ -3,6 +3,7 @@ import _Checkbox from './Checkbox';
export const Checkbox = withInstall(_Checkbox); export const Checkbox = withInstall(_Checkbox);
export default Checkbox; export default Checkbox;
export { checkboxProps } from './Checkbox';
export type { CheckboxProps } from './Checkbox'; export type { CheckboxProps } from './Checkbox';
export type { export type {
CheckboxShape, CheckboxShape,

View File

@ -34,7 +34,7 @@ function getPath(clockwise: boolean, viewBoxSize: number) {
export type CircleStartPosition = 'top' | 'right' | 'bottom' | 'left'; export type CircleStartPosition = 'top' | 'right' | 'bottom' | 'left';
const circleProps = { export const circleProps = {
text: String, text: String,
size: numericProp, size: numericProp,
fill: makeStringProp('none'), fill: makeStringProp('none'),

View File

@ -3,6 +3,7 @@ import _Circle from './Circle';
export const Circle = withInstall(_Circle); export const Circle = withInstall(_Circle);
export default Circle; export default Circle;
export { circleProps } from './Circle';
export type { CircleProps, CircleStartPosition } from './Circle'; export type { CircleProps, CircleStartPosition } from './Circle';
declare module 'vue' { declare module 'vue' {

View File

@ -10,7 +10,7 @@ import { ROW_KEY } from '../row/Row';
const [name, bem] = createNamespace('col'); const [name, bem] = createNamespace('col');
const colProps = { export const colProps = {
tag: makeStringProp<keyof HTMLElementTagNameMap>('div'), tag: makeStringProp<keyof HTMLElementTagNameMap>('div'),
span: makeNumericProp(0), span: makeNumericProp(0),
offset: numericProp, offset: numericProp,

View File

@ -3,6 +3,7 @@ import _Col from './Col';
export const Col = withInstall(_Col); export const Col = withInstall(_Col);
export default Col; export default Col;
export { colProps } from './Col';
export type { ColProps } from './Col'; export type { ColProps } from './Col';
declare module 'vue' { declare module 'vue' {

View File

@ -30,7 +30,7 @@ const [name, bem] = createNamespace('collapse-item');
const CELL_SLOTS = ['icon', 'title', 'value', 'label', 'right-icon'] as const; const CELL_SLOTS = ['icon', 'title', 'value', 'label', 'right-icon'] as const;
const collapseItemProps = extend({}, cellSharedProps, { export const collapseItemProps = extend({}, cellSharedProps, {
name: numericProp, name: numericProp,
isLink: truthProp, isLink: truthProp,
disabled: Boolean, disabled: Boolean,

View File

@ -3,6 +3,7 @@ import _CollapseItem from './CollapseItem';
export const CollapseItem = withInstall(_CollapseItem); export const CollapseItem = withInstall(_CollapseItem);
export default CollapseItem; export default CollapseItem;
export { collapseItemProps } from './CollapseItem';
export type { CollapseItemProps } from './CollapseItem'; export type { CollapseItemProps } from './CollapseItem';
export type { CollapseItemInstance } from './types'; export type { CollapseItemInstance } from './types';

View File

@ -30,7 +30,7 @@ export type CollapseToggleAllOptions =
export const COLLAPSE_KEY: InjectionKey<CollapseProvide> = Symbol(name); export const COLLAPSE_KEY: InjectionKey<CollapseProvide> = Symbol(name);
const collapseProps = { export const collapseProps = {
border: truthProp, border: truthProp,
accordion: Boolean, accordion: Boolean,
modelValue: { modelValue: {

View File

@ -3,6 +3,7 @@ import _Collapse from './Collapse';
export const Collapse = withInstall(_Collapse); export const Collapse = withInstall(_Collapse);
export default Collapse; export default Collapse;
export { collapseProps } from './Collapse';
export type { export type {
CollapseProps, CollapseProps,
CollapseInstance, CollapseInstance,

View File

@ -35,7 +35,7 @@ export const CONFIG_PROVIDER_KEY: InjectionKey<ConfigProviderProvide> =
export type ThemeVars = PropType<Record<string, Numeric>>; export type ThemeVars = PropType<Record<string, Numeric>>;
const configProviderProps = { export const configProviderProps = {
tag: makeStringProp<keyof HTMLElementTagNameMap>('div'), tag: makeStringProp<keyof HTMLElementTagNameMap>('div'),
theme: makeStringProp<ConfigProviderTheme>('light'), theme: makeStringProp<ConfigProviderTheme>('light'),
zIndex: Number, zIndex: Number,

View File

@ -3,6 +3,7 @@ import _ConfigProvider from './ConfigProvider';
export const ConfigProvider = withInstall(_ConfigProvider); export const ConfigProvider = withInstall(_ConfigProvider);
export default ConfigProvider; export default ConfigProvider;
export { configProviderProps } from './ConfigProvider';
export type { export type {
ConfigProviderProps, ConfigProviderProps,
ConfigProviderTheme, ConfigProviderTheme,

View File

@ -6,7 +6,7 @@ const [name, bem, t] = createNamespace('contact-card');
export type ContactCardType = 'add' | 'edit'; export type ContactCardType = 'add' | 'edit';
const contactCardProps = { export const contactCardProps = {
tel: String, tel: String,
name: String, name: String,
type: makeStringProp<ContactCardType>('add'), type: makeStringProp<ContactCardType>('add'),

View File

@ -3,6 +3,7 @@ import _ContactCard from './ContactCard';
export const ContactCard = withInstall(_ContactCard); export const ContactCard = withInstall(_ContactCard);
export default ContactCard; export default ContactCard;
export { contactCardProps } from './ContactCard';
export type { ContactCardType, ContactCardProps } from './ContactCard'; export type { ContactCardType, ContactCardProps } from './ContactCard';
declare module 'vue' { declare module 'vue' {

View File

@ -29,7 +29,7 @@ const DEFAULT_CONTACT: ContactEditInfo = {
name: '', name: '',
}; };
const contactEditProps = { export const contactEditProps = {
isEdit: Boolean, isEdit: Boolean,
isSaving: Boolean, isSaving: Boolean,
isDeleting: Boolean, isDeleting: Boolean,

View File

@ -3,6 +3,7 @@ import _ContactEdit from './ContactEdit';
export const ContactEdit = withInstall(_ContactEdit); export const ContactEdit = withInstall(_ContactEdit);
export default ContactEdit; export default ContactEdit;
export { contactEditProps } from './ContactEdit';
export type { ContactEditInfo, ContactEditProps } from './ContactEdit'; export type { ContactEditInfo, ContactEditProps } from './ContactEdit';
declare module 'vue' { declare module 'vue' {

View File

@ -20,7 +20,7 @@ export type ContactListItem = {
isDefault?: boolean; isDefault?: boolean;
}; };
const contactListProps = { export const contactListProps = {
list: Array as PropType<ContactListItem[]>, list: Array as PropType<ContactListItem[]>,
addText: String, addText: String,
modelValue: unknownProp, modelValue: unknownProp,

View File

@ -3,6 +3,7 @@ import _ContactList from './ContactList';
export const ContactList = withInstall(_ContactList); export const ContactList = withInstall(_ContactList);
export default ContactList; export default ContactList;
export { contactListProps } from './ContactList';
export type { ContactListItem, ContactListProps } from './ContactList'; export type { ContactListItem, ContactListProps } from './ContactList';
declare module 'vue' { declare module 'vue' {

View File

@ -15,7 +15,7 @@ import { useExpose } from '../composables/use-expose';
const [name, bem] = createNamespace('count-down'); const [name, bem] = createNamespace('count-down');
const countDownProps = { export const countDownProps = {
time: makeNumericProp(0), time: makeNumericProp(0),
format: makeStringProp('HH:mm:ss'), format: makeStringProp('HH:mm:ss'),
autoStart: truthProp, autoStart: truthProp,

View File

@ -3,6 +3,7 @@ import _CountDown from './CountDown';
export const CountDown = withInstall(_CountDown); export const CountDown = withInstall(_CountDown);
export default CountDown; export default CountDown;
export { countDownProps } from './CountDown';
export type { CountDownProps } from './CountDown'; export type { CountDownProps } from './CountDown';
export type { CountDownInstance, CountDownCurrentTime } from './types'; export type { CountDownInstance, CountDownCurrentTime } from './types';

View File

@ -18,7 +18,7 @@ import type { CouponInfo } from '../coupon';
const [name, bem, t] = createNamespace('coupon-cell'); const [name, bem, t] = createNamespace('coupon-cell');
const couponCellProps = { export const couponCellProps = {
title: String, title: String,
border: truthProp, border: truthProp,
editable: truthProp, editable: truthProp,

View File

@ -3,6 +3,7 @@ import _CouponCell from './CouponCell';
export const CouponCell = withInstall(_CouponCell); export const CouponCell = withInstall(_CouponCell);
export default CouponCell; export default CouponCell;
export { couponCellProps } from './CouponCell';
export type { CouponCellProps } from './CouponCell'; export type { CouponCellProps } from './CouponCell';
declare module 'vue' { declare module 'vue' {

View File

@ -31,7 +31,7 @@ import { Coupon, CouponInfo } from '../coupon';
import { useRect } from '@vant/use'; import { useRect } from '@vant/use';
const [name, bem, t] = createNamespace('coupon-list'); const [name, bem, t] = createNamespace('coupon-list');
const couponListProps = { export const couponListProps = {
code: makeStringProp(''), code: makeStringProp(''),
coupons: makeArrayProp<CouponInfo>(), coupons: makeArrayProp<CouponInfo>(),
currency: makeStringProp('¥'), currency: makeStringProp('¥'),

View File

@ -3,6 +3,7 @@ import _CouponList from './CouponList';
export const CouponList = withInstall(_CouponList); export const CouponList = withInstall(_CouponList);
export default CouponList; export default CouponList;
export { couponListProps } from './CouponList';
export type { CouponListProps } from './CouponList'; export type { CouponListProps } from './CouponList';
declare module 'vue' { declare module 'vue' {

View File

@ -24,7 +24,7 @@ const [name] = createNamespace('date-picker');
export type DatePickerColumnType = 'year' | 'month' | 'day'; export type DatePickerColumnType = 'year' | 'month' | 'day';
const datePickerProps = extend({}, sharedProps, { export const datePickerProps = extend({}, sharedProps, {
columnsType: { columnsType: {
type: Array as PropType<DatePickerColumnType[]>, type: Array as PropType<DatePickerColumnType[]>,
default: () => ['year', 'month', 'day'], default: () => ['year', 'month', 'day'],

View File

@ -3,6 +3,7 @@ import _DatePicker, { DatePickerProps } from './DatePicker';
export const DatePicker = withInstall(_DatePicker); export const DatePicker = withInstall(_DatePicker);
export default DatePicker; export default DatePicker;
export { datePickerProps } from './DatePicker';
export type { DatePickerProps }; export type { DatePickerProps };
export type { DatePickerColumnType } from './DatePicker'; export type { DatePickerColumnType } from './DatePicker';

View File

@ -42,7 +42,7 @@ import type {
const [name, bem, t] = createNamespace('dialog'); const [name, bem, t] = createNamespace('dialog');
const dialogProps = extend({}, popupSharedProps, { export const dialogProps = extend({}, popupSharedProps, {
title: String, title: String,
theme: String as PropType<DialogTheme>, theme: String as PropType<DialogTheme>,
width: numericProp, width: numericProp,

View File

@ -3,6 +3,7 @@ import _Dialog from './Dialog';
export const Dialog = withInstall(_Dialog); export const Dialog = withInstall(_Dialog);
export default Dialog; export default Dialog;
export { dialogProps } from './Dialog';
export { export {
showDialog, showDialog,
closeDialog, closeDialog,

View File

@ -5,7 +5,7 @@ const [name, bem] = createNamespace('divider');
export type DividerContentPosition = 'left' | 'center' | 'right'; export type DividerContentPosition = 'left' | 'center' | 'right';
const dividerProps = { export const dividerProps = {
dashed: Boolean, dashed: Boolean,
hairline: truthProp, hairline: truthProp,
contentPosition: makeStringProp<DividerContentPosition>('center'), contentPosition: makeStringProp<DividerContentPosition>('center'),

View File

@ -3,6 +3,7 @@ import _Divider from './Divider';
export const Divider = withInstall(_Divider); export const Divider = withInstall(_Divider);
export default Divider; export default Divider;
export { dividerProps } from './Divider';
export type { DividerProps, DividerContentPosition } from './Divider'; export type { DividerProps, DividerContentPosition } from './Divider';
declare module 'vue' { declare module 'vue' {

View File

@ -32,7 +32,7 @@ import type { DropdownItemOption } from './types';
const [name, bem] = createNamespace('dropdown-item'); const [name, bem] = createNamespace('dropdown-item');
const dropdownItemProps = { export const dropdownItemProps = {
title: String, title: String,
options: makeArrayProp<DropdownItemOption>(), options: makeArrayProp<DropdownItemOption>(),
disabled: Boolean, disabled: Boolean,

View File

@ -3,6 +3,7 @@ import _DropdownItem, { DropdownItemProps } from './DropdownItem';
export const DropdownItem = withInstall(_DropdownItem); export const DropdownItem = withInstall(_DropdownItem);
export default DropdownItem; export default DropdownItem;
export { dropdownItemProps } from './DropdownItem';
export type { DropdownItemProps }; export type { DropdownItemProps };
export type { DropdownItemInstance, DropdownItemOption } from './types'; export type { DropdownItemInstance, DropdownItemOption } from './types';

View File

@ -35,7 +35,7 @@ import type { DropdownMenuProvide, DropdownMenuDirection } from './types';
const [name, bem] = createNamespace('dropdown-menu'); const [name, bem] = createNamespace('dropdown-menu');
const dropdownMenuProps = { export const dropdownMenuProps = {
overlay: truthProp, overlay: truthProp,
zIndex: numericProp, zIndex: numericProp,
duration: makeNumericProp(0.2), duration: makeNumericProp(0.2),

View File

@ -3,6 +3,7 @@ import _DropdownMenu, { DropdownMenuProps } from './DropdownMenu';
export const DropdownMenu = withInstall(_DropdownMenu); export const DropdownMenu = withInstall(_DropdownMenu);
export default DropdownMenu; export default DropdownMenu;
export { dropdownMenuProps } from './DropdownMenu';
export type { DropdownMenuProps }; export type { DropdownMenuProps };
export type { DropdownMenuDirection } from './types'; export type { DropdownMenuDirection } from './types';

View File

@ -9,7 +9,7 @@ import {
const [name, bem] = createNamespace('empty'); const [name, bem] = createNamespace('empty');
const emptyProps = { export const emptyProps = {
image: makeStringProp('default'), image: makeStringProp('default'),
imageSize: [Number, String, Array] as PropType<Numeric | [Numeric, Numeric]>, imageSize: [Number, String, Array] as PropType<Numeric | [Numeric, Numeric]>,
description: String, description: String,

View File

@ -3,6 +3,7 @@ import _Empty from './Empty';
export const Empty = withInstall(_Empty); export const Empty = withInstall(_Empty);
export default Empty; export default Empty;
export { emptyProps } from './Empty';
export type { EmptyProps } from './Empty'; export type { EmptyProps } from './Empty';
declare module 'vue' { declare module 'vue' {

View File

@ -105,7 +105,7 @@ export const fieldSharedProps = {
}, },
}; };
const fieldProps = extend({}, cellSharedProps, fieldSharedProps, { export const fieldProps = extend({}, cellSharedProps, fieldSharedProps, {
rows: numericProp, rows: numericProp,
type: makeStringProp<FieldType>('text'), type: makeStringProp<FieldType>('text'),
rules: Array as PropType<FieldRule[]>, rules: Array as PropType<FieldRule[]>,

View File

@ -3,6 +3,7 @@ import _Field, { FieldProps } from './Field';
export const Field = withInstall(_Field); export const Field = withInstall(_Field);
export default Field; export default Field;
export { fieldProps } from './Field';
export type { FieldProps }; export type { FieldProps };
export type { export type {
FieldType, FieldType,

View File

@ -24,7 +24,7 @@ import type { FormExpose } from './types';
const [name, bem] = createNamespace('form'); const [name, bem] = createNamespace('form');
const formProps = { export const formProps = {
colon: Boolean, colon: Boolean,
disabled: Boolean, disabled: Boolean,
readonly: Boolean, readonly: Boolean,

View File

@ -3,6 +3,7 @@ import _Form, { FormProps } from './Form';
export const Form = withInstall(_Form); export const Form = withInstall(_Form);
export default Form; export default Form;
export { formProps } from './Form';
export type { FormProps }; export type { FormProps };
export type { FormInstance } from './types'; export type { FormInstance } from './types';

View File

@ -26,7 +26,7 @@ import { Badge, type BadgeProps } from '../badge';
const [name, bem] = createNamespace('grid-item'); const [name, bem] = createNamespace('grid-item');
const gridItemProps = extend({}, routeProps, { export const gridItemProps = extend({}, routeProps, {
dot: Boolean, dot: Boolean,
text: String, text: String,
icon: String, icon: String,

View File

@ -3,6 +3,7 @@ import _GridItem from './GridItem';
export const GridItem = withInstall(_GridItem); export const GridItem = withInstall(_GridItem);
export default GridItem; export default GridItem;
export { gridItemProps } from './GridItem';
export type { GridItemProps } from './GridItem'; export type { GridItemProps } from './GridItem';
declare module 'vue' { declare module 'vue' {

View File

@ -18,7 +18,7 @@ const [name, bem] = createNamespace('grid');
export type GridDirection = 'horizontal' | 'vertical'; export type GridDirection = 'horizontal' | 'vertical';
const gridProps = { export const gridProps = {
square: Boolean, square: Boolean,
center: truthProp, center: truthProp,
border: truthProp, border: truthProp,

View File

@ -3,6 +3,7 @@ import _Grid from './Grid';
export const Grid = withInstall(_Grid); export const Grid = withInstall(_Grid);
export default Grid; export default Grid;
export { gridProps } from './Grid';
export type { GridProps, GridDirection } from './Grid'; export type { GridProps, GridDirection } from './Grid';
declare module 'vue' { declare module 'vue' {

View File

@ -18,7 +18,7 @@ const [name, bem] = createNamespace('icon');
const isImage = (name?: string) => name?.includes('/'); const isImage = (name?: string) => name?.includes('/');
const iconProps = { export const iconProps = {
dot: Boolean, dot: Boolean,
tag: makeStringProp<keyof HTMLElementTagNameMap>('i'), tag: makeStringProp<keyof HTMLElementTagNameMap>('i'),
name: String, name: String,

View File

@ -3,6 +3,7 @@ import _Icon from './Icon';
export const Icon = withInstall(_Icon); export const Icon = withInstall(_Icon);
export default Icon; export default Icon;
export { iconProps } from './Icon';
export type { IconProps } from './Icon'; export type { IconProps } from './Icon';
declare module 'vue' { declare module 'vue' {

View File

@ -48,7 +48,7 @@ const popupProps = [
'closeOnPopstate', 'closeOnPopstate',
] as const; ] as const;
const imagePreviewProps = { export const imagePreviewProps = {
show: Boolean, show: Boolean,
loop: truthProp, loop: truthProp,
images: makeArrayProp<string>(), images: makeArrayProp<string>(),

View File

@ -4,6 +4,7 @@ import type { ImagePreviewProps } from './ImagePreview';
export const ImagePreview = withInstall(_ImagePreview); export const ImagePreview = withInstall(_ImagePreview);
export default ImagePreview; export default ImagePreview;
export { imagePreviewProps } from './ImagePreview';
export { showImagePreview } from './function-call'; export { showImagePreview } from './function-call';
export type { ImagePreviewProps }; export type { ImagePreviewProps };

View File

@ -38,7 +38,7 @@ export type ImagePosition =
| 'left' | 'left'
| string; | string;
const imageProps = { export const imageProps = {
src: String, src: String,
alt: String, alt: String,
fit: String as PropType<ImageFit>, fit: String as PropType<ImageFit>,

View File

@ -3,6 +3,7 @@ import _Image from './Image';
export const Image = withInstall(_Image); export const Image = withInstall(_Image);
export default Image; export default Image;
export { imageProps } from './Image';
export type { ImageFit, ImageProps } from './Image'; export type { ImageFit, ImageProps } from './Image';
declare module 'vue' { declare module 'vue' {

View File

@ -24,7 +24,7 @@ import { useExpose } from '../composables/use-expose';
const [name, bem] = createNamespace('index-anchor'); const [name, bem] = createNamespace('index-anchor');
const indexAnchorProps = { export const indexAnchorProps = {
index: numericProp, index: numericProp,
}; };

View File

@ -3,6 +3,7 @@ import _IndexAnchor from './IndexAnchor';
export const IndexAnchor = withInstall(_IndexAnchor); export const IndexAnchor = withInstall(_IndexAnchor);
export default IndexAnchor; export default IndexAnchor;
export { indexAnchorProps } from './IndexAnchor';
export type { IndexAnchorProps } from './IndexAnchor'; export type { IndexAnchorProps } from './IndexAnchor';
declare module 'vue' { declare module 'vue' {

View File

@ -52,7 +52,7 @@ function genAlphabet() {
const [name, bem] = createNamespace('index-bar'); const [name, bem] = createNamespace('index-bar');
const indexBarProps = { export const indexBarProps = {
sticky: truthProp, sticky: truthProp,
zIndex: numericProp, zIndex: numericProp,
teleport: [String, Object] as PropType<TeleportProps['to']>, teleport: [String, Object] as PropType<TeleportProps['to']>,

View File

@ -3,6 +3,7 @@ import _IndexBar, { IndexBarProps } from './IndexBar';
export const IndexBar = withInstall(_IndexBar); export const IndexBar = withInstall(_IndexBar);
export default IndexBar; export default IndexBar;
export { indexBarProps } from './IndexBar';
export type { IndexBarProps }; export type { IndexBarProps };
export type { IndexBarInstance } from './types'; export type { IndexBarInstance } from './types';

View File

@ -30,7 +30,7 @@ import type { ListExpose, ListDirection } from './types';
const [name, bem, t] = createNamespace('list'); const [name, bem, t] = createNamespace('list');
const listProps = { export const listProps = {
error: Boolean, error: Boolean,
offset: makeNumericProp(300), offset: makeNumericProp(300),
loading: Boolean, loading: Boolean,

View File

@ -3,6 +3,7 @@ import _List, { ListProps } from './List';
export const List = withInstall(_List); export const List = withInstall(_List);
export default List; export default List;
export { listProps } from './List';
export type { ListProps }; export type { ListProps };
export type { ListInstance, ListDirection } from './types'; export type { ListInstance, ListDirection } from './types';

View File

@ -22,7 +22,7 @@ const CircularIcon = (
export type LoadingType = 'circular' | 'spinner'; export type LoadingType = 'circular' | 'spinner';
const loadingProps = { export const loadingProps = {
size: numericProp, size: numericProp,
type: makeStringProp<LoadingType>('circular'), type: makeStringProp<LoadingType>('circular'),
color: String, color: String,

View File

@ -3,6 +3,7 @@ import _Loading from './Loading';
export const Loading = withInstall(_Loading); export const Loading = withInstall(_Loading);
export default Loading; export default Loading;
export { loadingProps } from './Loading';
export type { LoadingType, LoadingProps } from './Loading'; export type { LoadingType, LoadingProps } from './Loading';
declare module 'vue' { declare module 'vue' {

View File

@ -23,7 +23,7 @@ import { Icon } from '../icon';
const [name, bem] = createNamespace('nav-bar'); const [name, bem] = createNamespace('nav-bar');
const navBarProps = { export const navBarProps = {
title: String, title: String,
fixed: Boolean, fixed: Boolean,
zIndex: numericProp, zIndex: numericProp,

View File

@ -3,6 +3,7 @@ import _NavBar from './NavBar';
export const NavBar = withInstall(_NavBar); export const NavBar = withInstall(_NavBar);
export default NavBar; export default NavBar;
export { navBarProps } from './NavBar';
export type { NavBarProps } from './NavBar'; export type { NavBarProps } from './NavBar';
declare module 'vue' { declare module 'vue' {

View File

@ -29,7 +29,7 @@ import { NoticeBarMode } from './types';
const [name, bem] = createNamespace('notice-bar'); const [name, bem] = createNamespace('notice-bar');
const noticeBarProps = { export const noticeBarProps = {
text: String, text: String,
mode: String as PropType<NoticeBarMode>, mode: String as PropType<NoticeBarMode>,
color: String, color: String,

View File

@ -3,6 +3,7 @@ import _NoticeBar, { NoticeBarProps } from './NoticeBar';
export const NoticeBar = withInstall(_NoticeBar); export const NoticeBar = withInstall(_NoticeBar);
export default NoticeBar; export default NoticeBar;
export { noticeBarProps } from './NoticeBar';
export type { NoticeBarProps }; export type { NoticeBarProps };
export type { NoticeBarMode, NoticeBarInstance } from './types'; export type { NoticeBarMode, NoticeBarInstance } from './types';

View File

@ -12,7 +12,7 @@ import type { NotifyType, NotifyPosition } from './types';
const [name, bem] = createNamespace('notify'); const [name, bem] = createNamespace('notify');
const notifyProps = extend({}, popupSharedProps, { export const notifyProps = extend({}, popupSharedProps, {
type: makeStringProp<NotifyType>('danger'), type: makeStringProp<NotifyType>('danger'),
color: String, color: String,
message: numericProp, message: numericProp,

View File

@ -3,6 +3,7 @@ import _Notify from './Notify';
export const Notify = withInstall(_Notify); export const Notify = withInstall(_Notify);
export default Notify; export default Notify;
export { notifyProps } from './Notify';
export { export {
showNotify, showNotify,
closeNotify, closeNotify,

View File

@ -41,7 +41,7 @@ type KeyConfig = {
wider?: boolean; wider?: boolean;
}; };
const numberKeyboardProps = { export const numberKeyboardProps = {
show: Boolean, show: Boolean,
title: String, title: String,
theme: makeStringProp<NumberKeyboardTheme>('default'), theme: makeStringProp<NumberKeyboardTheme>('default'),

View File

@ -3,6 +3,7 @@ import _NumberKeyboard from './NumberKeyboard';
export const NumberKeyboard = withInstall(_NumberKeyboard); export const NumberKeyboard = withInstall(_NumberKeyboard);
export default NumberKeyboard; export default NumberKeyboard;
export { numberKeyboardProps } from './NumberKeyboard';
export type { export type {
NumberKeyboardProps, NumberKeyboardProps,
NumberKeyboardTheme, NumberKeyboardTheme,

View File

@ -25,7 +25,7 @@ import { useLazyRender } from '../composables/use-lazy-render';
const [name, bem] = createNamespace('overlay'); const [name, bem] = createNamespace('overlay');
const overlayProps = { export const overlayProps = {
show: Boolean, show: Boolean,
zIndex: numericProp, zIndex: numericProp,
duration: numericProp, duration: numericProp,

View File

@ -3,6 +3,7 @@ import _Overlay from './Overlay';
export const Overlay = withInstall(_Overlay); export const Overlay = withInstall(_Overlay);
export default Overlay; export default Overlay;
export { overlayProps } from './Overlay';
export type { OverlayProps } from './Overlay'; export type { OverlayProps } from './Overlay';
declare module 'vue' { declare module 'vue' {

View File

@ -30,7 +30,7 @@ const makePage = (
export type PaginationMode = 'simple' | 'multi'; export type PaginationMode = 'simple' | 'multi';
const paginationProps = { export const paginationProps = {
mode: makeStringProp<PaginationMode>('multi'), mode: makeStringProp<PaginationMode>('multi'),
prevText: String, prevText: String,
nextText: String, nextText: String,

View File

@ -3,6 +3,7 @@ import _Pagination from './Pagination';
export const Pagination = withInstall(_Pagination); export const Pagination = withInstall(_Pagination);
export default Pagination; export default Pagination;
export { paginationProps } from './Pagination';
export type { PaginationMode, PaginationProps } from './Pagination'; export type { PaginationMode, PaginationProps } from './Pagination';
declare module 'vue' { declare module 'vue' {

Some files were not shown because too many files have changed in this diff Show More