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

@revolist/revo-dropdown

v2.0.1

Published

Minimalistic dropdown with keyboard support and search

Downloads

1,580

Readme

revo-dropdown

Minimalistic dropdown webcomponent. After long search we couldn't find any cross platform and had to build our own inspired by the latest trends.

| Autocomplete | Regular select | | -------------------------------------------------------------------------------- | ---------------------------------------------------------------------- | | | |

Getting Started

To start building a new web component using Stencil, clone this repo to a new directory:

npm i @revolist/revo-dropdown

Module import


import * as loader from '@revolist/revo-dropdown/loader';
if (loader.defineCustomElements) {
  loader.defineCustomElements();
}

Script tag

  • Put a script tag similar to this <script src='https://unpkg.com/revo-dropdown@latest/dist/revo-dropdown.js'></script> in the head of your index.html

Usage

Then you can use the element anywhere in your template, JSX, html etc

<revo-dropdown data-label="name" autocomplete="true" placeholder="Philosophers" max-height="300"></revo-dropdown>
<script type="module">
  const people = [
  {
    eyeColor: 'green',
    name: 'Samantha Molina',
  },
  {
    eyeColor: 'green',
    name: 'Weber Henderson',
  }];
  const dropdowns = document.querySelectorAll('revo-dropdown');
  for (var q = 0; q < dropdowns.length; q++) {
    dropdowns[q].source = people;
  } 
</script>

Need help? Check out docs here.

API

Properties

| Property | Attribute | Description | Type | Default | | --------------- | ---------------- | ---------------------------------------- | ----------------------- | ----------- | | appendTo | append-to | Where to append element | "body" \| "current" | 'body' | | autoClose | auto-close | Should dropdown autoclose on changeValue | boolean | true | | autoFocus | auto-focus | | boolean | false | | autocomplete | autocomplete | | boolean | false | | currentFilter | current-filter | Filter value | any | undefined | | dataId | data-id | Define object mapping for id/value | string | undefined | | dataLabel | data-label | Define object mapping for labels | string | undefined | | filter | filter | Filter criteria | "contains" \| "start" | undefined | | hasFilter | has-filter | | boolean | true | | maxHeight | max-height | | number | undefined | | placeholder | placeholder | Placeholder text | string | 'Select' | | source | -- | Define object mapping for id/value | any[] | [] | | value | value | Selected value | any | undefined |

Events

| Event | Description | Type | | --------- | -------------------------------------- | -------------------------------------------------------- | | changed | When value changed | CustomEvent<{ val: any; originalEvent?: MouseEvent; }> | | close | Before element close, can be prevented | CustomEvent<any> | | open | Before element open, can be prevented | CustomEvent<any> |

Methods

doChange(val: any, originalEvent?: MouseEvent) => Promise<void>

Change value

Returns

Type: Promise<void>

doClose(isDisconnected?: boolean) => Promise<void>

Close dropdown

Returns

Type: Promise<void>

doOpen() => Promise<void>

Open dropdown

Returns

Type: Promise<void>


Built with StencilJS