Skip to main content

Tags

Library
UDS Base
Repository
github.com/telus/universal-design-system
Package
npmjs.com/package/@telus-uds/ds-allium
Package version
1.14.0
Loading...

Introduction

import { Tags } from '@telus-uds/ds-allium'

Tags allows the selection of one or more items, typically used for filtering content.

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

Guidance

Tags should have very simple, short labels, ideally one word or two.

maxValues prop

The prop maxValues may be passed a number to limit how many items are selelcted.

By default, any number of tags may be selected.

Loading...

onChange prop

An onChange function may be provided, which is called when a Tags 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 Tags from a parent.

This is usually the easiest way to control subsequent lists of content with Tags.

Accessibility

Tags buttons will be treated like checkboxes by accessibility tools; unless maxValues is set to 1, in which case they will be treated like radio buttons.

Platform considerations

The component is available on both native platforms and web.

Props

NameTypeDefaultDescription
accessibilityRolePlatform.select({ web: 'group', default: 'none' })
inactivefalse
initialValuesArray<string>If '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.
itemsArray<{ label: string, accessibilityLabel: string, id: string, ref }>[]The options a user may select
maxValuesnumberIf provided, sets a maximum number of items a user may select at once.
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'.
readOnlyfalse
tokenscustomSystem tokens prop, see tokens for more details
valuesArray<string>If 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.
variantobjectOfSystem variant prop, see variants for more details

Tokens

In exceptional circumstances, the following tokens can be passed to this component to override its default styles. Do not do this unless absolutely necessary. Read more about overriding styles.

View Tokens
Prop NameToken PropertyToken Type
tokensspaceinteger
directiondirection
alignItemsflexAlign
justifyContentflexJustifyContent
flexGrowinteger
flexShrinkinteger

Figma

Variants

This component does not have any stylistic variants.

Feedback