Primitives
Selection within a group.
Import the Radio primitives from ng-primitives/radio
.
import { NgpRadioGroup, NgpRadioItem, NgpRadioIndicator } from 'ng-primitives/radio';
Assemble the radio directives in your template.
<div ngpRadioGroup [(ngpRadioGroupValue)]="value">
<button ngpRadioItem ngpRadioItemValue="Option 1">
<ng-icon ngpRadioIndicator name="dot" />
Option 1
</button>
<button ngpRadioItem ngpRadioItemValue="Option 2">
<ng-icon ngpRadioIndicator name="dot" />
Option 2
</button>
<button ngpRadioItem ngpRadioItemValue="Option 3">
<ng-icon ngpRadioIndicator name="dot" />
Option 3
</button>
</div>
Generate a radio component with the NgpRadioGroup
primitive preconfigured.
ng g ng-primitives:radio
name
: The name of the component.prefix
: The prefix to apply to the generated component selector.directory
: The directory at which to create the component file.style
: The file extension or preprocessor to use for style files.inlineStyle
: Include styles inline in the component.ts file. Only CSS styles can be included inline.inlineTemplate
: Include template inline in the component.ts fileThe following directives are available to import from the ng-primitives/radio
package:
Apply the ngpRadioGroup
directive to an element that represents the group of radio items.
[ngpRadioGroup]
ngpRadioGroup
Apply the ngpRadioItem
directive to an element that represents a radio item. This would typically be a button
element.
[ngpRadioItem]
ngpRadioItem
The following data attributes are applied to the ngpRadioGroup
directive:
Attribute | Description | Value |
---|---|---|
data-orientation |
The orientation of the radio group. | vertical | horizontal |
data-disabled |
Applied when the radio group is disabled. | - |
The following data attributes are applied to the ngpRadioItem
directive:
Attribute | Description |
---|---|
data-checked |
Applied when the radio item is checked. |
data-disabled |
Applied when the radio item is disabled. |
data-hover |
Applied when the radio item is hovered. |
data-focus-visible |
Applied when the radio item is focused. |
data-press |
Applied when the radio item is pressed. |
Apply the ngpRadioIndicator
directive to an element that represents the radio indicator (i.e. the dot).
The following data attributes are applied to the ngpRadioItem
directive:
Attribute | Description |
---|---|
data-checked |
Applied when the radio item is checked. |
data-disabled |
Applied when the radio item is disabled. |
data-hover |
Applied when the radio item is hovered. |
data-press |
Applied when the radio item is pressed. |
Adheres to the Radio Group WAI-ARIA design pattern.
Copyright © 2024 Angular Primitives