UNPKG

bootstrap-vue-next

Version:

BootstrapVueNext is an early and lovely component library for Vue 3 & Nuxt 3 based on Bootstrap 5 and Typescript.

73 lines (72 loc) 2.64 kB
import { BvCarouselEvent } from '../../utils'; import { BCarouselProps } from '../../types/ComponentProps'; import { Numberish } from '../../types/CommonTypes'; type __VLS_Props = Omit<BCarouselProps, 'modelValue'>; type __VLS_PublicProps = { modelValue?: Exclude<BCarouselProps['modelValue'], undefined>; } & __VLS_Props; declare function __VLS_template(): { attrs: Partial<{}>; slots: Readonly<{ default?: (props: Record<string, never>) => any; }> & { default?: (props: Record<string, never>) => any; }; refs: { _element: HTMLDivElement; _relatedTarget: HTMLDivElement; _slideValues: unknown[]; }; rootEl: HTMLDivElement; }; type __VLS_TemplateResult = ReturnType<typeof __VLS_template>; declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, { next: () => void; pause: import('../../../node_modules/@vueuse/shared').Fn; prev: () => void; resume: import('../../../node_modules/@vueuse/shared').Fn; }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "update:modelValue": (value: number) => any; slide: (value: BvCarouselEvent) => any; slid: (value: BvCarouselEvent) => any; "prev-click": (value: MouseEvent) => any; "next-click": (value: MouseEvent) => any; }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ "onUpdate:modelValue"?: ((value: number) => any) | undefined; onSlide?: ((value: BvCarouselEvent) => any) | undefined; onSlid?: ((value: BvCarouselEvent) => any) | undefined; "onPrev-click"?: ((value: MouseEvent) => any) | undefined; "onNext-click"?: ((value: MouseEvent) => any) | undefined; }>, { id: string; noWrap: boolean; interval: number; noHoverPause: boolean; imgHeight: string; imgWidth: string; noAnimation: boolean; fade: boolean; controls: boolean; background: string; controlsNextText: string; controlsPrevText: string; indicators: boolean; indicatorsButtonLabel: string; labelIndicators: string; keyboard: boolean; noTouch: boolean; ride: boolean | "carousel"; rideReverse: boolean; touchThreshold: Numberish; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, { _element: HTMLDivElement; _relatedTarget: HTMLDivElement; _slideValues: unknown[]; }, HTMLDivElement>; declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>; export default _default; type __VLS_WithTemplateSlots<T, S> = T & { new (): { $slots: S; }; };