primevue-mirror/src/components/galleria/Galleria.d.ts

37 lines
982 B
TypeScript
Raw Normal View History

2020-03-31 13:26:04 +00:00
import Vue, {VNode} from 'vue';
export declare class Galleria extends Vue {
id?: string;
value?: any;
activeItemIndex?: number;
fullScreen?: boolean;
visible?: boolean;
numVisible?: number;
responsiveOptions?: any[];
showPreviewNavButtons?: boolean;
showThumbnailNavButtons?: boolean;
showNavButtonsOnPreviewHover?: boolean;
changePreviewOnIndicatorHover?: boolean;
circular?: boolean;
autoPlay?: boolean;
transitionInterval?: number;
showThumbnails?: boolean;
thumbnailsPosition?: string;
verticalThumbnailViewPortHeight?: string;
showIndicators?: boolean;
showIndicatorsOnPreview?: boolean;
indicatorsPosition?: string;
baseZIndex?: number;
maskClass?: string;
2020-04-06 04:25:05 +00:00
containerStyle?: string;
containerClass?: string;
2020-03-31 13:26:04 +00:00
$slots: {
header: VNode[];
footer: VNode[];
2020-04-06 04:25:05 +00:00
item: VNode[];
2020-03-31 13:26:04 +00:00
previewCaption: VNode[];
indicator: VNode[];
2020-04-06 04:25:05 +00:00
thumbnail: VNode[];
2020-03-31 13:26:04 +00:00
}
}