npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@terminus/ui-radio-group

v4.0.0

Published

<h1>Radio Group</h1>

Downloads

33

Readme

CI/CD Status Codecov MIT License
NPM version Library size

Table of Contents

Installation

Packages that need to be installed

  • @angular/cdk
  • @angular/common
  • @angular/core
  • @angular/forms
  • @angular/platform-browser
  • @popperjs/core
  • @terminus/design-tokens
  • @terminus/fe-utilities
  • @terminus/ui-pipes
  • @terminus/ui-styles
  • @terminus/ui-utilities
  • @terminus/ui-radio-group
  • @terminus/ui-validation-messages
  • date-fns

Use the ng add command to quickly install all the needed dependencies:

ng add @terminus/ui-radio-group

Modules that need to be in NgModule

  • TsRadioGroupModule

CSS imports

In your top level stylesheet, add these imports:

@import '~@terminus/design-tokens/css/library-design-tokens.css';
@import '~@terminus/ui-styles/terminus-ui.css';

CSS resources

Load the needed font families by adding this link to the <head> of your application:

<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">

Usage

Pass in one or more <ts-radio-button> components to a <ts-radio-group>:

<ts-radio-group>
  <ts-radio-button value="1">One</ts-radio-button>
  <ts-radio-button value="2">Two</ts-radio-button>
  <ts-radio-button value="3">Three</ts-radio-button>
</ts-radio-group>

<!-- Or dynamically -->
<ts-radio-group>
  <ng-container *ngFor="let item of items">
    <ts-radio-button [value]="item.id">{{ item.title }}</ts-radio-button>
  </ng-container>
</ts-radio-group>

State control

State can be managed by ngModel, FormControl or formControlName:

<!-- FormGroup -->
<form [formGroup]="formGroupForm">
  <ts-radio-group [formControl]="formGroupForm.get('myGroup')">
    <ng-container *ngFor="let item of items;">
      <ts-radio-button [value]="item.id">{{ item.title }}</ts-radio-button>
    </ng-container>
  </ts-radio-group>
</form>

<!-- formGroupName -->
<form [formGroup]="formGroupNameForm">
  <ts-radio-group formControlName="myGroup">
    <ng-container *ngFor="let item of items;">
      <ts-radio-button [value]="item.id">{{ item.title }}</ts-radio-button>
    </ng-container>
  </ts-radio-group>
</form>

<!-- ngModel -->
<ts-radio-group [(ngModel)]="myModel">
  <ng-container *ngFor="let item of items;">
    <ts-radio-button [value]="item.id">{{ item.title }}</ts-radio-button>
  </ng-container>
</ts-radio-group>

Sub-labels

Consumers have full control over the content of each radio button. Extra content such as icons or sub-labels can be added directly in the template:

<ts-radio-group>
  <ts-radio-button value="1">
    One
    <small>My sublabel</small>
  </ts-radio-button>
  <ts-radio-button value="2">
    Two
    <small>My second sublabel</small>
  </ts-radio-button>
</ts-radio-group>

Validation

Validation messages

To enable validation messages the <ts-radio-group> must be using a control to manage state - and that control must be passed in to the validationFormControl input:

<ts-radio-group formControlName="myGroup" [validationFormControl]="formGroupForm.get('myGroup')">
  ...
</ts-radio-group>

No validation or hint

Disable the validation and hint section for the control

<ts-radio-group [noValidationOrHint]="true">
  ...
</ts-radio-group>

Fieldset

The wrapping fieldset supports a form ID and a legend value:

<ts-radio-group fieldsetId="myFormId" fieldsetLegend="My radio group!">
  ...
</ts-radio-group>

Events

The group and individual radio buttons both emit selection change events:

<ts-radio-group (selectionChange)="groupChange($event)">
  <ts-radio-button value="one" (selectionChange)="optionChange($event)">One</ts-radio-button>
</ts-radio-group>

| Event | Description | Payload | |:---------------------------|:----------------------------------------------|:----------------| | selectionChange (group) | Fired when the radio group selection changes | TsRadioChange | | selectionChange (button) | Fired when the radio button selection changes | TsRadioChange |

Required

The required DOM attribute must be added by setting the @Input at the group or button level:

<!-- This will set the required attribute on all child radio buttons -->
<ts-radio-group [isRequired]="true">
  <ts-radio-button value="one">One</ts-radio-button>
  <ts-radio-button value="two">Two</ts-radio-button>
</ts-radio-group>

<!-- Or, set at an individual level -->
<ts-radio-group>
  <ts-radio-button value="one" [isRequired]="true">One</ts-radio-button>
  <ts-radio-button value="two" [isRequired]="true">Two</ts-radio-button>
</ts-radio-group>

If using ReactiveForms, also set the FormControl as required:

myForm = this.formBuilder.group({
  myRadioGroup: [null, [Validators.required]],
});

Disabled

To disable the entire radio group, set isDisabled to true:

<!-- This will disable all child radio buttons -->
<ts-radio-group [isDisabled]="true">
  <ts-radio-button value="one">One</ts-radio-button>
  <ts-radio-button value="two">Two</ts-radio-button>
</ts-radio-group>

<!-- Or, disable at an individual level -->
<ts-radio-group>
  <ts-radio-button value="one" [isDisabled]="true">One</ts-radio-button>
  <ts-radio-button value="two" [isDisabled]="false">Two</ts-radio-button>
</ts-radio-group>

Manually set selection

A single option can be programmatically marked as selected:

<ts-radio-group>
  <ts-radio-button value="one">One</ts-radio-button>
  <ts-radio-button value="two" [isChecked]="true">Two</ts-radio-button>
</ts-radio-group>

Visual mode

Visual mode displays radio options as large clickable areas containing content.

This input defaults to none which outputs a standard radio group.

// All available visual format options:
export type TS_VISUAL_FORMATS
  = 'none'
  | 'visual'
  | 'visual-centered'
  | 'visual-small'
  | 'visual-small-centered'
  | 'segmented'
  | 'segmented-vertical'
;
<ts-radio-group visualFormat="visual-centered"></ts-radio-group>

Segmented mode

Segmented mode displays radio options much like 'tabs' or 'button groups'. This mode can display in horizontal or vertical layout:

<ts-radio-group visualFormat="segmented">...</ts-radio-group>
<ts-radio-group visualFormat="segmented-vertical">...</ts-radio-group>

Test Helpers

Some helpers are exposed to assist with testing. These are imported from @terminus/ui-radio-group/testing;

[source]

| Function | |------------------------------| | getAllRadioGroupInstances | | getRadioGroupInstance | | getRadioGroupParentElement | | selectStandardRadio | | selectVisualRadio |