Type alias Buttons<TValue>

Buttons<TValue>: {
    readonly [value in Exclude<TValue, undefined>]?: InControl<true | undefined>
}

Radio buttons map.

A key is the radio group value used when corresponding radio button is checked. The value is a radio button, or an arbitrary input control that accepts at least true and undefined values. The latter means the radio button is not checked. Everything else means it is checked. To check the matching radio button the group would assign a true value to its control.

Type Parameters

  • TValue extends string | undefined

    Radio buttons input value type.

Generated using TypeDoc