Skip to main content

ButtonGroup

Library
UDS Base
Repository
github.com/telus/universal-design-system
Package
npmjs.com/package/@telus-uds/components-base
Package version
1.6.1
Loading...

Introduction

import { ButtonGroup } from '@telus-uds/components-base'

ButtonGroup allows the selection of (by default) one element from a selection of labelled buttons.

Spacing between buttons increases on wider viewports (lg and xl).

Guidance

Use for sets of options with very simple, short labels, ideally one word or two.

Consider RadioGroup for items with labels of a few words in length and RadioCard for more complex options requiring a title and additional description content.

maxValues prop

The prop maxValues may be passed to allow more than one item to be selected. Pass a number to set that as the maximum, or null to have no maximum and allow any number of selections.

Loading...

onChange prop

An onChange function may be provided, which is called when a ButtonGroup item is toggled.

Loading...

Controlled usage with values prop

Pass an array of item ids to the values prop as well as onChange to control the ButtonGroup from a parent.

This is usually the easiest way to control sibling content with a ButtonGroup.

Loading...

Uncontrolled usage

The ButtonGroup manages its own state internally if values is not passed.

A default selection may be set by passing an array of item IDs to initialValues. Do not use both initialValues and values props in the same ButtonGroup.

Loading...

Accessibility

By default, ButtonGroup is treated by accessibility tools as a group of radio buttons.

If maxValues prop is used to allow multiple selections, the buttons will be treated like checkboxes.

Props

NameTypeDefaultDescription
itemsarrayOf[]The options a user may select
maxValuesnumber1The maximum number of items a user may select at once. Defaults to 1 and behaves like radio buttons. To have no limit and allow any number of selections, pass `null`.
readOnlyfalse
inactivefalse
accessibilityRolemaxValues === 1 ? 'radiogroup' // radiogroup is cross-platform; only web aria has generic groups : Platform.select({ web: 'group', default: 'none' })
tokenscustomSystem tokens prop, see tokens for more details
variantobjectOfSystem variant prop, see variants for more details
onChangefuncIf provided, this function is called when the current selection is changed and is passed an array of the `id`s of all currently selected `items`.
valuesarrayOfIf the selected item(s) in the button group are to be controlled externally by a parent component, pass an array of strings as well as an `onChange` handler. Passing an array for "values" makes the ButtonGroup a "controlled" component that expects its state to be handled via `onChange` and so doesn't handle it itself.
initialValuesarrayOfIf `values` is not passed, making the ButtonGroup an "uncontrolled" component managing its own selected state, a default set of selections may be provided. Changing the `initialValues` does not change the user's selections.