s-m-r-t
Open the s-m-r-t source on GitHub Switch to dark color scheme
← All UI components

Forms and controls

SegmentedControl

No summary has been written for SegmentedControl. Everything below is generated from the declaration shipped in 0.44.0 and describes the real contract.

Public export

typescript
import { SegmentedControl } from '@happyvertical/smrt-ui/forms';
Import path
@happyvertical/smrt-ui/forms
Props
9
Props described
9 of 9
Bindable state
0
Callback events
1
Verified release
0.44.0

Props

NameTypeRequiredDescription
optionsSegmentedControlOption[]YesThe available segments and their values.
valuestring | numberNoThe currently selected option value.
labelstringYesAccessibility label for the control.
namestringNoForm field identifier.
disabledbooleanNoBlocks interaction and submission of this control.
fullWidthbooleanNoMakes the control stretch to full container width.
interactionControlInteractionOptions | falseNoRegisters this control for agent interaction; omit or pass false to exclude.
onvaluechange(value: string | number) => voidNoFired when the selected segment changes.
classstringNoAdditional CSS class names.

Bindable state

This component has no bindable public state.

Callback events

  • onvaluechange(value: string | number) => void

Examples and explanation