UNPKG

bootstrap-vue-next

Version:

Seamless integration of Vue 3, Bootstrap 5, and TypeScript for modern, type-safe UI development

66 lines (65 loc) 2.72 kB
import { BvEvent } from '../../utils/classes'; import { BTabsProps, BTabsSlots } from '../../types'; type __VLS_Props = Omit<BTabsProps, 'modelValue' | 'activeIndex'>; type __VLS_Slots = BTabsSlots; type __VLS_ModelProps = { 'index'?: Exclude<BTabsProps['index'], undefined>; modelValue?: BTabsProps['modelValue']; }; type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps; declare const __VLS_base: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "update:modelValue": (value: string | undefined) => any; "update:index": (value: number) => any; "activate-tab": (obj: { newTabId: string; prevTabId: string; newTabIndex: number; prevTabIndex: number; event: BvEvent; }) => any; }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ "onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined; "onUpdate:index"?: ((value: number) => any) | undefined; "onActivate-tab"?: ((obj: { newTabId: string; prevTabId: string; newTabIndex: number; prevTabIndex: number; event: BvEvent; }) => any) | undefined; }>, { end: boolean; fill: boolean; id: string; tag: string; noFade: boolean; align: import('../..').AlignmentJustifyContent; lazy: boolean; small: boolean; contentClass: import('../../types/AnyValuedAttributes').ClassValue; vertical: boolean; card: boolean; underline: boolean; justified: boolean; pills: boolean; activeNavItemClass: import('../../types/AnyValuedAttributes').ClassValue; activeNavLinkClass: import('../../types/AnyValuedAttributes').ClassValue; activeTabClass: import('../../types/AnyValuedAttributes').ClassValue; inactiveNavItemClass: import('../../types/AnyValuedAttributes').ClassValue; inactiveNavLinkClass: import('../../types/AnyValuedAttributes').ClassValue; inactiveTabClass: import('../../types/AnyValuedAttributes').ClassValue; navClass: import('../../types/AnyValuedAttributes').ClassValue; navItemClass: import('../../types/AnyValuedAttributes').ClassValue; navWrapperClass: import('../../types/AnyValuedAttributes').ClassValue; noKeyNav: boolean; noNavStyle: boolean; tabClass: import('../../types/AnyValuedAttributes').ClassValue; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots<T, S> = T & { new (): { $slots: S; }; };