bootstrap-vue-3
Version:
Early (but lovely) implementation of Vue 3, Bootstrap 5 and Typescript
162 lines (161 loc) • 4.08 kB
TypeScript
import type { Booleanish, ClassValue } from '../../types';
declare const _sfc_main: import("vue").DefineComponent<{
id: {
type: StringConstructor;
required: false;
};
title: {
type: StringConstructor;
required: false;
};
active: {
type: null;
required: false;
default: boolean;
};
buttonId: {
type: StringConstructor;
required: false;
default: undefined;
};
disabled: {
type: null;
required: false;
default: boolean;
};
lazy: {
type: null;
required: false;
default: undefined;
};
lazyOnce: {
type: null;
required: false;
default: undefined;
};
noBody: {
type: (StringConstructor | BooleanConstructor)[];
required: false;
default: boolean;
};
tag: {
type: StringConstructor;
required: false;
default: string;
};
titleItemClass: {
type: null;
required: false;
default: undefined;
};
titleLinkAttributes: {
type: ObjectConstructor;
required: false;
default: undefined;
};
titleLinkClass: {
type: null;
required: false;
default: undefined;
};
}, {
props: {
id?: string | undefined;
title?: string | undefined;
active: Booleanish;
buttonId: string;
disabled: Booleanish;
lazy: Booleanish;
lazyOnce: Booleanish;
noBody: boolean | string;
tag: string;
titleItemClass: ClassValue;
titleLinkAttributes: Record<string, unknown>;
titleLinkClass: ClassValue;
};
lazyRenderCompleted: import("vue").Ref<boolean>;
activeBoolean: import("vue").ComputedRef<boolean>;
disabledBoolean: import("vue").ComputedRef<boolean>;
lazyBoolean: import("vue").ComputedRef<boolean>;
parentData: import("../../types/components").BTabsParentData | null;
computedLazy: import("vue").ComputedRef<boolean>;
computedLazyOnce: import("vue").ComputedRef<boolean>;
computedActive: import("vue").ComputedRef<boolean>;
showSlot: import("vue").ComputedRef<boolean>;
classes: import("vue").ComputedRef<{
active: boolean;
show: boolean;
'card-body': boolean | undefined;
}>;
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
id: {
type: StringConstructor;
required: false;
};
title: {
type: StringConstructor;
required: false;
};
active: {
type: null;
required: false;
default: boolean;
};
buttonId: {
type: StringConstructor;
required: false;
default: undefined;
};
disabled: {
type: null;
required: false;
default: boolean;
};
lazy: {
type: null;
required: false;
default: undefined;
};
lazyOnce: {
type: null;
required: false;
default: undefined;
};
noBody: {
type: (StringConstructor | BooleanConstructor)[];
required: false;
default: boolean;
};
tag: {
type: StringConstructor;
required: false;
default: string;
};
titleItemClass: {
type: null;
required: false;
default: undefined;
};
titleLinkAttributes: {
type: ObjectConstructor;
required: false;
default: undefined;
};
titleLinkClass: {
type: null;
required: false;
default: undefined;
};
}>>, {
tag: string;
disabled: any;
active: any;
noBody: string | boolean;
lazy: any;
buttonId: string;
lazyOnce: any;
titleItemClass: any;
titleLinkAttributes: Record<string, any>;
titleLinkClass: any;
}>;
export default _sfc_main;