UNPKG

@umbraco-ui/uui-radio

Version:

Radio input, Umbraco backoffice style. Package contains two custom elements, <uui-radio> and <uui-radio-group>. You must wrap radio elements in the group, to make the input work. Can participate in native form element.

7 lines (6 loc) 288 B
import { UUIEvent } from '@umbraco-ui/uui-base/lib/events'; import { UUIRadioElement } from './uui-radio.element'; export declare class UUIRadioEvent extends UUIEvent<{}, UUIRadioElement> { static readonly CHANGE = "change"; constructor(evName: string, eventInit?: any | null); }