bootstrap-vue-next
Version:
BootstrapVueNext is an early and lovely component library for Vue 3 & Nuxt 3 based on Bootstrap 5 and Typescript.
49 lines (48 loc) • 1.95 kB
TypeScript
import { BOverlayProps } from '../../types/ComponentProps';
import { BgColorVariant } from '../../types/ColorTypes';
import { BOverlaySlots } from '../../types';
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: Readonly<BOverlaySlots> & BOverlaySlots;
refs: {};
rootEl: any;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<BOverlayProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
click: (value: MouseEvent) => any;
hidden: () => any;
shown: () => any;
}, string, import('vue').PublicProps, Readonly<BOverlayProps> & Readonly<{
onClick?: ((value: MouseEvent) => any) | undefined;
onHidden?: (() => any) | undefined;
onShown?: (() => any) | undefined;
}>, {
blur: string | null;
fixed: boolean;
show: boolean;
noFade: boolean;
variant: BgColorVariant | "white" | "transparent" | null;
opacity: import('../../types/CommonTypes').Numberish;
rounded: boolean | import('../..').RadiusElement;
roundedTop: boolean | import('../..').RadiusElement;
roundedBottom: boolean | import('../..').RadiusElement;
roundedStart: boolean | import('../..').RadiusElement;
roundedEnd: boolean | import('../..').RadiusElement;
noWrap: boolean;
zIndex: import('../../types/CommonTypes').Numberish;
bgColor: string;
noCenter: boolean;
noSpinner: boolean;
overlayTag: string;
spinnerSmall: boolean;
spinnerType: import('../..').SpinnerType;
spinnerVariant: import('../..').ColorVariant | null;
wrapTag: string;
}, {}, {}, {}, 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;
};
};