mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
types(ImagePreview): fix missing closeable option
This commit is contained in:
parent
3237e56561
commit
d5438dfe0d
@ -15,13 +15,13 @@ const defaultConfig = {
|
|||||||
onChange: null,
|
onChange: null,
|
||||||
lazyLoad: false,
|
lazyLoad: false,
|
||||||
showIndex: true,
|
showIndex: true,
|
||||||
|
closeable: false,
|
||||||
|
closeIcon: 'clear',
|
||||||
asyncClose: false,
|
asyncClose: false,
|
||||||
startPosition: 0,
|
startPosition: 0,
|
||||||
swipeDuration: 500,
|
swipeDuration: 500,
|
||||||
showIndicators: false,
|
showIndicators: false,
|
||||||
closeOnPopstate: false,
|
closeOnPopstate: false,
|
||||||
closeable: false,
|
|
||||||
closeIcon: 'clear',
|
|
||||||
closeIconPosition: 'top-right',
|
closeIconPosition: 'top-right',
|
||||||
};
|
};
|
||||||
|
|
||||||
|
3
types/image-preview.d.ts
vendored
3
types/image-preview.d.ts
vendored
@ -10,11 +10,14 @@ export type ImagePreviewOptions =
|
|||||||
className?: any;
|
className?: any;
|
||||||
lazyLoad?: boolean;
|
lazyLoad?: boolean;
|
||||||
showIndex?: boolean;
|
showIndex?: boolean;
|
||||||
|
closeable?: boolean;
|
||||||
|
closeIcon?: string;
|
||||||
asyncClose?: boolean;
|
asyncClose?: boolean;
|
||||||
swipeDuration?: number;
|
swipeDuration?: number;
|
||||||
startPosition?: number;
|
startPosition?: number;
|
||||||
showIndicators?: boolean;
|
showIndicators?: boolean;
|
||||||
closeOnPopstate?: boolean;
|
closeOnPopstate?: boolean;
|
||||||
|
closeIconPosition?: string;
|
||||||
onClose?: () => void;
|
onClose?: () => void;
|
||||||
onChange?: (index: number) => void;
|
onChange?: (index: number) => void;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user