UNPKG

@synergy-design-system/vue

Version:

Vue3 wrappers for the Synergy Design System

63 lines (62 loc) 2.16 kB
import { SynBlurEvent, SynFocusEvent } from '@synergy-design-system/components'; import { default as SynRadio } from '@synergy-design-system/components/components/radio/radio.component.js'; export type { SynBlurEvent } from '@synergy-design-system/components'; export type { SynFocusEvent } from '@synergy-design-system/components'; declare const _default: typeof __VLS_export; export default _default; declare const __VLS_export: __VLS_WithSlots<import('vue').DefineComponent<{ /** * The radio's value. * When selected, the radio group will receive this value. */ value?: SynRadio["value"]; /** * The radio's size. * When used inside a radio group, the size will be determined by the radio group's size so this attribute can typically be omitted. */ size?: SynRadio["size"]; /** * Disables the radio. */ disabled?: SynRadio["disabled"]; /** * Sets the radio to a readonly state. */ readonly?: SynRadio["readonly"]; }, { nativeElement: import('vue').Ref<SynRadio | undefined, SynRadio | undefined>; }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "syn-blur": (e: SynBlurEvent) => any; "syn-focus": (e: SynFocusEvent) => any; }, string, import('vue').PublicProps, Readonly<{ /** * The radio's value. * When selected, the radio group will receive this value. */ value?: SynRadio["value"]; /** * The radio's size. * When used inside a radio group, the size will be determined by the radio group's size so this attribute can typically be omitted. */ size?: SynRadio["size"]; /** * Disables the radio. */ disabled?: SynRadio["disabled"]; /** * Sets the radio to a readonly state. */ readonly?: SynRadio["readonly"]; }> & Readonly<{ "onSyn-blur"?: ((e: SynBlurEvent) => any) | undefined; "onSyn-focus"?: ((e: SynFocusEvent) => any) | undefined; }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>, { default?: (props: {}) => any; }>; type __VLS_WithSlots<T, S> = T & { new (): { $slots: S; }; };