From cf191e09cbc8093bb72f5d1e9381b263cdf9f0d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=98=89=E6=B6=B5?= Date: Sun, 22 Dec 2019 17:25:47 +0800 Subject: [PATCH] types(Uploader): add closeImagePreview method type --- .eslintignore | 1 - src/uploader/index.js | 1 + types/count-down.d.ts | 2 ++ types/field.d.ts | 1 + types/index.d.ts | 6 ++++-- types/notify.d.ts | 4 ++-- types/swipe-cell.d.ts | 1 + types/swipe.d.ts | 1 + types/uploader.d.ts | 5 +++++ 9 files changed, 17 insertions(+), 5 deletions(-) create mode 100644 types/uploader.d.ts diff --git a/.eslintignore b/.eslintignore index bc3e29c5d..c05831264 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,5 +1,4 @@ es lib dist -types node_modules diff --git a/src/uploader/index.js b/src/uploader/index.js index 3dfb8b3ea..19fb511cc 100644 --- a/src/uploader/index.js +++ b/src/uploader/index.js @@ -212,6 +212,7 @@ export default createComponent({ }); }, + // @exposed-api closeImagePreview() { if (this.imagePreview) { this.imagePreview.close(); diff --git a/types/count-down.d.ts b/types/count-down.d.ts index c70ac9c72..36a6b8e26 100644 --- a/types/count-down.d.ts +++ b/types/count-down.d.ts @@ -2,6 +2,8 @@ import { VanComponent } from './component'; export class CountDown extends VanComponent { start(): void; + pause(): void; + reset(): void; } diff --git a/types/field.d.ts b/types/field.d.ts index 3e2c9167c..f648b944b 100644 --- a/types/field.d.ts +++ b/types/field.d.ts @@ -2,5 +2,6 @@ import { VanComponent } from './component'; export class Field extends VanComponent { focus(): void; + blur(): void; } diff --git a/types/index.d.ts b/types/index.d.ts index aba801570..03a76d4a1 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -1,3 +1,4 @@ +/* eslint-disable max-classes-per-file */ import Vue from 'vue'; import { VanComponent } from './component'; import { AddressEdit } from './address-edit'; @@ -17,6 +18,7 @@ import { Swipe } from './swipe'; import { SwipeCell } from './swipe-cell'; import { Tabs } from './tabs'; import { Toast } from './toast'; +import { Uploader } from './uploader'; export const version: string; export function install(vue: typeof Vue): void; @@ -84,7 +86,6 @@ export class Tabbar extends VanComponent {} export class TabbarItem extends VanComponent {} export class Tag extends VanComponent {} export class TreeSelect extends VanComponent {} -export class Uploader extends VanComponent {} export { AddressEdit, @@ -103,5 +104,6 @@ export { Swipe, SwipeCell, Tabs, - Toast + Toast, + Uploader }; diff --git a/types/notify.d.ts b/types/notify.d.ts index 87c2d952e..2ccad7703 100644 --- a/types/notify.d.ts +++ b/types/notify.d.ts @@ -13,7 +13,7 @@ export type NotifyOptions = { onClose?: (() => void) | null; onOpened?: (() => void) | null; onClick?: ((event: Event) => void) | null; -} +}; export interface VanNotify extends Vue { message: NotifyMessage; @@ -34,7 +34,7 @@ export interface Notify { declare module 'vue/types/vue' { interface Vue { - $notify: Notify + $notify: Notify; } } diff --git a/types/swipe-cell.d.ts b/types/swipe-cell.d.ts index d81b77ce2..14aee20b4 100644 --- a/types/swipe-cell.d.ts +++ b/types/swipe-cell.d.ts @@ -2,5 +2,6 @@ import { VanComponent } from './component'; export class SwipeCell extends VanComponent { open(position: 'left' | 'right'): void; + close(): void; } diff --git a/types/swipe.d.ts b/types/swipe.d.ts index 93c9523b5..1d130fbec 100644 --- a/types/swipe.d.ts +++ b/types/swipe.d.ts @@ -6,5 +6,6 @@ export type SwipeToOptions = { export class Swipe extends VanComponent { swipeTo(index: number, options?: SwipeToOptions): void; + resize(): void; } diff --git a/types/uploader.d.ts b/types/uploader.d.ts new file mode 100644 index 000000000..e31434eca --- /dev/null +++ b/types/uploader.d.ts @@ -0,0 +1,5 @@ +import { VanComponent } from './component'; + +export class Uploader extends VanComponent { + closeImagePreview(): void; +}