types: improve generated component typing (#8308)

This commit is contained in:
neverland 2021-03-08 16:52:15 +08:00 committed by GitHub
parent 0c740b6962
commit ae40d40c24
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
86 changed files with 190 additions and 173 deletions

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _ActionBarButton from './ActionBarButton'; import _ActionBarButton from './ActionBarButton';
const ActionBarButton = installable(_ActionBarButton); const ActionBarButton = withInstall<typeof _ActionBarButton>(_ActionBarButton);
export default ActionBarButton; export default ActionBarButton;
export { ActionBarButton }; export { ActionBarButton };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _ActionBarIcon from './ActionBarIcon'; import _ActionBarIcon from './ActionBarIcon';
const ActionBarIcon = installable(_ActionBarIcon); const ActionBarIcon = withInstall<typeof _ActionBarIcon>(_ActionBarIcon);
export default ActionBarIcon; export default ActionBarIcon;
export { ActionBarIcon }; export { ActionBarIcon };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _ActionBar from './ActionBar'; import _ActionBar from './ActionBar';
const ActionBar = installable(_ActionBar); const ActionBar = withInstall<typeof _ActionBar>(_ActionBar);
export default ActionBar; export default ActionBar;
export { ActionBar }; export { ActionBar };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _ActionSheet from './ActionSheet'; import _ActionSheet from './ActionSheet';
const ActionSheet = installable(_ActionSheet); const ActionSheet = withInstall<typeof _ActionSheet>(_ActionSheet);
export default ActionSheet; export default ActionSheet;
export { ActionSheet }; export { ActionSheet };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _AddressEdit from './AddressEdit'; import _AddressEdit from './AddressEdit';
const AddressEdit = installable(_AddressEdit); const AddressEdit = withInstall<typeof _AddressEdit>(_AddressEdit);
export default AddressEdit; export default AddressEdit;
export { AddressEdit }; export { AddressEdit };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _AddressList from './AddressList'; import _AddressList from './AddressList';
const AddressList = installable(_AddressList); const AddressList = withInstall<typeof _AddressList>(_AddressList);
export default AddressList; export default AddressList;
export { AddressList }; export { AddressList };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Area from './Area'; import _Area from './Area';
const Area = installable(_Area); const Area = withInstall<typeof _Area>(_Area);
export default Area; export default Area;
export { Area }; export { Area };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Badge from './Badge'; import _Badge from './Badge';
const Badge = installable(_Badge); const Badge = withInstall<typeof _Badge>(_Badge);
export default Badge; export default Badge;
export { Badge }; export { Badge };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Button from './Button'; import _Button from './Button';
const Button = installable(_Button); const Button = withInstall<typeof _Button>(_Button);
export default Button; export default Button;
export { Button }; export { Button };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Calendar from './Calendar'; import _Calendar from './Calendar';
const Calendar = installable(_Calendar); const Calendar = withInstall<typeof _Calendar>(_Calendar);
export default Calendar; export default Calendar;
export { Calendar }; export { Calendar };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Card from './Card'; import _Card from './Card';
const Card = installable(_Card); const Card = withInstall<typeof _Card>(_Card);
export default Card; export default Card;
export { Card }; export { Card };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Cascader from './Cascader'; import _Cascader from './Cascader';
const Cascader = installable(_Cascader); const Cascader = withInstall<typeof _Cascader>(_Cascader);
export default Cascader; export default Cascader;
export { Cascader }; export { Cascader };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _CellGroup from './CellGroup'; import _CellGroup from './CellGroup';
const CellGroup = installable(_CellGroup); const CellGroup = withInstall<typeof _CellGroup>(_CellGroup);
export default CellGroup; export default CellGroup;
export { CellGroup }; export { CellGroup };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Cell from './Cell'; import _Cell from './Cell';
const Cell = installable(_Cell); const Cell = withInstall<typeof _Cell>(_Cell);
export default Cell; export default Cell;
export { Cell }; export { Cell };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _CheckboxGroup from './CheckboxGroup'; import _CheckboxGroup from './CheckboxGroup';
const CheckboxGroup = installable(_CheckboxGroup); const CheckboxGroup = withInstall<typeof _CheckboxGroup>(_CheckboxGroup);
export default CheckboxGroup; export default CheckboxGroup;
export { CheckboxGroup }; export { CheckboxGroup };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Checkbox from './Checkbox'; import _Checkbox from './Checkbox';
const Checkbox = installable(_Checkbox); const Checkbox = withInstall<typeof _Checkbox>(_Checkbox);
export default Checkbox; export default Checkbox;
export { Checkbox }; export { Checkbox };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Circle from './Circle'; import _Circle from './Circle';
const Circle = installable(_Circle); const Circle = withInstall<typeof _Circle>(_Circle);
export default Circle; export default Circle;
export { Circle }; export { Circle };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Col from './Col'; import _Col from './Col';
const Col = installable(_Col); const Col = withInstall<typeof _Col>(_Col);
export default Col; export default Col;
export { Col }; export { Col };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _CollapseItem from './CollapseItem'; import _CollapseItem from './CollapseItem';
const CollapseItem = installable(_CollapseItem); const CollapseItem = withInstall<typeof _CollapseItem>(_CollapseItem);
export default CollapseItem; export default CollapseItem;
export { CollapseItem }; export { CollapseItem };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Collapse from './Collapse'; import _Collapse from './Collapse';
const Collapse = installable(_Collapse); const Collapse = withInstall<typeof _Collapse>(_Collapse);
export default Collapse; export default Collapse;
export { Collapse }; export { Collapse };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _ContactCard from './ContactCard'; import _ContactCard from './ContactCard';
const ContactCard = installable(_ContactCard); const ContactCard = withInstall<typeof _ContactCard>(_ContactCard);
export default ContactCard; export default ContactCard;
export { ContactCard }; export { ContactCard };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _ContactEdit from './ContactEdit'; import _ContactEdit from './ContactEdit';
const ContactEdit = installable(_ContactEdit); const ContactEdit = withInstall<typeof _ContactEdit>(_ContactEdit);
export default ContactEdit; export default ContactEdit;
export { ContactEdit }; export { ContactEdit };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _ContactList from './ContactList'; import _ContactList from './ContactList';
const ContactList = installable(_ContactList); const ContactList = withInstall<typeof _ContactList>(_ContactList);
export default ContactList; export default ContactList;
export { ContactList }; export { ContactList };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _CountDown from './CountDown'; import _CountDown from './CountDown';
const CountDown = installable(_CountDown); const CountDown = withInstall<typeof _CountDown>(_CountDown);
export default CountDown; export default CountDown;
export { CountDown }; export { CountDown };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _CouponCell from './CouponCell'; import _CouponCell from './CouponCell';
const CouponCell = installable(_CouponCell); const CouponCell = withInstall<typeof _CouponCell>(_CouponCell);
export default CouponCell; export default CouponCell;
export { CouponCell }; export { CouponCell };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _CouponList from './CouponList'; import _CouponList from './CouponList';
const CouponList = installable(_CouponList); const CouponList = withInstall<typeof _CouponList>(_CouponList);
export default CouponList; export default CouponList;
export { CouponList }; export { CouponList };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Coupon from './Coupon'; import _Coupon from './Coupon';
const Coupon = installable(_Coupon); const Coupon = withInstall<typeof _Coupon>(_Coupon);
export default Coupon; export default Coupon;
export { Coupon }; export { Coupon };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _DatetimePicker from './DatetimePicker'; import _DatetimePicker from './DatetimePicker';
const DatetimePicker = installable(_DatetimePicker); const DatetimePicker = withInstall<typeof _DatetimePicker>(_DatetimePicker);
export default DatetimePicker; export default DatetimePicker;
export { DatetimePicker }; export { DatetimePicker };

View File

@ -1,5 +1,5 @@
import { App, CSSProperties, TeleportProps } from 'vue'; import { App, CSSProperties, TeleportProps } from 'vue';
import { inBrowser, ComponentInstance, installable } from '../utils'; import { inBrowser, ComponentInstance, withInstall } from '../utils';
import { Interceptor } from '../utils/interceptor'; import { Interceptor } from '../utils/interceptor';
import { mountComponent, usePopupState } from '../utils/mount-component'; import { mountComponent, usePopupState } from '../utils/mount-component';
import VanDialog, { import VanDialog, {
@ -120,10 +120,10 @@ Dialog.resetDefaultOptions = () => {
}; };
Dialog.install = (app: App) => { Dialog.install = (app: App) => {
app.use(installable(VanDialog)); app.use(withInstall<typeof VanDialog>(VanDialog));
app.config.globalProperties.$dialog = Dialog; app.config.globalProperties.$dialog = Dialog;
}; };
Dialog.Component = installable(VanDialog); Dialog.Component = withInstall<typeof VanDialog>(VanDialog);
export default Dialog; export default Dialog;

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Divider from './Divider'; import _Divider from './Divider';
const Divider = installable(_Divider); const Divider = withInstall<typeof _Divider>(_Divider);
export default Divider; export default Divider;
export { Divider }; export { Divider };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _DropdownItem from './DropdownItem'; import _DropdownItem from './DropdownItem';
const DropdownItem = installable(_DropdownItem); const DropdownItem = withInstall<typeof _DropdownItem>(_DropdownItem);
export default DropdownItem; export default DropdownItem;
export { DropdownItem }; export { DropdownItem };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _DropdownMenu from './DropdownMenu'; import _DropdownMenu from './DropdownMenu';
const DropdownMenu = installable(_DropdownMenu); const DropdownMenu = withInstall<typeof _DropdownMenu>(_DropdownMenu);
export default DropdownMenu; export default DropdownMenu;
export { DropdownMenu }; export { DropdownMenu };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Empty from './Empty'; import _Empty from './Empty';
const Empty = installable(_Empty); const Empty = withInstall<typeof _Empty>(_Empty);
export default Empty; export default Empty;
export { Empty }; export { Empty };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Field from './Field'; import _Field from './Field';
const Field = installable(_Field); const Field = withInstall<typeof _Field>(_Field);
export default Field; export default Field;
export { Field }; export { Field };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Form from './Form'; import _Form from './Form';
const Form = installable(_Form); const Form = withInstall<typeof _Form>(_Form);
export default Form; export default Form;
export { Form }; export { Form };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _GridItem from './GridItem'; import _GridItem from './GridItem';
const GridItem = installable(_GridItem); const GridItem = withInstall<typeof _GridItem>(_GridItem);
export default GridItem; export default GridItem;
export { GridItem }; export { GridItem };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Grid from './Grid'; import _Grid from './Grid';
const Grid = installable(_Grid); const Grid = withInstall<typeof _Grid>(_Grid);
export default Grid; export default Grid;
export { Grid }; export { Grid };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Icon from './Icon'; import _Icon from './Icon';
const Icon = installable(_Icon); const Icon = withInstall<typeof _Icon>(_Icon);
export default Icon; export default Icon;
export { Icon }; export { Icon };

View File

@ -1,5 +1,5 @@
import { App, CSSProperties, TeleportProps } from 'vue'; import { App, CSSProperties, TeleportProps } from 'vue';
import { ComponentInstance, inBrowser, installable } from '../utils'; import { ComponentInstance, inBrowser, withInstall } from '../utils';
import { mountComponent, usePopupState } from '../utils/mount-component'; import { mountComponent, usePopupState } from '../utils/mount-component';
import { Interceptor } from '../utils/interceptor'; import { Interceptor } from '../utils/interceptor';
import { PopupCloseIconPosition } from '../popup'; import { PopupCloseIconPosition } from '../popup';
@ -97,10 +97,10 @@ const ImagePreview = (
return instance; return instance;
}; };
ImagePreview.Component = installable(VanImagePreview); ImagePreview.Component = withInstall<typeof VanImagePreview>(VanImagePreview);
ImagePreview.install = (app: App) => { ImagePreview.install = (app: App) => {
app.use(installable(VanImagePreview)); app.use(withInstall<typeof VanImagePreview>(VanImagePreview));
}; };
export default ImagePreview; export default ImagePreview;

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Image from './Image'; import _Image from './Image';
const Image = installable(_Image); const Image = withInstall<typeof _Image>(_Image);
export default Image; export default Image;
export { Image }; export { Image };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _IndexAnchor from './IndexAnchor'; import _IndexAnchor from './IndexAnchor';
const IndexAnchor = installable(_IndexAnchor); const IndexAnchor = withInstall<typeof _IndexAnchor>(_IndexAnchor);
export default IndexAnchor; export default IndexAnchor;
export { IndexAnchor }; export { IndexAnchor };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _IndexBar from './IndexBar'; import _IndexBar from './IndexBar';
const IndexBar = installable(_IndexBar); const IndexBar = withInstall<typeof _IndexBar>(_IndexBar);
export default IndexBar; export default IndexBar;
export { IndexBar }; export { IndexBar };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _List from './List'; import _List from './List';
const List = installable(_List); const List = withInstall<typeof _List>(_List);
export default List; export default List;
export { List }; export { List };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Loading from './Loading'; import _Loading from './Loading';
const Loading = installable(_Loading); const Loading = withInstall<typeof _Loading>(_Loading);
export default Loading; export default Loading;
export { Loading }; export { Loading };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _NavBar from './NavBar'; import _NavBar from './NavBar';
const NavBar = installable(_NavBar); const NavBar = withInstall<typeof _NavBar>(_NavBar);
export default NavBar; export default NavBar;
export { NavBar }; export { NavBar };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _NoticeBar from './NoticeBar'; import _NoticeBar from './NoticeBar';
const NoticeBar = installable(_NoticeBar); const NoticeBar = withInstall<typeof _NoticeBar>(_NoticeBar);
export default NoticeBar; export default NoticeBar;
export { NoticeBar }; export { NoticeBar };

View File

@ -1,5 +1,5 @@
import { App } from 'vue'; import { App } from 'vue';
import { isObject, inBrowser, ComponentInstance, installable } from '../utils'; import { isObject, inBrowser, ComponentInstance, withInstall } from '../utils';
import { mountComponent, usePopupState } from '../utils/mount-component'; import { mountComponent, usePopupState } from '../utils/mount-component';
import VanNotify, { NotifyType } from './Notify'; import VanNotify, { NotifyType } from './Notify';
@ -97,10 +97,10 @@ Notify.resetDefaultOptions = () => {
}; };
Notify.install = (app: App) => { Notify.install = (app: App) => {
app.use(installable(VanNotify)); app.use(withInstall<typeof VanNotify>(VanNotify));
app.config.globalProperties.$notify = Notify; app.config.globalProperties.$notify = Notify;
}; };
Notify.Component = installable(VanNotify); Notify.Component = withInstall<typeof VanNotify>(VanNotify);
export default Notify; export default Notify;

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _NumberKeyboard from './NumberKeyboard'; import _NumberKeyboard from './NumberKeyboard';
const NumberKeyboard = installable(_NumberKeyboard); const NumberKeyboard = withInstall<typeof _NumberKeyboard>(_NumberKeyboard);
export default NumberKeyboard; export default NumberKeyboard;
export { NumberKeyboard }; export { NumberKeyboard };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Overlay from './Overlay'; import _Overlay from './Overlay';
const Overlay = installable(_Overlay); const Overlay = withInstall<typeof _Overlay>(_Overlay);
export default Overlay; export default Overlay;
export { Overlay }; export { Overlay };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Pagination from './Pagination'; import _Pagination from './Pagination';
const Pagination = installable(_Pagination); const Pagination = withInstall<typeof _Pagination>(_Pagination);
export default Pagination; export default Pagination;
export { Pagination }; export { Pagination };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _PasswordInput from './PasswordInput'; import _PasswordInput from './PasswordInput';
const PasswordInput = installable(_PasswordInput); const PasswordInput = withInstall<typeof _PasswordInput>(_PasswordInput);
export default PasswordInput; export default PasswordInput;
export { PasswordInput }; export { PasswordInput };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Picker from './Picker'; import _Picker from './Picker';
const Picker = installable(_Picker); const Picker = withInstall<typeof _Picker>(_Picker);
export default Picker; export default Picker;
export { Picker }; export { Picker };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Popover from './Popover'; import _Popover from './Popover';
const Popover = installable(_Popover); const Popover = withInstall<typeof _Popover>(_Popover);
export default Popover; export default Popover;
export { Popover }; export { Popover };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Popup from './Popup'; import _Popup from './Popup';
const Popup = installable(_Popup); const Popup = withInstall<typeof _Popup>(_Popup);
export default Popup; export default Popup;
export { Popup }; export { Popup };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Progress from './Progress'; import _Progress from './Progress';
const Progress = installable(_Progress); const Progress = withInstall<typeof _Progress>(_Progress);
export default Progress; export default Progress;
export { Progress }; export { Progress };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _PullRefresh from './PullRefresh'; import _PullRefresh from './PullRefresh';
const PullRefresh = installable(_PullRefresh); const PullRefresh = withInstall<typeof _PullRefresh>(_PullRefresh);
export default PullRefresh; export default PullRefresh;
export { PullRefresh }; export { PullRefresh };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _RadioGroup from './RadioGroup'; import _RadioGroup from './RadioGroup';
const RadioGroup = installable(_RadioGroup); const RadioGroup = withInstall<typeof _RadioGroup>(_RadioGroup);
export default RadioGroup; export default RadioGroup;
export { RadioGroup }; export { RadioGroup };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Radio from './Radio'; import _Radio from './Radio';
const Radio = installable(_Radio); const Radio = withInstall<typeof _Radio>(_Radio);
export default Radio; export default Radio;
export { Radio }; export { Radio };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Rate from './Rate'; import _Rate from './Rate';
const Rate = installable(_Rate); const Rate = withInstall<typeof _Rate>(_Rate);
export default Rate; export default Rate;
export { Rate }; export { Rate };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Row from './Row'; import _Row from './Row';
const Row = installable(_Row); const Row = withInstall<typeof _Row>(_Row);
export default Row; export default Row;
export { Row }; export { Row };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Search from './Search'; import _Search from './Search';
const Search = installable(_Search); const Search = withInstall<typeof _Search>(_Search);
export default Search; export default Search;
export { Search }; export { Search };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _ShareSheet from './ShareSheet'; import _ShareSheet from './ShareSheet';
const ShareSheet = installable(_ShareSheet); const ShareSheet = withInstall<typeof _ShareSheet>(_ShareSheet);
export default ShareSheet; export default ShareSheet;
export { ShareSheet }; export { ShareSheet };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _SidebarItem from './SidebarItem'; import _SidebarItem from './SidebarItem';
const SidebarItem = installable(_SidebarItem); const SidebarItem = withInstall<typeof _SidebarItem>(_SidebarItem);
export default SidebarItem; export default SidebarItem;
export { SidebarItem }; export { SidebarItem };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Sidebar from './Sidebar'; import _Sidebar from './Sidebar';
const Sidebar = installable(_Sidebar); const Sidebar = withInstall<typeof _Sidebar>(_Sidebar);
export default Sidebar; export default Sidebar;
export { Sidebar }; export { Sidebar };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Skeleton from './Skeleton'; import _Skeleton from './Skeleton';
const Skeleton = installable(_Skeleton); const Skeleton = withInstall<typeof _Skeleton>(_Skeleton);
export default Skeleton; export default Skeleton;
export { Skeleton }; export { Skeleton };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Slider from './Slider'; import _Slider from './Slider';
const Slider = installable(_Slider); const Slider = withInstall<typeof _Slider>(_Slider);
export default Slider; export default Slider;
export { Slider }; export { Slider };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Step from './Step'; import _Step from './Step';
const Step = installable(_Step); const Step = withInstall<typeof _Step>(_Step);
export default Step; export default Step;
export { Step }; export { Step };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Stepper from './Stepper'; import _Stepper from './Stepper';
const Stepper = installable(_Stepper); const Stepper = withInstall<typeof _Stepper>(_Stepper);
export default Stepper; export default Stepper;
export { Stepper }; export { Stepper };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Steps from './Steps'; import _Steps from './Steps';
const Steps = installable(_Steps); const Steps = withInstall<typeof _Steps>(_Steps);
export default Steps; export default Steps;
export { Steps }; export { Steps };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Sticky from './Sticky'; import _Sticky from './Sticky';
const Sticky = installable(_Sticky); const Sticky = withInstall<typeof _Sticky>(_Sticky);
export default Sticky; export default Sticky;
export { Sticky }; export { Sticky };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _SubmitBar from './SubmitBar'; import _SubmitBar from './SubmitBar';
const SubmitBar = installable(_SubmitBar); const SubmitBar = withInstall<typeof _SubmitBar>(_SubmitBar);
export default SubmitBar; export default SubmitBar;
export { SubmitBar }; export { SubmitBar };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _SwipeCell from './SwipeCell'; import _SwipeCell from './SwipeCell';
const SwipeCell = installable(_SwipeCell); const SwipeCell = withInstall<typeof _SwipeCell>(_SwipeCell);
export default SwipeCell; export default SwipeCell;
export { SwipeCell }; export { SwipeCell };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _SwipeItem from './SwipeItem'; import _SwipeItem from './SwipeItem';
const SwipeItem = installable(_SwipeItem); const SwipeItem = withInstall<typeof _SwipeItem>(_SwipeItem);
export default SwipeItem; export default SwipeItem;
export { SwipeItem }; export { SwipeItem };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Swipe from './Swipe'; import _Swipe from './Swipe';
const Swipe = installable(_Swipe); const Swipe = withInstall<typeof _Swipe>(_Swipe);
export default Swipe; export default Swipe;
export { Swipe }; export { Swipe };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Switch from './Switch'; import _Switch from './Switch';
const Switch = installable(_Switch); const Switch = withInstall<typeof _Switch>(_Switch);
export default Switch; export default Switch;
export { Switch }; export { Switch };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Tab from './Tab'; import _Tab from './Tab';
const Tab = installable(_Tab); const Tab = withInstall<typeof _Tab>(_Tab);
export default Tab; export default Tab;
export { Tab }; export { Tab };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _TabbarItem from './TabbarItem'; import _TabbarItem from './TabbarItem';
const TabbarItem = installable(_TabbarItem); const TabbarItem = withInstall<typeof _TabbarItem>(_TabbarItem);
export default TabbarItem; export default TabbarItem;
export { TabbarItem }; export { TabbarItem };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Tabbar from './Tabbar'; import _Tabbar from './Tabbar';
const Tabbar = installable(_Tabbar); const Tabbar = withInstall<typeof _Tabbar>(_Tabbar);
export default Tabbar; export default Tabbar;
export { Tabbar }; export { Tabbar };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Tabs from './Tabs'; import _Tabs from './Tabs';
const Tabs = installable(_Tabs); const Tabs = withInstall<typeof _Tabs>(_Tabs);
export default Tabs; export default Tabs;
export { Tabs }; export { Tabs };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Tag from './Tag'; import _Tag from './Tag';
const Tag = installable(_Tag); const Tag = withInstall<typeof _Tag>(_Tag);
export default Tag; export default Tag;
export { Tag }; export { Tag };

