Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
kevlar-tabs
Advanced tools
Inspired by react-tabs
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.You use custom classes for the different states of the elements.
To do it, use the classNames
property of Tabs
and pass an object of this shape:
export type TabsClassNames = Partial<{
tabList: string
tab: string
tabActive: string
tabDisabled: string
tabPanel: string
tabPanelActive: string
tabPanelDisabled: string
}>
You can also pass this configuration to sub-elements: className
, classNameActive
and classNameDisabled
so that different tabs can have different styling since specific configuration takes precedence over the global one.
Using styled-components
, one important thing to know is that you have defined the displayName of the component you want to wrap.
For instance:
import { Tab } from 'kevlar-tabs'
import styled from 'styled-components'
const CustomTab = styled(Tab)`
color: white;
background-color: purple;
&[aria-active='true'] {
font-weight: bold;
}
&[aria-disabled='true'] {
color: #ccc;
background-color: #544454;
}
`
// THIS IS IMPORTANT
CustomTab.displayName = 'Tab'
displayName
has to be set for Tab
, TabList
and TabPanel
, and it takes the name of the component itself.
FAQs
Yet another better tabs library for React
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
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.