'daff-radio'
| Name | Type | Description | |||
|---|---|---|---|---|---|
| @Output() selectionChange | EventEmitter<boolean> | Output event of selection being changed | |||
| @Input() checked | boolean | The checked property of the radio | |||
| @Input() value | any | The value of the radio | |||
| @Input() id | string | The id of the radio. It is uniquely generated but can be overwritten by the user. Must be unique. | |||
| @Input() name | '' | Name of the Radio | |||
| @Input() label | string | Used for aria-label. Default to name if user does not input a label. | |||
| @Input() labelledby | string | Used for aria-labelledby. | disabled | false | |
| focused | false | ||||
| onFocus | updates Focus styling | ||||
| onBlur | updates Blur styling | ||||
| select | void | toggles checked attribute on | |||
| deselect | void | toggles checked attribute off | |||
| onChange |