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

37 lines
970 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[];
2020-05-15 08:08:53 +00:00
showItemNavigators?: boolean;
showThumbnailNavigators?: boolean;
showItemNavigatorsOnHover?: boolean;
changeItemOnIndicatorHover?: boolean;
2020-03-31 13:26:04 +00:00
circular?: boolean;
autoPlay?: boolean;
transitionInterval?: number;
showThumbnails?: boolean;
thumbnailsPosition?: string;
verticalThumbnailViewPortHeight?: string;
showIndicators?: boolean;
2020-05-15 08:08:53 +00:00
showIndicatorsOnItem?: boolean;
2020-03-31 13:26:04 +00:00
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
}
}