bootstrap-vue-next
Version:
BootstrapVueNext is an early and lovely component library for Vue 3 & Nuxt 3 based on Bootstrap 5 and Typescript.
68 lines (67 loc) • 3 kB
TypeScript
import { BvEvent } from '../../utils/classes';
import { BTabsProps } from '../../types/ComponentProps';
type __VLS_Props = Omit<BTabsProps, 'modelValue' | 'activeId'>;
type __VLS_PublicProps = {
modelValue?: Exclude<BTabsProps['modelValue'], undefined>;
'activeId'?: BTabsProps['activeId'];
} & __VLS_Props;
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: Readonly<{
default?: (props: Record<string, never>) => any;
empty?: (props: Record<string, never>) => any;
'tabs-end'?: (props: Record<string, never>) => any;
'tabs-start'?: (props: Record<string, never>) => any;
}> & {
default?: (props: Record<string, never>) => any;
empty?: (props: Record<string, never>) => any;
'tabs-end'?: (props: Record<string, never>) => any;
'tabs-start'?: (props: Record<string, never>) => any;
};
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, {
click: () => any;
"update:modelValue": (value: number) => any;
"activate-tab": (v1: number, v2: number, v3: BvEvent) => any;
"update:activeId": (value: string | undefined) => any;
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
onClick?: (() => any) | undefined;
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
"onActivate-tab"?: ((v1: number, v2: number, v3: BvEvent) => any) | undefined;
"onUpdate:activeId"?: ((value: string | undefined) => any) | undefined;
}>, {
id: string;
end: boolean;
fill: boolean;
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;
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;
};
};