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,
|
||||
lazyLoad: false,
|
||||
showIndex: true,
|
||||
closeable: false,
|
||||
closeIcon: 'clear',
|
||||
asyncClose: false,
|
||||
startPosition: 0,
|
||||
swipeDuration: 500,
|
||||
showIndicators: false,
|
||||
closeOnPopstate: false,
|
||||
closeable: false,
|
||||
closeIcon: 'clear',
|
||||
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;
|
||||
lazyLoad?: boolean;
|
||||
showIndex?: boolean;
|
||||
closeable?: boolean;
|
||||
closeIcon?: string;
|
||||
asyncClose?: boolean;
|
||||
swipeDuration?: number;
|
||||
startPosition?: number;
|
||||
showIndicators?: boolean;
|
||||
closeOnPopstate?: boolean;
|
||||
closeIconPosition?: string;
|
||||
onClose?: () => void;
|
||||
onChange?: (index: number) => void;
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user