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

paper-checkbox-tree

v0.1.12

Published

A JavaScript component that transforms a select element into a checkbox tree.

Downloads

45

Readme

paper-checkbox-tree

Version License

The paper-checkbox-tree library transforms a standard HTML <select multiple> element into an interactive tree of checkboxes. This is particularly useful for forms requiring a hierarchical structure of selectable options.

image

Demo

Features

  • Converts <select multiple> elements with nested <optgroup> and <option> elements into a tree structure with checkboxes.
  • Supports custom CSS class names for flexible styling.
  • Allows group selection and individual option selection.
  • Provides keyboard navigation and accessibility features.

Installation

You can include the library directly in your HTML file from the CDN:

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/paper-checkbox-tree/dist/style.css">
<script src="https://cdn.jsdelivr.net/npm/paper-checkbox-tree/dist/umd.js" defer></script>

Alternatively, you can install the library via npm:

npm install paper-checkbox-tree

Usage

To initialize the checkbox tree, either add the class pct-tree to your select element:

<select class="pct-tree" multiple name="permission">
  <optgroup label="Authentication and Authorization">
    <option value="can_add_user" disabled>user | Can add user</option>
    <option value="can_change_user">user | Can change user</option>
    <option value="can_delete_user" selected>user | Can delete user</option>
    <option value="can_view_user">user | Can view user</option>
  </optgroup>

  <!-- ... -->
</select>

Or, you can initialize it programmatically by instantiating a CheckboxTree object:

import CheckboxTree from "paper-checkbox-tree";
import "paper-checkbox-tree/dist/style.css";

// Example usage:
const selectElement = document.getElementById("my-select-element");
const checkboxTree = new CheckboxTree(selectElement);

Configuration

You can customize the default CSS class names and behavior by passing an options object when initializing the CheckboxTree. Here is the default configuration:

{
    groupAllOptions: false,
    groupAllLabel: "All",
    rootClassName: "pct-tree",
    innerClassName: "pct-tree__inner",
    groupClassName: "pct-group",
    groupHeaderClassName: "pct-group__header",
    groupLabelClassName: "pct-group__label",
    groupTextClassName: "pct-group__text",
    optionClassName: "pct-option",
    optionLabelClassName: "pct-option__label",
    optionInputClassName: "pct-option__input",
    optionTextClassName: "pct-option__text",
    checkboxCheckedClassName: "pct-checkbox--checked",
    checkboxIndeterminateClassName: "pct-checkbox--partial",
    checkboxDisabledClassName: "pct-checkbox--disabled",
}

Customizing Class Names

You can customize the CSS class names to match your styling preferences:

new CheckboxTree(selectElement, {
    rootClassName: "custom-tree",
    optionClassName: "custom-option",
    // other custom class names
});

Grouping All Options

If there are no <optgroup> elements present in the <select>, enabling the groupAllOptions option will group all options under a single group. You can specify the label for this group using the groupAllLabel option:

new CheckboxTree(selectElement, {
    groupAllOptions: true,
    groupAllLabel: "All Options",
});

This will create a group named "All Options" containing all the options in the <select> element. If <optgroup> elements are present, the "All Options" group will not be created.

Using Data Attributes

You can also specify the groupAllOptions and groupAllLabel options using data attribute data-pct-group-all-options:

This will set groupAllOptions to true and use "All options" as the label for the group. If you don't provide a value for data-pct-group-all-options, it will default to true, and the default label "All" will be used:

<select class="pct-tree" multiple data-pct-group-all-options>
  <!-- Options and optgroups -->
</select>