View File

@ -1,5 +1,5 @@
import { ref, App, TeleportProps, getCurrentInstance } from 'vue'; import { ref, App, TeleportProps, getCurrentInstance } from 'vue';
import { isObject, inBrowser, installable, ComponentInstance } from '../utils'; import { isObject, inBrowser, withInstall, ComponentInstance } from '../utils';
import { mountComponent, usePopupState } from '../utils/mount-component'; import { mountComponent, usePopupState } from '../utils/mount-component';
import VanToast, { ToastType, ToastPosition } from './Toast'; import VanToast, { ToastType, ToastPosition } from './Toast';
import type { LoadingType } from '../loading'; import type { LoadingType } from '../loading';
@ -179,7 +179,7 @@ Toast.allowMultiple = (value = true) => {
}; };
Toast.install = (app: App) => { Toast.install = (app: App) => {
app.use(installable(VanToast)); app.use(withInstall<typeof VanToast>(VanToast));
app.config.globalProperties.$toast = Toast; app.config.globalProperties.$toast = Toast;
}; };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _TreeSelect from './TreeSelect'; import _TreeSelect from './TreeSelect';
const TreeSelect = installable(_TreeSelect); const TreeSelect = withInstall<typeof _TreeSelect>(_TreeSelect);
export default TreeSelect; export default TreeSelect;
export { TreeSelect }; export { TreeSelect };

