Tablist
A navigation component that organizes content into multiple tabs.
Overview
The Tablist component set provides a way to organize content into multiple selectable tabs. It consists of two components: Tablist (container) and TablistItem (individual tabs). These components are built on top of semantic HTML elements for better accessibility.
Tablist
Description
The root container component that wraps the tablist elements.
Usage
import { Tablist, TablistItem } from "@crafted-ui/react";
<Tablist>
<TablistItem>
<a href="#tab1">Tab 1</a>
</TablistItem>
<TablistItem>
<a href="#tab2" class="active">Tab 2</a>
</TablistItem>
<TablistItem>
<a href="#tab3">Tab 3</a>
</TablistItem>
</Tablist>
Props
The Tablist
component accepts the following props:
Prop | Type | Default | Description |
---|---|---|---|
bordered | boolean | false | Whether to show a bottom border on the tablist container |
className | string | undefined | Additional CSS class names |
children | ReactNode | undefined | Content of the tablist container |
TablistItem
Description
Represents an individual item in the tablist. The active tab can be indicated by adding the active
class to the child element.
Usage with Links
import { Tablist, TablistItem } from "@crafted-ui/react";
<Tablist>
<TablistItem>
<a href="#tab1">Tab 1</a>
</TablistItem>
<TablistItem>
<a href="#tab2" class="active">Tab 2</a>
</TablistItem>
<TablistItem>
<a href="#tab3">Tab 3</a>
</TablistItem>
</Tablist>
Usage with Custom Content
import { Tablist, TablistItem } from "@crafted-ui/react";
<Tablist bordered={true}>
<TablistItem>
<div>
<span>Tab 1</span>
<span class="ml-2 text-xs text-muted-foreground">(10)</span>
</div>
</TablistItem>
<TablistItem>
<div class="active">
<span>Tab 2</span>
<span class="ml-2 text-xs text-muted-foreground">(5)</span>
</div>
</TablistItem>
<TablistItem>
<div>
<span>Tab 3</span>
<span class="ml-2 text-xs text-muted-foreground">(3)</span>
</div>
</TablistItem>
</Tablist>
Props
Prop | Type | Default | Description |
---|---|---|---|
className | string | undefined | Additional CSS class names |
children | ReactNode | undefined | Content of the tablist item |
Accessibility
The Tablist component follows accessibility best practices by using semantic HTML elements:
- The tablist container uses a
<ul>
element for proper list semantics - Each tab item is a
<li>
element
When implementing tablists, ensure that:
- Links or buttons inside tabs have meaningful text
- The active tab should be marked with the
active
class - If using tabs to control content panels, use appropriate ARIA attributes in your implementation
- Consider keyboard navigation between tabs for enhanced accessibility