bootstrap-vue-next
Version:
BootstrapVueNext is an early and lovely component library for Vue 3 & Nuxt 3 based on Bootstrap 5 and Typescript.
57 lines (56 loc) • 2.62 kB
TypeScript
import { BvEvent } from '../../utils/classes';
import { BTabsProps } from '../../types/ComponentProps';
import { BTabsSlots } from '../../types';
type __VLS_Props = Omit<BTabsProps, 'modelValue' | 'activeIndex'>;
type __VLS_PublicProps = {
'index'?: Exclude<BTabsProps['index'], undefined>;
modelValue?: BTabsProps['modelValue'];
} & __VLS_Props;
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: Readonly<BTabsSlots> & BTabsSlots;
refs: {};
rootEl: any;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
"update:modelValue": (value: string | undefined) => any;
"update:index": (value: number) => any;
"activate-tab": (newTabId: string, preTabId: 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"?: ((newTabId: string, preTabId: string, newTabIndex: number, prevTabIndex: number, event: BvEvent) => any) | undefined;
}>, {
id: string;
end: boolean;
fill: boolean;
small: boolean;
tag: string;
noFade: boolean;
lazy: boolean;
contentClass: import('../../types/AnyValuedAttributes').ClassValue;
align: import('../..').AlignmentJustifyContent;
vertical: boolean;
card: boolean;
underline: boolean;
justified: boolean;
pills: boolean;
activeNavItemClass: import('../../types/AnyValuedAttributes').ClassValue;
activeTabClass: import('../../types/AnyValuedAttributes').ClassValue;
inactiveNavItemClass: 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 _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};