Skip to main content

Tags

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 { Tags } from '@telus-uds/components-base'

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.

Props

NameTypeDefaultDescription
itemsarrayOf[]The options a user may select
readOnlyfalse
inactivefalse
accessibilityRolePlatform.select({ web: 'group', default: 'none' })
tokenscustomSystem tokens prop, see tokens for more details
variantobjectOfSystem variant prop, see variants for more details
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`.
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.