GithubHelp home page GithubHelp logo

whispyy / kevlar-tabs Goto Github PK

View Code? Open in Web Editor NEW

This project forked from neolitec/kevlar-tabs

0.0 0.0 0.0 306 KB

Simple tabs library for React

License: MIT License

Shell 0.17% JavaScript 0.14% TypeScript 98.61% SCSS 1.08%

kevlar-tabs's Introduction

Kevlar Tabs

Kevlar Tabs

Inspired by react-tabs

Install

npm install kevlar-tabs

Usage

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>

Tabs properties

Property Type Description
autoActivate boolean (default: true) If true, it prevents auto activation of tabs on focus.
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.

Styling

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.

Custom classes

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.

With styled-components

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.

Features

  • Disabled tabs
  • Customizable classes
  • Styled-Components compliance
  • Lazy loading
  • Keyboard navigation
  • Auto activation

Roadmap

  • Documentation site
  • Contribution guide

kevlar-tabs's People

Contributors

github-actions[bot] avatar neolitec avatar renovate-bot avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.