Skip to main content

Starwind UI v3.0 is now available! Migration guide

Radio Group Primitive

Radio Group is a Starwind Runtime primitive in the controlled-value-group contract family. Astro and React share one semantic component API. React coordinates reactive state through controlled and default props plus callbacks. Astro renders initial state and coordinates later changes through DOM events and Runtime methods. Raw HTML uses Runtime attributes, DOM events, and imperative methods.

Anatomy

Use the Astro primitive adapter to render RadioGroup anatomy with the Runtime wiring included.

---
import { RadioGroup } from "@starwind-ui/astro/radio-group";
---
<RadioGroup.Root />

API Reference

Root

The main element that owns the Radio Group Runtime instance.

Default element
div
Discovery hook
data-sw-radio-group
Role
radiogroup

Props

Prop Type Default Toggle
value RadioGroupValue -
Description
Controls the current Radio Group value.
Kind
control
Targets
-
Full type
RadioGroupValue
React

Use value for controlled state and defaultValue for default state, and onValueChange for change proposals.

  • value
  • defaultValue
  • onValueChange
Astro

Use value or defaultValue for initial state, listen for starwind:value-change, and call setValue for later updates.

  • value
  • defaultValue
  • starwind:value-change
  • setValue
Runtime / HTML

Use data-default-value for initial state, listen for starwind:value-change, and call setValue for later updates.

  • data-default-value
  • starwind:value-change
  • setValue
defaultValue RadioGroupValue -
Description
Sets the initial Radio Group value for uncontrolled usage.
Kind
control
Targets
-
Full type
RadioGroupValue
React

Use value for controlled state and defaultValue for default state, and onValueChange for change proposals.

  • value
  • defaultValue
  • onValueChange
Astro

Use value or defaultValue for initial state, listen for starwind:value-change, and call setValue for later updates.

  • value
  • defaultValue
  • starwind:value-change
  • setValue
Runtime / HTML

Use data-default-value for initial state, listen for starwind:value-change, and call setValue for later updates.

  • data-default-value
  • starwind:value-change
  • setValue
disabled boolean false
Description
Disables the Root part.
Kind
option
Targets
-
Full type
boolean
form string -
Description
Associates the control with a form element.
Kind
option
Targets
-
Full type
string
name string -
Description
Sets the submitted form field name.
Kind
option
Targets
-
Full type
string
orientation "horizontal" | "vertical" "vertical"
Description
Sets the Radio Group orientation.
Kind
option
Targets
-
Full type
"horizontal" | "vertical"
readOnly boolean false
Description
Marks the control as read-only.
Kind
option
Targets
-
Full type
boolean
required boolean false
Description
Marks the form control as required.
Kind
option
Targets
-
Full type
boolean
onValueChange (value: string, details: RadioGroupValueChangeDetails) => void -
Description
Runs when the Radio Group value changes.
Kind
callback
Targets
-
Full type
(value: string, details: RadioGroupValueChangeDetails) => void
React

Use value for controlled state and defaultValue for default state, and onValueChange for change proposals.

  • value
  • defaultValue
  • onValueChange
Astro

Use value or defaultValue for initial state, listen for starwind:value-change, and call setValue for later updates.

  • value
  • defaultValue
  • starwind:value-change
  • setValue
Runtime / HTML

Use data-default-value for initial state, listen for starwind:value-change, and call setValue for later updates.

  • data-default-value
  • starwind:value-change
  • setValue

Events

Event Callback Value Toggle
valueChange onValueChange value: string
Description
Fires when the value changes for Radio Group.
DOM event
starwind:value-change
Details type
RadioGroupValueChangeDetails
Timing
before-state-commit
Cancelable
Yes
Cancellation sequence
  1. Check internal eligibility and intent.
  2. Create one details object for the proposal.
  3. Call the Runtime callback with the details object when the controller exposes one.
  4. Dispatch the cancelable DOM event with the same details object, including when the callback canceled it.
  5. Read details.isCanceled, including cancellation caused by preventDefault().
  6. Apply the accepted state.
  7. Notify Runtime subscribers and other accepted-only observers.

State

State Type Props Toggle
value RadioGroupValue value / defaultValue
Description
Tracks the current Radio Group value.
Initial attribute
data-default-value
Runtime getter
getValue
Runtime setter
setValue
React

Use value for controlled state and defaultValue for default state, and onValueChange for change proposals.

  • value
  • defaultValue
  • onValueChange
Astro

Use value or defaultValue for initial state, listen for starwind:value-change, and call setValue for later updates.

  • value
  • defaultValue
  • starwind:value-change
  • setValue
Runtime / HTML

Use data-default-value for initial state, listen for starwind:value-change, and call setValue for later updates.

  • data-default-value
  • starwind:value-change
  • setValue

Data Attributes

Runtime hooks
Attribute Value Description
data-sw-radio-group - Marks the Root part so Starwind Runtime can find it.
State
Attribute Value Description
data-value - Reflects the value state on the Root part.
Metadata
Attribute Value Description
data-default-value - Reflects the default value prop on the Root part.
data-disabled - Reflects the disabled prop on the Root part.
data-form - Reflects the form prop on the Root part.
data-name - Reflects the name prop on the Root part.
data-orientation - Reflects the orientation prop on the Root part.
data-readonly - Reflects the readonly prop on the Root part.
data-required - Reflects the required prop on the Root part.

Runtime API

Factory
createRadioGroup
Import
@starwind-ui/runtime/radio-group
Root hook
root data-sw-radio-group
Option props
defaultValue, disabled, form, name, orientation, readOnly, required, value

Runtime Setters

Method Target Description
setValue state: value Updates the current Radio Group value from Runtime code.
setDisabled prop: disabled Updates whether Radio Group is disabled from Runtime code.
setFormOptions props: form, name, required Updates Radio Group form-related options from Runtime code.
setName prop: name Updates the Radio Group form field name from Runtime code.
setOrientation prop: orientation Updates the Radio Group orientation from Runtime code.
setReadOnly prop: readOnly Updates whether Radio Group is read-only from Runtime code.
setRequired prop: required Updates whether Radio Group is required from Runtime code.

Form Participation

FactValue
Form propsform, name, required, value
Hidden input-
Field integrationYes
Component Relationship
Radio Group Composite

Changelog

View version history v1.0.0 4 releases

v1.0.0

  • Promoted this Primitive's vendoring version to the stable 1.0.0 baseline. Its existing API and Runtime behavior carry forward from the previous release.

v0.1.2

  • Marked generated React Primitive files as client modules so vendored installs preserve client boundaries in React server frameworks.
  • Kept generated React state-change callbacks and DOM events cancelable until the Runtime accepts the proposed state, then synchronized rendered state.

v0.1.1

  • Synchronized vendored React Radio Group state after accepted Runtime transitions and external state changes.

v0.1.0

  • Introduced grouped radio ownership, roving keyboard focus, value changes, and form participation.