Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
kevlar-tabs
Advanced tools
npm install kevlar-tabs
import Tabs from 'kevlar-tabs';
export const MyTabs = () => {
const [activeTab, setActiveTab] = useState(0);
return (
<Tabs selected={activeTab} onSelect={setActiveTab}>
<TabList>
<Tab>Tab 1</Tab>
<Tab>Tab 2</Tab>
<Tab>Tab 3</Tab>
</TabList>
<TabPanel>Tab 1 content</TabPanel>
<TabPanel>Tab 2 content</TabPanel>
<TabPanel>Tab 3 content</TabPanel>
</Tabs>
)
}
You can also use named tabs and use the onNameSelected
callback.
<Tab name="tab1">Tab 1</Tab>
Some panels could not be defined for some reason. You can manually specify the index of the panel:
<TabPanel>Tab 1 content</TabPanel>
<TabPanel index={2}>Tab 3 content</TabPanel>
Property | Type | Description |
---|---|---|
selected | number | string | The index or the name of the selected tab. |
onSelect | function | Callback function that is called when a tab is selected. Gives the index as a parameter. |
onNameSelect | function | Callback function that is called when a tab is selected. Gives the name as a parameter. |
children | ReactNode | TabList and TabPanel components. |
You can use CSS classes that are set on the components:
Tabs
have no class (but you can create your own container).TabList
has the class tablist
.Tab
has the class tab
in addition to tab--active
when selected and tab--disabled
when disabled.TabPanel
has the class tabpanel
in addition to tabpanel--active
when selected.FAQs
Yet another better tabs library for React
The npm package kevlar-tabs receives a total of 10 weekly downloads. As such, kevlar-tabs popularity was classified as not popular.
We found that kevlar-tabs demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.