Product
Socket Now Supports uv.lock Files
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
react-responsive-tabs
Advanced tools
Please, file an issue if something went wrong or let me know via Twitter @maslianok
transformWidth
valueThe component outputs HTML code that follows accessibility principles (aka WAI-ARIA) and uses ARIA attributes such as role
, aria-selected
, aria-controls
, aria-labeledby
etc.
We are using react-resize-detector
. No timers. Just pure event-based element resize detection.
npm install react-responsive-tabs
Local demo
// 1. clone the repository
git clone https://github.com/maslianok/react-responsive-tabs.git
// 2. Install react-responsive-tabs dependencies. You must do it because we use raw library code in the example
cd react-responsive-tabs
npm install
// 3. Install dependencies to run the example
cd examples
npm install
// 4. Finally run the example
npm start
import React, { Component } from 'react';
import { render } from 'react-dom';
import Tabs from 'react-responsive-tabs';
// IMPORTANT you need to include the default styles
import 'react-responsive-tabs/styles.css';
const presidents = [
{ name: 'George Washington', biography: '...' },
{ name: 'Theodore Roosevelt', biography: '...' },
];
function getTabs() {
return presidents.map((president, index) => ({
title: president.name,
getContent: () => president.biography,
/* Optional parameters */
key: index,
tabClassName: 'tab',
panelClassName: 'panel',
}));
}
const App = () => <Tabs items={getTabs()} />;
render(<App />, document.getElementById('root'));
Prop | Type | Description | Default |
---|---|---|---|
items | Array | Tabs data | [] |
onChange | Function | onChange callback | undefined |
selectedTabKey | Number/String | Selected tab | undefined |
showMore | Bool | Whether to show Show more or not | true |
showMoreLabel | String/Node | Show more tab name | ... |
transform | Bool | Transform to accordion when the wrapper width is less than transformWidth . | true |
transformWidth | Number | Transform width. | 800 |
unmountOnExit | Bool | Whether to unmount inactive tabs from DOM tree or not | true |
tabsWrapperClass | String | Wrapper class | undefined |
tabClassName | String | Tab class | undefined |
panelClassName | String | Tab panel class | undefined |
allowRemove | Bool | Allows tabs removal. | false |
removeActiveOnly | Bool | Only active tab has removal option | false |
showInkBar | Bool | Add MaterialUI InkBar effect | false |
MIT
FAQs
React responsive tabs
The npm package react-responsive-tabs receives a total of 2,214 weekly downloads. As such, react-responsive-tabs popularity was classified as popular.
We found that react-responsive-tabs demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.
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.