Forms and controls
RadioGroup
No summary has been written for RadioGroup. Everything below is generated from the declaration shipped in 0.44.0 and describes the real contract.Public export
typescript
import { RadioGroup } from '@happyvertical/smrt-ui/forms';- Import path
@happyvertical/smrt-ui/forms- Props
- 11
- Props described
- 11 of 11
- Bindable state
- 0
- Callback events
- 1
- Verified release
- 0.44.0
Props
NameTypeRequiredDescription
namestringYesIdentifier for this radio group and its form field.valuestringNoThe currently selected option value.labelstringNoLegend text displayed above the radio options.descriptionstringNoExplanatory text shown below the label.errorstringNoValidation error message to display.disabledbooleanNoBlocks interaction and submission of this control.requiredbooleanNoMakes selecting an option mandatory for validation.interactionControlInteractionOptions | falseNoRegisters this control for agent interaction; omit or pass false to exclude.onvaluechange(value: string) => voidNoFired when the selected option value changes.childrenSnippetYesThe RadioOption components to display.classstringNoAdditional CSS class names.Bindable state
This component has no bindable public state.
Callback events
onvaluechange(value: string) => void