Radio button is a form element that allows the user to select one option from a set of options. It provides a way to choose between multiple options.
Radio buttons always have to be used in a group. The group is defined by the dap-ds-radio-group
element. The value
attribute of the dap-ds-radio-group
element defines the selected radio button.
The radio button component comes in two sizes: small, and large. The default size is small.
The radio button component comes with a secondary text. The secondary text is used to give more information about the radio button.
The radio button component can have different statuses.
The radio button component can be used in a group. The group is defined by the dap-ds-radio-group
element. The value
attribute of the dap-ds-radio-group
element defines the selected radio button.
Like any other form element, the radio button group can be used in a form and it has all the form element attributes.
The radio button component can have default background. You can use it with the type="background"
attribute.
The radio button component can have border with border
property.
import { DapDSRadioButton } from 'dap-design-system/dist/dds'
import { DapDSRadioButtonReact } from 'dap-design-system/dist/react'
Property | Type | Default | Description |
---|---|---|---|
focusable | boolean | false | Whether the radio button is focusable |
type | 'normal' , 'background' | 'normal' | The type of the radio button |
border | boolean | false | This sets up a border around the radio button, when true. |
name | string | The name of the radio button. | |
value | string | The value of the radio button. | |
checked | boolean | The checked state of the radio button. | |
label | string | The label of the radio button. | |
description | string | The description of the radio button. | |
size | 'xs','sm' , 'md' , 'lg' | The size of the radio button. | |
disabled | boolean | The disabled state of the radio button. | |
required | boolean | The required state of the radio button. | |
labelPlacement | 'left' , 'right' | The placement of the label. | |
descriptionPlacement | 'top' , 'bottom' | The placement of the description. |
No slots available.
Event Name | Description | Type |
---|---|---|
dds-change | Fired when the radio button is checked. | {value: string } |
dds-blur | Emitted when the radio button loses focus. | {void } |
dds-focus | Emitted when the radio button gains focus. | {void } |
dds-input | Emitted when the radio button receives input. | {value: string } |
Part Name | Description |
---|---|
base | The main radio button container. |
wrapper | The wrapper of the radio button. |
baselabel | The main label container |
label | The label of the radio button. |
input | The native input of the radio button. |
control | The control of the radio button. |
description | The description of the radio button. |
Property Name | Description |
---|---|
--dds-radio-size | Sets the size of the radio button. Default: var(--dds-spacing-600) |
--dds-radio-border-width | Sets the border width of the radio button. Default: var(--dds-border-width-large) |
--dds-radio-border-radius | Sets the border radius of the radio button. Default: var(--dds-radius-rounded) |
--dds-radio-border-color | Sets the border color of the radio button. Default: var(--dds-border-neutral-base) |
--dds-radio-background-color | Sets the background color of the radio button. Default: var(--dds-background-neutral-base) |
--dds-radio-hover-border-color | Sets the border color of the radio button on hover. Default: var(--dds-border-neutral-medium) |
--dds-radio-hover-background-color | Sets the background color of the radio button on hover. Default: var(--dds-background-neutral-medium) |
--dds-radio-active-border-color | Sets the border color of the radio button when active. Default: var(--dds-border-neutral-strong) |
--dds-radio-active-background-color | Sets the background color of the radio button when active. Default: var(--dds-background-neutral-strong) |
--dds-radio-checked-background-color | Sets the background color of the checked radio button. Default: var(--dds-background-brand-base-inverted) |
--dds-radio-checked-hover-background-color | Sets the background color of the checked radio button on hover. Default: var(--dds-background-brand-medium-inverted) |
--dds-radio-checked-active-background-color | Sets the background color of the checked radio button when active. Default: var(--dds-background-brand-strong-inverted) |
--dds-radio-disabled-background-color | Sets the background color of the disabled radio button. Default: var(--dds-background-neutral-disabled) |
--dds-radio-icon-background-color | Sets the background color of the radio button icon. Default: var(--dds-transparent-white-strong-static) |
--dds-radio-disabled-icon-background-color | Sets the background color of the disabled radio button icon. Default: var(--dds-background-neutral-stronger) |
--dds-radio-invalid-border-color | Sets the border color of the invalid radio button. Default: var(--dds-border-negative-base) |
--dds-radio-invalid-background-color | Sets the background color of the invalid radio button. Default: var(--dds-background-negative-base) |
--dds-radio-invalid-hover-border-color | Sets the border color of the invalid radio button on hover. Default: var(--dds-border-negative-medium) |
--dds-radio-invalid-hover-background-color | Sets the background color of the invalid radio button on hover. Default: var(--dds-background-negative-medium) |
--dds-radio-invalid-active-border-color | Sets the border color of the invalid radio button when active. Default: var(--dds-border-negative-strong) |
--dds-radio-invalid-active-background-color | Sets the background color of the invalid radio button when active. Default: var(--dds-background-negative-strong) |
--dds-radio-invalid-checked-background-color | Sets the background color of the invalid checked radio button. Default: var(--dds-background-negative-base-inverted) |
--dds-radio-invalid-checked-hover-background-color | Sets the background color of the invalid checked radio button on hover. Default: var(--dds-background-negative-medium-inverted) |
--dds-radio-invalid-checked-active-background-color | Sets the background color of the invalid checked radio button when active. Default: var(--dds-background-negative-strong-inverted) |
--dds-radio-icon-size | Sets the size of the radio button icon. Default: var(--dds-spacing-300) |
Property | Type | Default | Description |
---|---|---|---|
tooltipPlacement | 'top' , 'right' , 'bottom' , 'left' | 'bottom' | The tooltip placement of the radio group. |
hiddenInput | HTMLInputElement | ||
optionalLabel | string | '' | Text of optional label. |
name | string | The name of the radio group. | |
value | string | The value of the radio group. | |
disabled | boolean | Whether the radio group is disabled. | |
required | boolean | Whether the radio group is required. | |
label | string | The label of the radio group. | |
description | string | The description of the radio group. | |
tooltip | string | The tooltip of the radio group. | |
feedback | string | The feedback of the radio group. | |
feedbackType | 'negative' , 'positive' , 'warning' | The feedback type of the radio group. Can be negative , positive , or warning . | |
optional | boolean | The optional state of the radio group. | |
subtle | boolean | Font weight of the feedback label. Default is false which is bold. | |
size | 'xs' , 'sm' , 'lg' | The size of the radio group. Default is sm . |
Name | Description |
---|---|
(default) | The content of the radio group. |
feedback-icon | The custom icon of the feedback. |
Event Name | Description | Type |
---|---|---|
dds-change | Fired when the radio group is checked. | void |
dds-blur | Emitted when the radio group loses focus. | void |
dds-focus | Emitted when the radio group gains focus. | void |
Part Name | Description |
---|---|
base | The main radio group container. |
label | The label of the radio group. |
tooltip | The tooltip of the radio group. |
container | The container of the radio group items. |
No CSS custom properties available.