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 actionBarButtonProps = extend({}, routeProps, {
export const actionBarButtonProps = extend({}, routeProps, {
type: String as PropType<ButtonType>,
text: String,
icon: String,

View File

@ -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' {

View File

@ -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,

View File

@ -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' {

View File

@ -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,
};

View File

@ -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' {

View File

@ -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>(),

View File

@ -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' {

View File

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

View File

@ -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,

View File

@ -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,

View File

@ -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';

View File

@ -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>(),

View File

@ -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';

View File

@ -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'),

View File

@ -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' {

View File

@ -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,

View File

@ -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,

View File

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

View File

@ -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,

View File

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

View File

@ -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' {

View File

@ -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,

View File

@ -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';

View File

@ -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,

View File

@ -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' {

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>;

View File

@ -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' {

View File

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

View File

@ -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,

View File

@ -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,
});

View File

@ -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,

View File

@ -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'),

View File

@ -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' {

View File

@ -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,

View File

@ -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' {

View File

@ -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,

View File

@ -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';

View File

@ -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: {

View File

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

View File

@ -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,

View File

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

View File

@ -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'),

View File

@ -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' {

View File

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

View File

@ -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' {

View File

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

View File

@ -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' {

View File

@ -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,

View File

@ -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';

View File

@ -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,

View File

@ -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' {

View File

@ -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('¥'),

View File

@ -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' {

View File

@ -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'],

View File

@ -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';

View File

@ -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,

View File

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

View File

@ -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'),

View File

@ -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' {

View File

@ -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,

View File

@ -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';

View File

@ -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),

View File

@ -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';

View File

@ -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,

View File

@ -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' {

View File

@ -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[]>,

View File

@ -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,

View File

@ -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,

View File

@ -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';

View File

@ -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,

View File

@ -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' {

View File

@ -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,

View File

@ -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' {

View File

@ -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,

View File

@ -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' {

View File

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

View File

@ -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 };

View File

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

View File

@ -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' {

View File

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

View File

@ -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' {

View File

@ -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']>,

View File

@ -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';

View File

@ -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,

View File

@ -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';

View File

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

View File

@ -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' {

View File

@ -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,

View File

@ -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' {

View File

@ -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,

View File

@ -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';

View File

@ -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,

View File

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

View File

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

View File

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

View File

@ -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,

View File

@ -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' {

View File

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

View File

@ -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