Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
react-responsive-tabs
Advanced tools
#React responsive tabs
Please, file an issue if something went wrong or let me know via Twitter @maslianok
The 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
git clone https://github.com/maslianok/react-responsive-tabs.git
cd react-responsive-tabs/example
npm install && npm start
import React, {Component} from 'react';
import {render} from 'react-dom';
import Tabs from 'react-responsive-tabs';
const presidents = [
{name: 'George Washington', biography: '...'},
{name: 'Theodore Roosevelt', biography: '...'},
];
function getTabs() {
return presidents.map(president => ({
key: index, // Optional. Equals to tab index if this property is omitted
tabClassName: 'tab', // Optional
panelClassName: 'panel', // Optional
title: president.name,
content: president.biography,
}));
}
const App = () => <Tabs items={getTabs()} />;
render(<App />, document.getElementById('root'));
(Array) Tabs data
(Function) onChange callback
(Number|String) Tab with this key will be selected by default.
(Bool) Show Show more
list. Default: true
.
(Bool) Transform to accordion if element width less than transformWidth
. Default: true
.
(Number) Transform to accordion if wrapper width less than this value. Default: 800
(String) Wrapper class
(String) Tab class
(String) Tab panel class
MIT
FAQs
React responsive tabs
The npm package react-responsive-tabs receives a total of 2,162 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.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
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.