View File

@ -1,7 +1,7 @@
import { installable } from '../utils'; import { withInstall } from '../utils';
import _Uploader from './Uploader'; import _Uploader from './Uploader';
const Uploader = installable(_Uploader); const Uploader = withInstall<typeof _Uploader>(_Uploader);
export default Uploader; export default Uploader;
export { Uploader }; export { Uploader };

View File

@ -1,6 +1,6 @@
export * from './base'; export * from './base';
export * from './create'; export * from './create';
export * from './installable'; export * from './with-install';
export * from './format/unit'; export * from './format/unit';
export * from './format/number'; export * from './format/number';
export * from './format/string'; export * from './format/string';

17
src/utils/with-install.ts Normal file
View File

@ -0,0 +1,17 @@
import { App } from 'vue';
import { camelize } from './format/string';
export type WithInstall<T> = T & {
install(app: App): void;
};
// using any here because tsc will generate some weird results when using generics
export function withInstall<T>(options: any): WithInstall<T> {
(options as Record<string, unknown>).install = (app: App) => {
const { name } = options as any;
app.component(name, options);
app.component(camelize(`-${name}`), options);
};
return options;
}

View File

@ -10462,9 +10462,9 @@ typedarray-to-buffer@^3.1.5:
is-typedarray "^1.0.0" is-typedarray "^1.0.0"
typescript@^4.1.3: typescript@^4.1.3:
version "4.1.3" version "4.2.3"
resolved "https://registry.npm.taobao.org/typescript/download/typescript-4.1.3.tgz?cache=0&sync_timestamp=1610349534592&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ftypescript%2Fdownload%2Ftypescript-4.1.3.tgz#519d582bd94cba0cf8934c7d8e8467e473f53bb7" resolved "https://registry.npm.taobao.org/typescript/download/typescript-4.2.3.tgz?cache=0&sync_timestamp=1615105163051&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ftypescript%2Fdownload%2Ftypescript-4.2.3.tgz#39062d8019912d43726298f09493d598048c1ce3"
integrity sha1-UZ1YK9lMugz4k0x9joRn5HP1O7c= integrity sha1-OQYtgBmRLUNyYpjwlJPVmASMHOM=
uc.micro@^1.0.1, uc.micro@^1.0.5: uc.micro@^1.0.1, uc.micro@^1.0.5:
version "1.0.6" version "1.0.6"