mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +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 { VanPopupMixin } from './mixins/popup';
|
||||
import { SwipeToOptions } from './swipe';
|
||||
|
||||
export type ImagePreviewOptions =
|
||||
@ -25,7 +24,7 @@ export type ImagePreviewOptions =
|
||||
swipeTo?(index: number, options?: SwipeToOptions): void;
|
||||
};
|
||||
|
||||
export class VanImagePreview extends VanPopupMixin {
|
||||
export class VanImagePreview {
|
||||
images: string[];
|
||||
|
||||
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 ToastType = 'text' | 'loading' | 'success' | 'fail' | 'html';
|
||||
type ToastPosition = 'top' | 'middle' | 'bottom';
|
||||
@ -25,7 +23,7 @@ export type ToastOptions = {
|
||||
getContainer?: string | (() => Element);
|
||||
};
|
||||
|
||||
export interface VanToast extends VanPopupMixin {
|
||||
export interface VanToast {
|
||||
type: ToastType;
|
||||
position: ToastPosition;
|
||||
loadingType: ToastLoadingType;
|
||||
|
Loading…
x
Reference in New Issue
Block a user