bootstrap-vue-next
Version:
BootstrapVueNext is an early and lovely component library for Vue 3 & Nuxt 3 based on Bootstrap 5 and Typescript.
65 lines (64 loc) • 2.97 kB
TypeScript
import { BvEvent } from '../../utils/classes';
import { BTabsProps } from '../../types/ComponentProps';
declare let __VLS_typeProps: Omit<BTabsProps, 'modelValue' | 'activeId'>;
type __VLS_PublicProps = {
modelValue?: Exclude<BTabsProps['modelValue'], undefined>;
'activeId'?: BTabsProps['activeId'];
} & typeof __VLS_typeProps;
declare function __VLS_template(): {
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: {};
attrs: Partial<{}>;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
'update:modelValue': (modelValue: number) => any;
'update:activeId': (activeId: string | undefined) => any;
'activate-tab': (v1: number, v2: number, v3: BvEvent) => any;
click: () => any;
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
onClick?: (() => any) | undefined;
"onUpdate:modelValue"?: ((modelValue: number) => any) | undefined;
"onActivate-tab"?: ((v1: number, v2: number, v3: BvEvent) => any) | undefined;
"onUpdate:activeId"?: ((activeId: string | undefined) => any) | undefined;
}>, {
id: string;
end: boolean;
fill: boolean;
tag: string;
lazy: boolean;
noFade: boolean;
align: import('../..').AlignmentJustifyContent;
small: boolean;
contentClass: import('../../types/AnyValuedAttributes').ClassValue;
vertical: boolean;
card: 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;
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;
};
};