Props
| Prop | Type | Default | Notes |
|---|---|---|---|
tone | neutral | primary | secondary | tertiary | error | neutral | |
size | xs | sm | md | lg | xl | md | |
label | string | '' | |
description | string | '' | |
checked | boolean | false | |
disabled | boolean | false | |
name | string | '' | |
value | string | on |
StellarUI
Standalone native radio control with shared field metadata and browser grouping through matching `name` values.
<stellar-radio
label="Starter"
description="Choose one plan."
name="plan"
value="starter"
checked
>
<stellar-radio-item checked>Starter</stellar-radio-item>
<stellar-radio-item>Team</stellar-radio-item>
<stellar-radio-item>Enterprise</stellar-radio-item>
</stellar-radio>Complete props, events, slots, and implementation notes for the shipped radio control.
| Prop | Type | Default | Notes |
|---|---|---|---|
tone | neutral | primary | secondary | tertiary | error | neutral | |
size | xs | sm | md | lg | xl | md | |
label | string | '' | |
description | string | '' | |
checked | boolean | false | |
disabled | boolean | false | |
name | string | '' | |
value | string | on |
| Event | Source | Notes |
|---|---|---|
change | host | Redispatched from the inner native radio when selection changes. |
| Slot | Notes |
|---|---|
label | Optional label content. Overrides the label prop when present. |
description | Optional helper copy below the control. Overrides the description prop when present. |