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

@magnit-ce/selectable-items

v0.0.6

Published

A custom html element that makes all of its child elements selectable by clicking on them.

Downloads

340

Readme

magnitce-selectable-items

A custom HTMLElement that makes all of its child elements selectable by clicking on them.

Package size: ~3kb minified, ~4kb verbose.

Quick Reference

<script type="module" src="/path/to/selectable-items[.min].js"></script>

Demos

https://catapart.github.io/magnitce-selectable-items/demo/

Support

  • Firefox
  • Chrome
  • Edge
  • Safari (Has not been tested; should be supported, based on custom element support)

Getting Started

  1. Install/Reference the library

Reference/Install

HTML Import (not required for vanilla js/ts; alternative to import statement)

<script type="module" src="/path/to/selectable-items[.min].js"></script>

npm

npm install @magnit-ce/selectable-items

Import

Vanilla js/ts

import "/path/to/selectable-items[.min].js"; // if you didn't reference from a <script>, reference with an import like this

import { SelectableItemsElement } from "/path/to/selectable-items[.min].js";

npm

import "@magnit-ce/selectable-items"; // if you didn't reference from a <script>, reference with an import like this

import { SelectableItemsElement } from "@magnit-ce/selectable-items";



Overview

The <selectable-items> element is a container element that provides select functionality for all of its child element.

Selection can be done either by pointer events (clicking, tapping, etc), or by key events (tab/shift+tab).

Attributes

The <selectable-items> element uses the following attributes: |Slot Name|Description |-|-|-| |multi||

selected()

The <selectable-items> element provides a selected() function which returns all of the child elements that are currently selected in an Array.

Events

The <selectable-items> element dispatches a change event whenever its selected items become selected or unselected.

Properties

The <selectable-items> element exposes the following properties on the javascript object: |Slot Name|Description|Default Value |-|-|-| |multipleModifierKeys|A static property that defines the string values that will match a KeyEvent's code property for allowing multiple selections. If a key's code is a string in this array, then when that key is held down, the selection will not de-select previous selections. (must also have the mutli attribute set to true)|["ShiftLeft", "ShiftRight", "ControlLeft", "ControlRight"]| |selectKeys|A static property that defines the string values that will match a KeyEvent's code property for invoking a selection on the currently focused item. If a key's code is a string in this array, then when that key is pressed while a child element has focus, that child element will be selected.|["Enter", "Space"]| |selectedClassName|A static property that defines the string value of the class that will be applied to selected items. When an item is "selected" it will be assigned a class with this property's value.|selected|

Slots

The <selectable-items> element exposes the following slots: |Slot Name|Description|Default |-|-|-| |[Default]|Slot that holds all of the <selectable-items>'s children. (note: this slot has no name; all children of the <selectable-items> element will be placed in this default slot.)|[empty]|

Styling

The <selectable-items> element can be styled with CSS, normally. The <selectable-items> element does not utilize the shadowDOM for layout, so all styling can be done with standard CSS selectors. For its children, they can be styled with standard CSS selectors, as well.

License

This library is in the public domain. You do not need permission, nor do you need to provide attribution, in order to use, modify, reproduce, publish, or sell it or any works using it or derived from it.