mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
chore: improve withInstall typing (#9354)
* chore: improve withInstall typing * chore: upd * fix: missing entry
This commit is contained in:
parent
4cf5a6ba0d
commit
140fa0c180
@ -1,7 +1,5 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _ActionBarButton from './ActionBarButton';
|
import _ActionBarButton from './ActionBarButton';
|
||||||
|
|
||||||
const ActionBarButton = withInstall<typeof _ActionBarButton>(_ActionBarButton);
|
export const ActionBarButton = withInstall(_ActionBarButton);
|
||||||
|
|
||||||
export default ActionBarButton;
|
export default ActionBarButton;
|
||||||
export { ActionBarButton };
|
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _ActionBarIcon from './ActionBarIcon';
|
import _ActionBarIcon from './ActionBarIcon';
|
||||||
|
|
||||||
const ActionBarIcon = withInstall<typeof _ActionBarIcon>(_ActionBarIcon);
|
export const ActionBarIcon = withInstall(_ActionBarIcon);
|
||||||
|
|
||||||
export default ActionBarIcon;
|
export default ActionBarIcon;
|
||||||
export { ActionBarIcon };
|
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _ActionBar from './ActionBar';
|
import _ActionBar from './ActionBar';
|
||||||
|
|
||||||
const ActionBar = withInstall<typeof _ActionBar>(_ActionBar);
|
export const ActionBar = withInstall(_ActionBar);
|
||||||
|
|
||||||
export default ActionBar;
|
export default ActionBar;
|
||||||
export { ActionBar };
|
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _ActionSheet from './ActionSheet';
|
import _ActionSheet from './ActionSheet';
|
||||||
|
|
||||||
const ActionSheet = withInstall<typeof _ActionSheet>(_ActionSheet);
|
export const ActionSheet = withInstall(_ActionSheet);
|
||||||
|
|
||||||
export default ActionSheet;
|
export default ActionSheet;
|
||||||
export { ActionSheet };
|
|
||||||
export type { ActionSheetAction } from './ActionSheet';
|
export type { ActionSheetAction } from './ActionSheet';
|
||||||
|
@ -1,10 +1,8 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _AddressEdit from './AddressEdit';
|
import _AddressEdit from './AddressEdit';
|
||||||
|
|
||||||
const AddressEdit = withInstall<typeof _AddressEdit>(_AddressEdit);
|
export const AddressEdit = withInstall(_AddressEdit);
|
||||||
|
|
||||||
export default AddressEdit;
|
export default AddressEdit;
|
||||||
export { AddressEdit };
|
|
||||||
export type {
|
export type {
|
||||||
AddressEditInfo,
|
AddressEditInfo,
|
||||||
AddressEditInstance,
|
AddressEditInstance,
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _AddressList from './AddressList';
|
import _AddressList from './AddressList';
|
||||||
|
|
||||||
const AddressList = withInstall<typeof _AddressList>(_AddressList);
|
export const AddressList = withInstall(_AddressList);
|
||||||
|
|
||||||
export default AddressList;
|
export default AddressList;
|
||||||
export { AddressList };
|
|
||||||
export type { AddressListAddress } from './AddressListItem';
|
export type { AddressListAddress } from './AddressListItem';
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Area from './Area';
|
import _Area from './Area';
|
||||||
|
|
||||||
const Area = withInstall<typeof _Area>(_Area);
|
export const Area = withInstall(_Area);
|
||||||
|
|
||||||
export default Area;
|
export default Area;
|
||||||
export { Area };
|
|
||||||
export type { AreaList, AreaInstance, AreaColumnOption } from './types';
|
export type { AreaList, AreaInstance, AreaColumnOption } from './types';
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Badge from './Badge';
|
import _Badge from './Badge';
|
||||||
|
|
||||||
const Badge = withInstall<typeof _Badge>(_Badge);
|
export const Badge = withInstall(_Badge);
|
||||||
|
|
||||||
export default Badge;
|
export default Badge;
|
||||||
export { Badge };
|
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Button from './Button';
|
import _Button from './Button';
|
||||||
|
|
||||||
const Button = withInstall<typeof _Button>(_Button);
|
export const Button = withInstall(_Button);
|
||||||
|
|
||||||
export default Button;
|
export default Button;
|
||||||
export { Button };
|
|
||||||
export type { ButtonType, ButtonSize } from './Button';
|
export type { ButtonType, ButtonSize } from './Button';
|
||||||
|
@ -1,10 +1,8 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Calendar from './Calendar';
|
import _Calendar from './Calendar';
|
||||||
|
|
||||||
const Calendar = withInstall<typeof _Calendar>(_Calendar);
|
export const Calendar = withInstall(_Calendar);
|
||||||
|
|
||||||
export default Calendar;
|
export default Calendar;
|
||||||
export { Calendar };
|
|
||||||
export type {
|
export type {
|
||||||
CalendarType,
|
CalendarType,
|
||||||
CalendarDayItem,
|
CalendarDayItem,
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Card from './Card';
|
import _Card from './Card';
|
||||||
|
|
||||||
const Card = withInstall<typeof _Card>(_Card);
|
export const Card = withInstall(_Card);
|
||||||
|
|
||||||
export default Card;
|
export default Card;
|
||||||
export { Card };
|
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Cascader from './Cascader';
|
import _Cascader from './Cascader';
|
||||||
|
|
||||||
const Cascader = withInstall<typeof _Cascader>(_Cascader);
|
export const Cascader = withInstall(_Cascader);
|
||||||
|
|
||||||
export default Cascader;
|
export default Cascader;
|
||||||
export { Cascader };
|
|
||||||
export type { CascaderOption, CascaderFieldNames } from './Cascader';
|
export type { CascaderOption, CascaderFieldNames } from './Cascader';
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _CellGroup from './CellGroup';
|
import _CellGroup from './CellGroup';
|
||||||
|
|
||||||
const CellGroup = withInstall<typeof _CellGroup>(_CellGroup);
|
export const CellGroup = withInstall(_CellGroup);
|
||||||
|
|
||||||
export default CellGroup;
|
export default CellGroup;
|
||||||
export { CellGroup };
|
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Cell from './Cell';
|
import _Cell from './Cell';
|
||||||
|
|
||||||
const Cell = withInstall<typeof _Cell>(_Cell);
|
export const Cell = withInstall(_Cell);
|
||||||
|
|
||||||
export default Cell;
|
export default Cell;
|
||||||
export { Cell };
|
|
||||||
export type { CellArrowDirection } from './Cell';
|
export type { CellArrowDirection } from './Cell';
|
||||||
|
@ -1,10 +1,8 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _CheckboxGroup from './CheckboxGroup';
|
import _CheckboxGroup from './CheckboxGroup';
|
||||||
|
|
||||||
const CheckboxGroup = withInstall<typeof _CheckboxGroup>(_CheckboxGroup);
|
export const CheckboxGroup = withInstall(_CheckboxGroup);
|
||||||
|
|
||||||
export default CheckboxGroup;
|
export default CheckboxGroup;
|
||||||
export { CheckboxGroup };
|
|
||||||
export type {
|
export type {
|
||||||
CheckboxGroupInstance,
|
CheckboxGroupInstance,
|
||||||
CheckboxGroupToggleAllOptions,
|
CheckboxGroupToggleAllOptions,
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Checkbox from './Checkbox';
|
import _Checkbox from './Checkbox';
|
||||||
|
|
||||||
const Checkbox = withInstall<typeof _Checkbox>(_Checkbox);
|
export const Checkbox = withInstall(_Checkbox);
|
||||||
|
|
||||||
export default Checkbox;
|
export default Checkbox;
|
||||||
export { Checkbox };
|
|
||||||
export type { CheckboxInstance } from './types';
|
export type { CheckboxInstance } from './types';
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Circle from './Circle';
|
import _Circle from './Circle';
|
||||||
|
|
||||||
const Circle = withInstall<typeof _Circle>(_Circle);
|
export const Circle = withInstall(_Circle);
|
||||||
|
|
||||||
export default Circle;
|
export default Circle;
|
||||||
export { Circle };
|
|
||||||
export type { CircleStartPosition } from './Circle';
|
export type { CircleStartPosition } from './Circle';
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Col from './Col';
|
import _Col from './Col';
|
||||||
|
|
||||||
const Col = withInstall<typeof _Col>(_Col);
|
export const Col = withInstall(_Col);
|
||||||
|
|
||||||
export default Col;
|
export default Col;
|
||||||
export { Col };
|
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _CollapseItem from './CollapseItem';
|
import _CollapseItem from './CollapseItem';
|
||||||
|
|
||||||
const CollapseItem = withInstall<typeof _CollapseItem>(_CollapseItem);
|
export const CollapseItem = withInstall(_CollapseItem);
|
||||||
|
|
||||||
export default CollapseItem;
|
export default CollapseItem;
|
||||||
export { CollapseItem };
|
|
||||||
export type { CollapseItemInstance } from './types';
|
export type { CollapseItemInstance } from './types';
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Collapse from './Collapse';
|
import _Collapse from './Collapse';
|
||||||
|
|
||||||
const Collapse = withInstall<typeof _Collapse>(_Collapse);
|
export const Collapse = withInstall(_Collapse);
|
||||||
|
|
||||||
export default Collapse;
|
export default Collapse;
|
||||||
export { Collapse };
|
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _ConfigProvider from './ConfigProvider';
|
import _ConfigProvider from './ConfigProvider';
|
||||||
|
|
||||||
const ConfigProvider = withInstall<typeof _ConfigProvider>(_ConfigProvider);
|
export const ConfigProvider = withInstall(_ConfigProvider);
|
||||||
|
|
||||||
export default ConfigProvider;
|
export default ConfigProvider;
|
||||||
export { ConfigProvider };
|
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _ContactCard from './ContactCard';
|
import _ContactCard from './ContactCard';
|
||||||
|
|
||||||
const ContactCard = withInstall<typeof _ContactCard>(_ContactCard);
|
export const ContactCard = withInstall(_ContactCard);
|
||||||
|
|
||||||
export default ContactCard;
|
export default ContactCard;
|
||||||
export { ContactCard };
|
|
||||||
export type { ContactCardType } from './ContactCard';
|
export type { ContactCardType } from './ContactCard';
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _ContactEdit from './ContactEdit';
|
import _ContactEdit from './ContactEdit';
|
||||||
|
|
||||||
const ContactEdit = withInstall<typeof _ContactEdit>(_ContactEdit);
|
export const ContactEdit = withInstall(_ContactEdit);
|
||||||
|
|
||||||
export default ContactEdit;
|
export default ContactEdit;
|
||||||
export { ContactEdit };
|
|
||||||
export type { ContactEditInfo } from './ContactEdit';
|
export type { ContactEditInfo } from './ContactEdit';
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _ContactList from './ContactList';
|
import _ContactList from './ContactList';
|
||||||
|
|
||||||
const ContactList = withInstall<typeof _ContactList>(_ContactList);
|
export const ContactList = withInstall(_ContactList);
|
||||||
|
|
||||||
export default ContactList;
|
export default ContactList;
|
||||||
export { ContactList };
|
|
||||||
export type { ContactListItem } from './ContactList';
|
export type { ContactListItem } from './ContactList';
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _CountDown from './CountDown';
|
import _CountDown from './CountDown';
|
||||||
|
|
||||||
const CountDown = withInstall<typeof _CountDown>(_CountDown);
|
export const CountDown = withInstall(_CountDown);
|
||||||
|
|
||||||
export default CountDown;
|
export default CountDown;
|
||||||
export { CountDown };
|
|
||||||
export type { CountDownInstance, CountDownCurrentTime } from './CountDown';
|
export type { CountDownInstance, CountDownCurrentTime } from './CountDown';
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _CouponCell from './CouponCell';
|
import _CouponCell from './CouponCell';
|
||||||
|
|
||||||
const CouponCell = withInstall<typeof _CouponCell>(_CouponCell);
|
export const CouponCell = withInstall(_CouponCell);
|
||||||
|
|
||||||
export default CouponCell;
|
export default CouponCell;
|
||||||
export { CouponCell };
|
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _CouponList from './CouponList';
|
import _CouponList from './CouponList';
|
||||||
|
|
||||||
const CouponList = withInstall<typeof _CouponList>(_CouponList);
|
export const CouponList = withInstall(_CouponList);
|
||||||
|
|
||||||
export default CouponList;
|
export default CouponList;
|
||||||
export { CouponList };
|
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Coupon from './Coupon';
|
import _Coupon from './Coupon';
|
||||||
|
|
||||||
const Coupon = withInstall<typeof _Coupon>(_Coupon);
|
export const Coupon = withInstall(_Coupon);
|
||||||
|
|
||||||
export default Coupon;
|
export default Coupon;
|
||||||
export { Coupon };
|
|
||||||
export type { CouponInfo } from './Coupon';
|
export type { CouponInfo } from './Coupon';
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _DatetimePicker from './DatetimePicker';
|
import _DatetimePicker from './DatetimePicker';
|
||||||
|
|
||||||
const DatetimePicker = withInstall<typeof _DatetimePicker>(_DatetimePicker);
|
export const DatetimePicker = withInstall(_DatetimePicker);
|
||||||
|
|
||||||
export default DatetimePicker;
|
export default DatetimePicker;
|
||||||
export { DatetimePicker };
|
|
||||||
export type { DatetimePickerType, DatetimePickerInstance } from './types';
|
export type { DatetimePickerType, DatetimePickerInstance } from './types';
|
||||||
|
@ -120,11 +120,11 @@ Dialog.resetDefaultOptions = () => {
|
|||||||
Dialog.currentOptions = extend({}, Dialog.defaultOptions);
|
Dialog.currentOptions = extend({}, Dialog.defaultOptions);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Dialog.Component = withInstall(VanDialog);
|
||||||
|
|
||||||
Dialog.install = (app: App) => {
|
Dialog.install = (app: App) => {
|
||||||
app.use(withInstall<typeof VanDialog>(VanDialog));
|
app.use(Dialog.Component);
|
||||||
app.config.globalProperties.$dialog = Dialog;
|
app.config.globalProperties.$dialog = Dialog;
|
||||||
};
|
};
|
||||||
|
|
||||||
Dialog.Component = withInstall<typeof VanDialog>(VanDialog);
|
|
||||||
|
|
||||||
export { Dialog };
|
export { Dialog };
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Divider from './Divider';
|
import _Divider from './Divider';
|
||||||
|
|
||||||
const Divider = withInstall<typeof _Divider>(_Divider);
|
export const Divider = withInstall(_Divider);
|
||||||
|
|
||||||
export default Divider;
|
export default Divider;
|
||||||
export { Divider };
|
|
||||||
export type { DividerContentPosition } from './Divider';
|
export type { DividerContentPosition } from './Divider';
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _DropdownItem from './DropdownItem';
|
import _DropdownItem from './DropdownItem';
|
||||||
|
|
||||||
const DropdownItem = withInstall<typeof _DropdownItem>(_DropdownItem);
|
export const DropdownItem = withInstall(_DropdownItem);
|
||||||
|
|
||||||
export default DropdownItem;
|
export default DropdownItem;
|
||||||
export { DropdownItem };
|
|
||||||
export type { DropdownItemInstance, DropdownItemOption } from './types';
|
export type { DropdownItemInstance, DropdownItemOption } from './types';
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _DropdownMenu from './DropdownMenu';
|
import _DropdownMenu from './DropdownMenu';
|
||||||
|
|
||||||
const DropdownMenu = withInstall<typeof _DropdownMenu>(_DropdownMenu);
|
export const DropdownMenu = withInstall(_DropdownMenu);
|
||||||
|
|
||||||
export default DropdownMenu;
|
export default DropdownMenu;
|
||||||
export { DropdownMenu };
|
|
||||||
export type { DropdownMenuDirection } from './types';
|
export type { DropdownMenuDirection } from './types';
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Empty from './Empty';
|
import _Empty from './Empty';
|
||||||
|
|
||||||
const Empty = withInstall<typeof _Empty>(_Empty);
|
export const Empty = withInstall(_Empty);
|
||||||
|
|
||||||
export default Empty;
|
export default Empty;
|
||||||
export { Empty };
|
|
||||||
|
@ -1,10 +1,8 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Field from './Field';
|
import _Field from './Field';
|
||||||
|
|
||||||
const Field = withInstall<typeof _Field>(_Field);
|
export const Field = withInstall(_Field);
|
||||||
|
|
||||||
export default Field;
|
export default Field;
|
||||||
export { Field };
|
|
||||||
export type {
|
export type {
|
||||||
FieldType,
|
FieldType,
|
||||||
FieldRule,
|
FieldRule,
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Form from './Form';
|
import _Form from './Form';
|
||||||
|
|
||||||
const Form = withInstall<typeof _Form>(_Form);
|
export const Form = withInstall(_Form);
|
||||||
|
|
||||||
export default Form;
|
export default Form;
|
||||||
export { Form };
|
|
||||||
export type { FormInstance } from './types';
|
export type { FormInstance } from './types';
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _GridItem from './GridItem';
|
import _GridItem from './GridItem';
|
||||||
|
|
||||||
const GridItem = withInstall<typeof _GridItem>(_GridItem);
|
export const GridItem = withInstall(_GridItem);
|
||||||
|
|
||||||
export default GridItem;
|
export default GridItem;
|
||||||
export { GridItem };
|
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Grid from './Grid';
|
import _Grid from './Grid';
|
||||||
|
|
||||||
const Grid = withInstall<typeof _Grid>(_Grid);
|
export const Grid = withInstall(_Grid);
|
||||||
|
|
||||||
export default Grid;
|
export default Grid;
|
||||||
export { Grid };
|
|
||||||
export type { GridDirection } from './Grid';
|
export type { GridDirection } from './Grid';
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Icon from './Icon';
|
import _Icon from './Icon';
|
||||||
|
|
||||||
const Icon = withInstall<typeof _Icon>(_Icon);
|
export const Icon = withInstall(_Icon);
|
||||||
|
|
||||||
export default Icon;
|
export default Icon;
|
||||||
export { Icon };
|
|
||||||
|
@ -70,10 +70,10 @@ const ImagePreview = (
|
|||||||
return instance;
|
return instance;
|
||||||
};
|
};
|
||||||
|
|
||||||
ImagePreview.Component = withInstall<typeof VanImagePreview>(VanImagePreview);
|
ImagePreview.Component = withInstall(VanImagePreview);
|
||||||
|
|
||||||
ImagePreview.install = (app: App) => {
|
ImagePreview.install = (app: App) => {
|
||||||
app.use(withInstall<typeof VanImagePreview>(VanImagePreview));
|
app.use(ImagePreview.Component);
|
||||||
};
|
};
|
||||||
|
|
||||||
export { ImagePreview };
|
export { ImagePreview };
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Image from './Image';
|
import _Image from './Image';
|
||||||
|
|
||||||
const Image = withInstall<typeof _Image>(_Image);
|
export const Image = withInstall(_Image);
|
||||||
|
|
||||||
export default Image;
|
export default Image;
|
||||||
export { Image };
|
|
||||||
export type { ImageFit } from './Image';
|
export type { ImageFit } from './Image';
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _IndexAnchor from './IndexAnchor';
|
import _IndexAnchor from './IndexAnchor';
|
||||||
|
|
||||||
const IndexAnchor = withInstall<typeof _IndexAnchor>(_IndexAnchor);
|
export const IndexAnchor = withInstall(_IndexAnchor);
|
||||||
|
|
||||||
export default IndexAnchor;
|
export default IndexAnchor;
|
||||||
export { IndexAnchor };
|
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _IndexBar from './IndexBar';
|
import _IndexBar from './IndexBar';
|
||||||
|
|
||||||
const IndexBar = withInstall<typeof _IndexBar>(_IndexBar);
|
export const IndexBar = withInstall(_IndexBar);
|
||||||
|
|
||||||
export default IndexBar;
|
export default IndexBar;
|
||||||
export { IndexBar };
|
|
||||||
export type { IndexBarInstance } from './types';
|
export type { IndexBarInstance } from './types';
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _List from './List';
|
import _List from './List';
|
||||||
|
|
||||||
const List = withInstall<typeof _List>(_List);
|
export const List = withInstall(_List);
|
||||||
|
|
||||||
export default List;
|
export default List;
|
||||||
export { List };
|
|
||||||
export type { ListInstance, ListDirection } from './types';
|
export type { ListInstance, ListDirection } from './types';
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Loading from './Loading';
|
import _Loading from './Loading';
|
||||||
|
|
||||||
const Loading = withInstall<typeof _Loading>(_Loading);
|
export const Loading = withInstall(_Loading);
|
||||||
|
|
||||||
export default Loading;
|
export default Loading;
|
||||||
export { Loading };
|
|
||||||
export type { LoadingType } from './Loading';
|
export type { LoadingType } from './Loading';
|
||||||
|
@ -10,7 +10,7 @@ const messages = reactive<Messages>({
|
|||||||
'zh-CN': defaultMessages,
|
'zh-CN': defaultMessages,
|
||||||
});
|
});
|
||||||
|
|
||||||
const Locale = {
|
export const Locale = {
|
||||||
messages(): Message {
|
messages(): Message {
|
||||||
return messages[lang.value];
|
return messages[lang.value];
|
||||||
},
|
},
|
||||||
@ -26,4 +26,3 @@ const Locale = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export default Locale;
|
export default Locale;
|
||||||
export { Locale };
|
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _NavBar from './NavBar';
|
import _NavBar from './NavBar';
|
||||||
|
|
||||||
const NavBar = withInstall<typeof _NavBar>(_NavBar);
|
export const NavBar = withInstall(_NavBar);
|
||||||
|
|
||||||
export default NavBar;
|
export default NavBar;
|
||||||
export { NavBar };
|
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _NoticeBar from './NoticeBar';
|
import _NoticeBar from './NoticeBar';
|
||||||
|
|
||||||
const NoticeBar = withInstall<typeof _NoticeBar>(_NoticeBar);
|
export const NoticeBar = withInstall(_NoticeBar);
|
||||||
|
|
||||||
export default NoticeBar;
|
export default NoticeBar;
|
||||||
export { NoticeBar };
|
|
||||||
export type { NoticeBarMode, NoticeBarInstance } from './types';
|
export type { NoticeBarMode, NoticeBarInstance } from './types';
|
||||||
|
@ -92,11 +92,11 @@ Notify.resetDefaultOptions = () => {
|
|||||||
Notify.currentOptions = defaultOptions();
|
Notify.currentOptions = defaultOptions();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Notify.Component = withInstall(VanNotify);
|
||||||
|
|
||||||
Notify.install = (app: App) => {
|
Notify.install = (app: App) => {
|
||||||
app.use(withInstall<typeof VanNotify>(VanNotify));
|
app.use(Notify.Component);
|
||||||
app.config.globalProperties.$notify = Notify;
|
app.config.globalProperties.$notify = Notify;
|
||||||
};
|
};
|
||||||
|
|
||||||
Notify.Component = withInstall<typeof VanNotify>(VanNotify);
|
|
||||||
|
|
||||||
export { Notify };
|
export { Notify };
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _NumberKeyboard from './NumberKeyboard';
|
import _NumberKeyboard from './NumberKeyboard';
|
||||||
|
|
||||||
const NumberKeyboard = withInstall<typeof _NumberKeyboard>(_NumberKeyboard);
|
export const NumberKeyboard = withInstall(_NumberKeyboard);
|
||||||
|
|
||||||
export default NumberKeyboard;
|
export default NumberKeyboard;
|
||||||
export { NumberKeyboard };
|
|
||||||
export type { NumberKeyboardTheme } from './NumberKeyboard';
|
export type { NumberKeyboardTheme } from './NumberKeyboard';
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Overlay from './Overlay';
|
import _Overlay from './Overlay';
|
||||||
|
|
||||||
const Overlay = withInstall<typeof _Overlay>(_Overlay);
|
export const Overlay = withInstall(_Overlay);
|
||||||
|
|
||||||
export default Overlay;
|
export default Overlay;
|
||||||
export { Overlay };
|
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Pagination from './Pagination';
|
import _Pagination from './Pagination';
|
||||||
|
|
||||||
const Pagination = withInstall<typeof _Pagination>(_Pagination);
|
export const Pagination = withInstall(_Pagination);
|
||||||
|
|
||||||
export default Pagination;
|
export default Pagination;
|
||||||
export { Pagination };
|
|
||||||
export type { PaginationMode } from './Pagination';
|
export type { PaginationMode } from './Pagination';
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _PasswordInput from './PasswordInput';
|
import _PasswordInput from './PasswordInput';
|
||||||
|
|
||||||
const PasswordInput = withInstall<typeof _PasswordInput>(_PasswordInput);
|
export const PasswordInput = withInstall(_PasswordInput);
|
||||||
|
|
||||||
export default PasswordInput;
|
export default PasswordInput;
|
||||||
export { PasswordInput };
|
|
||||||
|
@ -1,10 +1,8 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Picker from './Picker';
|
import _Picker from './Picker';
|
||||||
|
|
||||||
const Picker = withInstall<typeof _Picker>(_Picker);
|
export const Picker = withInstall(_Picker);
|
||||||
|
|
||||||
export default Picker;
|
export default Picker;
|
||||||
export { Picker };
|
|
||||||
export type {
|
export type {
|
||||||
PickerColumn,
|
PickerColumn,
|
||||||
PickerOption,
|
PickerOption,
|
||||||
|
@ -1,10 +1,8 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Popover from './Popover';
|
import _Popover from './Popover';
|
||||||
|
|
||||||
const Popover = withInstall<typeof _Popover>(_Popover);
|
export const Popover = withInstall(_Popover);
|
||||||
|
|
||||||
export default Popover;
|
export default Popover;
|
||||||
export { Popover };
|
|
||||||
export type {
|
export type {
|
||||||
PopoverTheme,
|
PopoverTheme,
|
||||||
PopoverAction,
|
PopoverAction,
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Popup from './Popup';
|
import _Popup from './Popup';
|
||||||
|
|
||||||
const Popup = withInstall<typeof _Popup>(_Popup);
|
export const Popup = withInstall(_Popup);
|
||||||
|
|
||||||
export default Popup;
|
export default Popup;
|
||||||
export { Popup };
|
|
||||||
export type { PopupPosition, PopupCloseIconPosition } from './Popup';
|
export type { PopupPosition, PopupCloseIconPosition } from './Popup';
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Progress from './Progress';
|
import _Progress from './Progress';
|
||||||
|
|
||||||
const Progress = withInstall<typeof _Progress>(_Progress);
|
export const Progress = withInstall(_Progress);
|
||||||
|
|
||||||
export default Progress;
|
export default Progress;
|
||||||
export { Progress };
|
|
||||||
export type { ProgressInstance } from './types';
|
export type { ProgressInstance } from './types';
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _PullRefresh from './PullRefresh';
|
import _PullRefresh from './PullRefresh';
|
||||||
|
|
||||||
const PullRefresh = withInstall<typeof _PullRefresh>(_PullRefresh);
|
export const PullRefresh = withInstall(_PullRefresh);
|
||||||
|
|
||||||
export default PullRefresh;
|
export default PullRefresh;
|
||||||
export { PullRefresh };
|
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _RadioGroup from './RadioGroup';
|
import _RadioGroup from './RadioGroup';
|
||||||
|
|
||||||
const RadioGroup = withInstall<typeof _RadioGroup>(_RadioGroup);
|
export const RadioGroup = withInstall(_RadioGroup);
|
||||||
|
|
||||||
export default RadioGroup;
|
export default RadioGroup;
|
||||||
export { RadioGroup };
|
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Radio from './Radio';
|
import _Radio from './Radio';
|
||||||
|
|
||||||
const Radio = withInstall<typeof _Radio>(_Radio);
|
export const Radio = withInstall(_Radio);
|
||||||
|
|
||||||
export default Radio;
|
export default Radio;
|
||||||
export { Radio };
|
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Rate from './Rate';
|
import _Rate from './Rate';
|
||||||
|
|
||||||
const Rate = withInstall<typeof _Rate>(_Rate);
|
export const Rate = withInstall(_Rate);
|
||||||
|
|
||||||
export default Rate;
|
export default Rate;
|
||||||
export { Rate };
|
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Row from './Row';
|
import _Row from './Row';
|
||||||
|
|
||||||
const Row = withInstall<typeof _Row>(_Row);
|
export const Row = withInstall(_Row);
|
||||||
|
|
||||||
export default Row;
|
export default Row;
|
||||||
export { Row };
|
|
||||||
export type { RowAlign, RowJustify } from './Row';
|
export type { RowAlign, RowJustify } from './Row';
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Search from './Search';
|
import _Search from './Search';
|
||||||
|
|
||||||
const Search = withInstall<typeof _Search>(_Search);
|
export const Search = withInstall(_Search);
|
||||||
|
|
||||||
export default Search;
|
export default Search;
|
||||||
export { Search };
|
|
||||||
export type { SearchShape, SearchInstance } from './types';
|
export type { SearchShape, SearchInstance } from './types';
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _ShareSheet from './ShareSheet';
|
import _ShareSheet from './ShareSheet';
|
||||||
|
|
||||||
const ShareSheet = withInstall<typeof _ShareSheet>(_ShareSheet);
|
export const ShareSheet = withInstall(_ShareSheet);
|
||||||
|
|
||||||
export default ShareSheet;
|
export default ShareSheet;
|
||||||
export { ShareSheet };
|
|
||||||
export type { ShareSheetOption, ShareSheetOptions } from './ShareSheet';
|
export type { ShareSheetOption, ShareSheetOptions } from './ShareSheet';
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _SidebarItem from './SidebarItem';
|
import _SidebarItem from './SidebarItem';
|
||||||
|
|
||||||
const SidebarItem = withInstall<typeof _SidebarItem>(_SidebarItem);
|
export const SidebarItem = withInstall(_SidebarItem);
|
||||||
|
|
||||||
export default SidebarItem;
|
export default SidebarItem;
|
||||||
export { SidebarItem };
|
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Sidebar from './Sidebar';
|
import _Sidebar from './Sidebar';
|
||||||
|
|
||||||
const Sidebar = withInstall<typeof _Sidebar>(_Sidebar);
|
export const Sidebar = withInstall(_Sidebar);
|
||||||
|
|
||||||
export default Sidebar;
|
export default Sidebar;
|
||||||
export { Sidebar };
|
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Skeleton from './Skeleton';
|
import _Skeleton from './Skeleton';
|
||||||
|
|
||||||
const Skeleton = withInstall<typeof _Skeleton>(_Skeleton);
|
export const Skeleton = withInstall(_Skeleton);
|
||||||
|
|
||||||
export default Skeleton;
|
export default Skeleton;
|
||||||
export { Skeleton };
|
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Slider from './Slider';
|
import _Slider from './Slider';
|
||||||
|
|
||||||
const Slider = withInstall<typeof _Slider>(_Slider);
|
export const Slider = withInstall(_Slider);
|
||||||
|
|
||||||
export default Slider;
|
export default Slider;
|
||||||
export { Slider };
|
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Step from './Step';
|
import _Step from './Step';
|
||||||
|
|
||||||
const Step = withInstall<typeof _Step>(_Step);
|
export const Step = withInstall(_Step);
|
||||||
|
|
||||||
export default Step;
|
export default Step;
|
||||||
export { Step };
|
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Stepper, { StepperTheme } from './Stepper';
|
import _Stepper, { StepperTheme } from './Stepper';
|
||||||
|
|
||||||
const Stepper = withInstall<typeof _Stepper>(_Stepper);
|
export const Stepper = withInstall(_Stepper);
|
||||||
|
|
||||||
export default Stepper;
|
export default Stepper;
|
||||||
export { Stepper };
|
|
||||||
export type { StepperTheme };
|
export type { StepperTheme };
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Steps from './Steps';
|
import _Steps from './Steps';
|
||||||
|
|
||||||
const Steps = withInstall<typeof _Steps>(_Steps);
|
export const Steps = withInstall(_Steps);
|
||||||
|
|
||||||
export default Steps;
|
export default Steps;
|
||||||
export { Steps };
|
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Sticky from './Sticky';
|
import _Sticky from './Sticky';
|
||||||
|
|
||||||
const Sticky = withInstall<typeof _Sticky>(_Sticky);
|
export const Sticky = withInstall(_Sticky);
|
||||||
|
|
||||||
export default Sticky;
|
export default Sticky;
|
||||||
export { Sticky };
|
|
||||||
export type { StickyPosition } from './Sticky';
|
export type { StickyPosition } from './Sticky';
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _SubmitBar from './SubmitBar';
|
import _SubmitBar from './SubmitBar';
|
||||||
|
|
||||||
const SubmitBar = withInstall<typeof _SubmitBar>(_SubmitBar);
|
export const SubmitBar = withInstall(_SubmitBar);
|
||||||
|
|
||||||
export default SubmitBar;
|
export default SubmitBar;
|
||||||
export { SubmitBar };
|
|
||||||
|
@ -1,10 +1,8 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _SwipeCell from './SwipeCell';
|
import _SwipeCell from './SwipeCell';
|
||||||
|
|
||||||
const SwipeCell = withInstall<typeof _SwipeCell>(_SwipeCell);
|
export const SwipeCell = withInstall(_SwipeCell);
|
||||||
|
|
||||||
export default SwipeCell;
|
export default SwipeCell;
|
||||||
export { SwipeCell };
|
|
||||||
export type {
|
export type {
|
||||||
SwipeCellSide,
|
SwipeCellSide,
|
||||||
SwipeCellPosition,
|
SwipeCellPosition,
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _SwipeItem from './SwipeItem';
|
import _SwipeItem from './SwipeItem';
|
||||||
|
|
||||||
const SwipeItem = withInstall<typeof _SwipeItem>(_SwipeItem);
|
export const SwipeItem = withInstall(_SwipeItem);
|
||||||
|
|
||||||
export default SwipeItem;
|
export default SwipeItem;
|
||||||
export { SwipeItem };
|
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Swipe from './Swipe';
|
import _Swipe from './Swipe';
|
||||||
|
|
||||||
const Swipe = withInstall<typeof _Swipe>(_Swipe);
|
export const Swipe = withInstall(_Swipe);
|
||||||
|
|
||||||
export default Swipe;
|
export default Swipe;
|
||||||
export { Swipe };
|
|
||||||
export type { SwipeInstance, SwipeToOptions } from './types';
|
export type { SwipeInstance, SwipeToOptions } from './types';
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Switch from './Switch';
|
import _Switch from './Switch';
|
||||||
|
|
||||||
const Switch = withInstall<typeof _Switch>(_Switch);
|
export const Switch = withInstall(_Switch);
|
||||||
|
|
||||||
export default Switch;
|
export default Switch;
|
||||||
export { Switch };
|
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Tab from './Tab';
|
import _Tab from './Tab';
|
||||||
|
|
||||||
const Tab = withInstall<typeof _Tab>(_Tab);
|
export const Tab = withInstall(_Tab);
|
||||||
|
|
||||||
export default Tab;
|
export default Tab;
|
||||||
export { Tab };
|
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _TabbarItem from './TabbarItem';
|
import _TabbarItem from './TabbarItem';
|
||||||
|
|
||||||
const TabbarItem = withInstall<typeof _TabbarItem>(_TabbarItem);
|
export const TabbarItem = withInstall(_TabbarItem);
|
||||||
|
|
||||||
export default TabbarItem;
|
export default TabbarItem;
|
||||||
export { TabbarItem };
|
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Tabbar from './Tabbar';
|
import _Tabbar from './Tabbar';
|
||||||
|
|
||||||
const Tabbar = withInstall<typeof _Tabbar>(_Tabbar);
|
export const Tabbar = withInstall(_Tabbar);
|
||||||
|
|
||||||
export default Tabbar;
|
export default Tabbar;
|
||||||
export { Tabbar };
|
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Tabs from './Tabs';
|
import _Tabs from './Tabs';
|
||||||
|
|
||||||
const Tabs = withInstall<typeof _Tabs>(_Tabs);
|
export const Tabs = withInstall(_Tabs);
|
||||||
|
|
||||||
export default Tabs;
|
export default Tabs;
|
||||||
export { Tabs };
|
|
||||||
export type { TabsType, TabsInstance } from './types';
|
export type { TabsType, TabsInstance } from './types';
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Tag from './Tag';
|
import _Tag from './Tag';
|
||||||
|
|
||||||
const Tag = withInstall<typeof _Tag>(_Tag);
|
export const Tag = withInstall(_Tag);
|
||||||
|
|
||||||
export default Tag;
|
export default Tag;
|
||||||
export { Tag };
|
|
||||||
|
@ -186,7 +186,7 @@ Toast.allowMultiple = (value = true) => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
Toast.install = (app: App) => {
|
Toast.install = (app: App) => {
|
||||||
app.use(withInstall<typeof VanToast>(VanToast));
|
app.use(withInstall(VanToast));
|
||||||
app.config.globalProperties.$toast = Toast;
|
app.config.globalProperties.$toast = Toast;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _TreeSelect from './TreeSelect';
|
import _TreeSelect from './TreeSelect';
|
||||||
|
|
||||||
const TreeSelect = withInstall<typeof _TreeSelect>(_TreeSelect);
|
export const TreeSelect = withInstall(_TreeSelect);
|
||||||
|
|
||||||
export default TreeSelect;
|
export default TreeSelect;
|
||||||
export { TreeSelect };
|
|
||||||
export type { TreeSelectItem, TreeSelectChild } from './TreeSelect';
|
export type { TreeSelectItem, TreeSelectChild } from './TreeSelect';
|
||||||
|
@ -1,10 +1,8 @@
|
|||||||
import { withInstall } from '../utils';
|
import { withInstall } from '../utils';
|
||||||
import _Uploader from './Uploader';
|
import _Uploader from './Uploader';
|
||||||
|
|
||||||
const Uploader = withInstall<typeof _Uploader>(_Uploader);
|
export const Uploader = withInstall(_Uploader);
|
||||||
|
|
||||||
export default Uploader;
|
export default Uploader;
|
||||||
export { Uploader };
|
|
||||||
export type {
|
export type {
|
||||||
UploaderInstance,
|
UploaderInstance,
|
||||||
UploaderResultType,
|
UploaderResultType,
|
||||||
|
@ -14,13 +14,12 @@ export type WithInstall<T> = T & {
|
|||||||
install(app: App): void;
|
install(app: App): void;
|
||||||
} & EventShim;
|
} & EventShim;
|
||||||
|
|
||||||
// using any here because tsc will generate some weird results when using generics
|
export function withInstall<T>(options: T) {
|
||||||
export function withInstall<T>(options: any): WithInstall<T> {
|
|
||||||
(options as Record<string, unknown>).install = (app: App) => {
|
(options as Record<string, unknown>).install = (app: App) => {
|
||||||
const { name } = options as any;
|
const { name } = options as any;
|
||||||
app.component(name, options);
|
app.component(name, options);
|
||||||
app.component(camelize(`-${name}`), options);
|
app.component(camelize(`-${name}`), options);
|
||||||
};
|
};
|
||||||
|
|
||||||
return options;
|
return options as WithInstall<T>;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user