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) • 1.92 kB
TypeScript
import { BFormRadioGroupProps } from '../../types/ComponentProps';
import { BFormRadioGroupSlots } from '../../types/ComponentSlots';
type __VLS_Props = Omit<BFormRadioGroupProps, 'modelValue'>;
type __VLS_PublicProps = {
modelValue?: Exclude<BFormRadioGroupProps['modelValue'], undefined>;
} & __VLS_Props;
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: Readonly<BFormRadioGroupSlots> & BFormRadioGroupSlots;
refs: {
_element: HTMLDivElement;
};
rootEl: HTMLDivElement;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {
blur: () => void;
focus: () => void;
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
"update:modelValue": (value: import('../..').RadioValue) => any;
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
"onUpdate:modelValue"?: ((value: import('../..').RadioValue) => any) | undefined;
}>, {
disabled: boolean;
ariaInvalid: import('../..').AriaInvalid;
autofocus: boolean;
form: string;
id: string;
name: string;
required: boolean;
size: import('../..').Size;
state: import('../..').ValidationState;
reverse: boolean;
buttons: boolean;
options: readonly import('../..').RadioOptionRaw[];
stacked: boolean;
validated: boolean;
valueField: string;
textField: string;
disabledField: string;
plain: boolean;
buttonVariant: import('../..').ButtonVariant | null;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
_element: HTMLDivElement;
}, HTMLDivElement>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};