Toggle button API
Import
Section titled “Import”Cimpress UI exports three toggle-button-related components:
ToggleButton
: displays a toggle button that has a visible labelToggleIconButton
: displays a toggle button that has no visible label (icon-only)ToggleButtonGroup
: container component that groups related toggle buttons together, providing layout and shared state management.
import { UNSTABLE_ToggleButton, UNSTABLE_ToggleButtonGroup } from '@cimpress-ui/react';
Controlled/uncontrolled usage
Section titled “Controlled/uncontrolled usage”This component can be used in a controlled or uncontrolled way.
In the controlled way, this component doesn’t maintain its own internal state, and its value is provided by the parent component. Use the controlled way when you need to be able to change the state of this component in other parts of your application.
In the uncontrolled way, this component maintains its own internal state, and can optionally notify the parent component when its internal state changes. Use the uncontrolled way when you don’t need to change the state of this component in other parts of your application.
Single toggle button
Section titled “Single toggle button”import { Stack, UNSTABLE_ToggleButton as ToggleButton } from '@cimpress-ui/react';import { useState } from 'react';
export default function Demo() { const [isSelected, setIsSelected] = useState(false);
return ( <Stack gap={32}> <ToggleButton isSelected={isSelected} onChange={setIsSelected}> I am controlled by React state </ToggleButton>
<ToggleButton>I am uncontrolled and unselected by default</ToggleButton>
<ToggleButton defaultSelected>I am uncontrolled and selected by default</ToggleButton> </Stack> );}
Toggle button group
Section titled “Toggle button group”Controlled
Uncontrolled
import { type Key, Stack, Text, UNSTABLE_ToggleButton as ToggleButton, UNSTABLE_ToggleButtonGroup as ToggleButtonGroup,} from '@cimpress-ui/react';import { useState } from 'react';
export default function Demo() { const [selectedKeys, setSelectedKeys] = useState<Set<Key>>(() => new Set(['left']));
return ( <Stack gap={32}> <Stack gap={16}> <Text as="h2" variant="title-4"> Controlled </Text>
<ToggleButtonGroup aria-label="Text alignment (controlled)" selectedKeys={selectedKeys} onSelectionChange={setSelectedKeys} > <ToggleButton id="left">Left</ToggleButton> <ToggleButton id="center">Center</ToggleButton> <ToggleButton id="right">Right</ToggleButton> </ToggleButtonGroup> </Stack>
<Stack gap={16}> <Text as="h2" variant="title-4"> Uncontrolled </Text>
<ToggleButtonGroup aria-label="Text alignment (uncontrolled)" defaultSelectedKeys={['left']}> <ToggleButton id="left">Left</ToggleButton> <ToggleButton id="center">Center</ToggleButton> <ToggleButton id="right">Right</ToggleButton> </ToggleButtonGroup> </Stack> </Stack> );}
Accessibility notes
Section titled “Accessibility notes”The toggle button state can be changed by pressing Enter or Space, similar to a native HTML checkbox.
ToggleButtonGroup
is a single tab stop within the page’s tab order. Use the Tab key to navigate to the group, and the arrow keys to navigate between toggle buttons within the group.
ToggleButton
requires a textual label to remain accessible to assistive technologies. ToggleIconButton
and ToggleButtonGroup
should have an aria-label
prop defined to identify the function of the button to assistive technologies. See our accessibility guide for more details.
The toggle button label must remain the same regardless of the selection state.
Group state management
Section titled “Group state management”Selection state of toggle buttons within ToggleButtonGroup
cannot be set individually.
Please use ToggleButtonGroup
’s selectedKeys
/defaultSelectedKeys
props instead.
// This won't work! :(<ToggleButtonGroup aria-label="Text alignment"> <ToggleButton id="left">Left</ToggleButton> <ToggleButton id="center">Center</ToggleButton> <ToggleButton id="right" defaultSelected>Right</ToggleButton></ToggleButtonGroup>
// But this will :)<ToggleButtonGroup aria-label="Text alignment" defaultSelectedKeys={['right']}> <ToggleButton id="left">Left</ToggleButton> <ToggleButton id="center">Center</ToggleButton> <ToggleButton id="right">Right</ToggleButton></ToggleButtonGroup>
API reference
Section titled “API reference”ToggleButton
Section titled “ToggleButton”Displays a labelled button that allows users to toggle between two states.
Can be used standalone, or as part of ToggleButtonGroup
.
- ref Ref<HTMLButtonElement>
-
The
ref
type for this component.
UNSTABLE_ToggleButtonProps
- children * StringLikeChildren
-
The text displayed on the button.
- size 'small' | 'medium' | 'large'
-
The size of the button.
- fullWidth boolean
-
Whether the button should take up the whole available width.
- iconStart ReactNode
-
An icon displayed before the button text.
- iconEnd ReactNode
-
An icon displayed after the button text.
- id Key
-
An identifier for this button when used in a
ToggleButtonGroup
. Has to be unique across all buttons in the group. - data-cim-style-root boolean
-
Use this attribute to "claim" the component tree for exclusive Cimpress UI usage.
- UNSAFE_className string
-
Sets the CSS className for the element. Only use as a last resort. Use style props instead.
See styling guide.
- UNSAFE_style CSSProperties
-
Sets the CSS style for the element. Only use as a last resort. Use style props instead.
See styling guide.
- aria-label string
-
Defines a string value that labels the current element.
- aria-labelledby string
-
Identifies the element (or elements) that labels the current element.
- aria-describedby string
-
Identifies the element (or elements) that describes the object.
- aria-details string
-
Identifies the element (or elements) that provide a detailed, extended description for the object.
- isDisabled boolean
-
Whether the button is disabled.
- isSelected boolean
-
Whether the element should be selected (controlled).
- defaultSelected boolean
-
Whether the element should be selected (uncontrolled).
- onChange (isSelected: boolean) => void
-
Handler that is called when the element's selection state changes.
- type 'button' | 'reset' | 'submit'
-
The behavior of the button when used in an HTML form.
- onHoverStart (e: HoverEvent) => void
-
Handler that is called when a hover interaction starts.
- onHoverEnd (e: HoverEvent) => void
-
Handler that is called when a hover interaction ends.
- onPress (e: PressEvent) => void
-
Handler that is called when the press is released over the target.
StyleProps
- margin Responsive<Spacing | "auto">
-
The amount of margin applied to all edges of this component.
- marginX Responsive<Spacing | "auto">
-
The amount of margin applied to the left and right edges of this component. Takes priority over
margin
. - marginY Responsive<Spacing | "auto">
-
The amount of margin applied to the top and bottom edges of this component. Takes priority over
margin
. - marginTop Responsive<Spacing | "auto">
-
The amount of margin applied to the top edge of this component. Takes priority over
marginY
andmargin
. - marginRight Responsive<Spacing | "auto">
-
The amount of margin applied to the right edge of this component. Takes priority over
marginX
andmargin
. - marginBottom Responsive<Spacing | "auto">
-
The amount of margin applied to the bottom edge of this component. Takes priority over
marginY
andmargin
. - marginLeft Responsive<Spacing | "auto">
-
The amount of margin applied to the left edge of this component. Takes priority over
marginX
andmargin
.
ToggleButtonGroup
Section titled “ToggleButtonGroup”Allows users to toggle multiple options, with single or multiple selection.
- ref Ref<HTMLDivElement>
-
The
ref
type for this component.
UNSTABLE_ToggleButtonGroupProps
- children * ReactNode
-
Toggle buttons belonging to the group. Each button must have an
id
prop defined. - data-cim-style-root boolean
-
Use this attribute to "claim" the component tree for exclusive Cimpress UI usage.
- UNSAFE_className string
-
Sets the CSS className for the element. Only use as a last resort. Use style props instead.
See styling guide.
- UNSAFE_style CSSProperties
-
Sets the CSS style for the element. Only use as a last resort. Use style props instead.
See styling guide.
- aria-label string
-
Defines a string value that labels the current element.
- aria-labelledby string
-
Identifies the element (or elements) that labels the current element.
- aria-describedby string
-
Identifies the element (or elements) that describes the object.
- aria-details string
-
Identifies the element (or elements) that provide a detailed, extended description for the object.
- orientation Orientation
-
The orientation of the the toggle button group.
- selectionMode 'multiple' | 'single'
-
Whether single or multiple selection is enabled.
- selectedKeys Iterable<Key, any, any>
-
The currently selected keys in the collection (controlled).
- defaultSelectedKeys Iterable<Key, any, any>
-
The initial selected keys in the collection (uncontrolled).
- onSelectionChange (keys: Set<Key>) => void
-
Handler that is called when the selection changes.
- isDisabled boolean
-
Whether all items are disabled.
StyleProps
- margin Responsive<Spacing | "auto">
-
The amount of margin applied to all edges of this component.
- marginX Responsive<Spacing | "auto">
-
The amount of margin applied to the left and right edges of this component. Takes priority over
margin
. - marginY Responsive<Spacing | "auto">
-
The amount of margin applied to the top and bottom edges of this component. Takes priority over
margin
. - marginTop Responsive<Spacing | "auto">
-
The amount of margin applied to the top edge of this component. Takes priority over
marginY
andmargin
. - marginRight Responsive<Spacing | "auto">
-
The amount of margin applied to the right edge of this component. Takes priority over
marginX
andmargin
. - marginBottom Responsive<Spacing | "auto">
-
The amount of margin applied to the bottom edge of this component. Takes priority over
marginY
andmargin
. - marginLeft Responsive<Spacing | "auto">
-
The amount of margin applied to the left edge of this component. Takes priority over
marginX
andmargin
.