mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
types: remove VanPopupMixin
This commit is contained in:
parent
4d6c842219
commit
0465ac16f2
3
types/image-preview.d.ts
vendored
3
types/image-preview.d.ts
vendored
@ -1,5 +1,4 @@
|
|||||||
import { VanComponent } from './component';
|
import { VanComponent } from './component';
|
||||||
import { VanPopupMixin } from './mixins/popup';
|
|
||||||
import { SwipeToOptions } from './swipe';
|
import { SwipeToOptions } from './swipe';
|
||||||
|
|
||||||
export type ImagePreviewOptions =
|
export type ImagePreviewOptions =
|
||||||
@ -25,7 +24,7 @@ export type ImagePreviewOptions =
|
|||||||
swipeTo?(index: number, options?: SwipeToOptions): void;
|
swipeTo?(index: number, options?: SwipeToOptions): void;
|
||||||
};
|
};
|
||||||
|
|
||||||
export class VanImagePreview extends VanPopupMixin {
|
export class VanImagePreview {
|
||||||
images: string[];
|
images: string[];
|
||||||
|
|
||||||
showIndex: boolean;
|
showIndex: boolean;
|
||||||
|
4
types/mixins/popup.d.ts
vendored
4
types/mixins/popup.d.ts
vendored
@ -1,4 +0,0 @@
|
|||||||
export class VanPopupMixin {
|
|
||||||
open(): void;
|
|
||||||
close(): void;
|
|
||||||
}
|
|
4
types/toast.d.ts
vendored
4
types/toast.d.ts
vendored
@ -1,5 +1,3 @@
|
|||||||
import { VanPopupMixin } from './mixins/popup';
|
|
||||||
|
|
||||||
type ToastMessage = string | number;
|
type ToastMessage = string | number;
|
||||||
type ToastType = 'text' | 'loading' | 'success' | 'fail' | 'html';
|
type ToastType = 'text' | 'loading' | 'success' | 'fail' | 'html';
|
||||||
type ToastPosition = 'top' | 'middle' | 'bottom';
|
type ToastPosition = 'top' | 'middle' | 'bottom';
|
||||||
@ -25,7 +23,7 @@ export type ToastOptions = {
|
|||||||
getContainer?: string | (() => Element);
|
getContainer?: string | (() => Element);
|
||||||
};
|
};
|
||||||
|
|
||||||
export interface VanToast extends VanPopupMixin {
|
export interface VanToast {
|
||||||
type: ToastType;
|
type: ToastType;
|
||||||
position: ToastPosition;
|
position: ToastPosition;
|
||||||
loadingType: ToastLoadingType;
|
loadingType: ToastLoadingType;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user