bootstrap-vue-next
Version:
BootstrapVueNext is an early and lovely component library for Vue 3 & Nuxt 3 based on Bootstrap 5 and Typescript.
53 lines (52 loc) • 2.22 kB
text/typescript
import { BFormGroupProps, BFormGroupSlots } from '../../types';
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: Readonly<BFormGroupSlots> & BFormGroupSlots;
refs: {
_content: HTMLDivElement;
};
rootEl: any;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<BFormGroupProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<BFormGroupProps> & Readonly<{}>, {
disabled: boolean;
ariaInvalid: import('../..').AriaInvalid;
id: string;
state: import('../..').ValidationState;
description: string;
label: string;
tooltip: boolean;
floating: boolean;
validated: boolean;
labelFor: string;
labelClass: import('../../types/AnyValuedAttributes').ClassValue;
contentCols: boolean | import('../../types/CommonTypes').Numberish;
labelCols: boolean | import('../../types/CommonTypes').Numberish;
labelAlign: string;
feedbackAriaLive: string;
invalidFeedback: string;
labelSize: string;
labelVisuallyHidden: boolean;
validFeedback: string;
contentColsSm: boolean | import('../../types/CommonTypes').Numberish;
contentColsMd: boolean | import('../../types/CommonTypes').Numberish;
contentColsLg: boolean | import('../../types/CommonTypes').Numberish;
contentColsXl: boolean | import('../../types/CommonTypes').Numberish;
labelColsSm: boolean | import('../../types/CommonTypes').Numberish;
labelColsMd: boolean | import('../../types/CommonTypes').Numberish;
labelColsLg: boolean | import('../../types/CommonTypes').Numberish;
labelColsXl: boolean | import('../../types/CommonTypes').Numberish;
labelAlignSm: string;
labelAlignMd: string;
labelAlignLg: string;
labelAlignXl: string;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
_content: HTMLDivElement;
}, any>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};