npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@raondata/react-checkable-accordion

v0.3.3

Published

If you want an accordion menu can be checked, this package will be useful.

Downloads

35

Readme

checkable-accordion

If you want an accordion menu can be checked, this package will be useful.

environment

  • [ ] React >= 18
  • [ ] Typescripts
  • [ ] chakra-ui/react
  • [ ] node >= 14
  • [ ] yarn >= 1.22.5

~~If you use npm, It may not installed normally.~~

install

yarn add @raondata/react-checkable-accordion

or

npm install @raondata/react-checkable-accordion

usage

We work well under because it is written based on chakra-ui.

<ChakraProvider>
  <CheckableAccordionMenu
    ....
  />
</ChakraProvider>

props

This Component has two properties.

<CheckableAccordionMenu
 data={data}
 onChange={(removal, changed) => { ... }}
>

data

It's used to render items. 'data' properties's type is called CheckableAccordionItemType. And it has the following properties.

| name | type | description | | -------- | ---------------------------- | ---------------- | | key | string | identified key | | text | string | item's name | | children | CheckableAccordionItemType[] | List of SubItems |

data example

{
    key: '001',
    text: 'Item1',
    children: [
      {
        key: '002',
        text: 'SubItem-1-1',
      },
      {
        key: '003',
        text: 'SubItem-1-2',
      },
      {
        key: '004',
        text: 'SubItem-1-3',
      },
      {
        key: '005',
        text: 'SubItem-1-4',
      },
      {
        key: '006',
        text: 'SubItem-1-5',
        children: [
          {
            key: '006-1',
            text: 'SubItem-1-5-1',
          },
          {
            key: '006-2',
            text: 'SubItem-1-5-2',
          },
          {
            key: '006-3',
            text: 'SubItem-1-5-3',
          },
        ],
      },
    ],
  },

onChange

It is a callback function called when an item in Accordion Menu changes. OnChange has two parameters, the first is a list of deselected items, and the second is a list of checked or deselected changed items.

onChange  = (removal, changed) => void;

hidden

If you want hide some Items. use this properties. Just put the key list in array.

<CheckableAccordionMenu
 data={data}
 onChange={(removal, changed) => { ... }}
 hidden={["001", "002-1", "004", ...]}
>

defaultChecked

You can also use this property to set the initial check value.

<CheckableAccordionMenu
 data={data}
 onChange={(removal, changed) => { ... }}
 defaultChecked={["001", "002-1", "004", ...]}
>