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

@rede-ancora/multi-select-webcomponent

v1.2.10

Published

A fully styleable multiselect with no polyfills

Downloads

3

Readme

Multi Select Webcomponent

A fully styleable multiselect with no polyfills.

Live demo ↗

Install

You can get it from npm:

npm install @rede-ancora/multi-select-webcomponent

Or you can get it from a CDN:

<script src="https://cdn.jsdelivr.net/npm/@rede-ancora/multi-select-webcomponent/dist/multi-select-webcomponent.min.js" crossorigin="anonymous"></script>

If you use Typescript, add the definitions file to the includes section of your tsconfig.json:

"include": [
  "node_modules/@rede-ancora/multi-select-webcomponent/dist/multi-select-webcomponent.d.ts",
  ...
],

Usage

At first, you'll have to register the component with your application. I chose to leave this to you because this allows for avoiding naming conflicts with other WebComponents you may be using. So, in order to register the component, execute the following code during the initialization of your application (eg. at the first lines of code):

  window.customElements.define('multi-select', MultiselectWebcomponent);

After that you can use the newly defined tag multi-select wherever you want on your html. The tag works the same as the select tag:

  <multi-select id="planetIds">
    <option id="1">Mercury</option>
    <option id="2">Venus</option>
    <option id="3">Earth</option>
  </multi-select>

Styling

In order to be fully styleable, this WebComponent ships with no style at all! If you just copy/paste the code above, your component will look ... well, unstylish.

To add style to your component, you can either add attributes to your tag or create css classes:

Tag attribute |CSS class | Target | --------------------------|------------------------------|----------------------------------------| selected |.msw-selected | Selected items box | selecteditem |.msw-selecteditem | Selected item | dropdown |.msw-dropdown | Dropdown box | dropdownitem |.msw-dropdownitem | Dropdown item | searchbox |.msw-searchbox | Search input field | clearbutton |.msw-clearbutton | "Clear Selection" button | clearbuttonspan |.msw-clearbuttonspan | "Clear Selection" button's inner span | selectallbutton |.msw-selectallbutton | "Select All" button | selectallbuttonspan |.msw-selectallbuttonspan | "Select All" button's inner span |

So, if you want to add classes to every item that shows when you click the component, you can either add the attribute dropdownitem to your tag and populate it with css classes of your own or from whichever lib you are using, or create the .msw-dropdownitem class on your own css file. You can see a neatly styled example using Bootstrap 5 on the Live demo.

Also, if you need to change the default titles for the buttons, you can add the following tag attributes:

Tag attribute | Target | --------------------------|-----------------------------------| clearbuttontitle | "Clear Selection" button's title | selectallbuttontitle | "Select All" button's title |

Options

You may realize that as soon as you render the component, your option tags will be removed from the DOM. This is desired, since other elements are going to be rendered in substitution to them. However, internal control is still made using those tags, so they are kept int memory and you can access them through javascript. In the example above we create another option and add it to the component:

const pluto = document.createElement('option');
pluto.value = 9;
pluto.innerHTML = 'Pluto';

const msw = document.getElementById('planetIds');
msw.options.push(pluto);
msw.build();

Properties

value: string[]
     The value property of this component is an array of strings containing the values of the selected Option elements.

disabled: boolean
     Sets and reads the disabled property of this element.

options: HTMLOptionElement[]
     Array of options. You can read or modify its contents at will, but changes will only apply after a call to build().

Methods

build(): void
     Applies changes to the element.

clear(): void
     Removes all options and calls build() immediately.

Older browsers warning

This WebComponent is created with pure Javascript, so no polyfills are being used. Do not use this component if the target browser is not listed in the compatibility list of the WebComponents website. At the time of writing of this documentation, all major browsers already have full support.

Contributions

Feel free to open an issue or add a pull request. Anytime. Really, I mean it.

Also, if you like my work, I'll let you know that I love coffee.