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

svelte-listbox

v0.0.2

Published

A svelte implementation of https://github.com/tailwindui/vue

Downloads

14

Readme

svelte-listbox

A svelte implementation of https://github.com/tailwindui/vue

WIP

example use:

<script>
  // import components
  import { Listbox, ListboxButton, ListboxList, ListboxOption } from "svelte-listbox";

  // define selection
  let selection = null;

  // define options
  let values = [
    { name: "abc", img: "https://randomuser.me/api/portraits/lego/1.jpg" },
    { name: "def", img: "https://randomuser.me/api/portraits/lego/2.jpg" },
    { name: "ghi", img: "https://randomuser.me/api/portraits/lego/3.jpg" },
    { name: "jkl", img: "https://randomuser.me/api/portraits/lego/4.jpg" },
    { name: "mno", img: "https://randomuser.me/api/portraits/lego/5.jpg" },
    { name: "pqr", img: "https://randomuser.me/api/portraits/lego/6.jpg" },
    { name: "stu", img: "https://randomuser.me/api/portraits/lego/7.jpg" },
    { name: "vwx", img: "https://randomuser.me/api/portraits/lego/8.jpg" }
  ];
</script>

<style>
  :global(.max-h-14) {
    max-height: 14em;
  }
</style>

<div class="py-48 antialiased font-sans text-gray-900">
  <Listbox
    {values}
    bind:value={selection}
    let:activeValue
    let:isOpen
    class="max-w-xs mx-auto relative">
    <ListboxButton
      class="w-full text-left rounded px-3 py-2 border-grey-300 inline-flex
      items-center justify-between">

      <span>{selection !== null ? selection.name : ''}</span>
      <svg
        class="h-5 w-5 text-gray-400"
        fill="none"
        stroke-linecap="round"
        stroke-linejoin="round"
        stroke-width="2"
        viewBox="0 0 24 24"
        stroke="currentColor">
        <path d="M19 9l-7 7-7-7" />
      </svg>
    </ListboxButton>

    {#if isOpen}
      <ListboxList
        class="absolute focus:outline-none shadow rounded border w-full mt-2
        py-1 max-h-14 overflow-y-auto">
        {#each values as item}
          <ListboxOption
            value={item}
            let:active
            let:selected
            class="px-3 py-2 relative {activeValue === item ? 'bg-blue-600 text-white' : 'bg-white'}">
            <span class="items-center flex">
              <img
                alt={item.name}
                class="w-5 h-5 rounded-full mr-2"
                src={item.img} />
              {item.name}
            </span>

            {#if selected}
              <span class="absolute inset-y-0 right-0 flex items-center pr-2">
                <svg
                  class="h-5 w-5 {active ? 'text-white' : 'text-gray-700'}"
                  fill="none"
                  stroke-linecap="round"
                  stroke-linejoin="round"
                  stroke-width="2"
                  viewBox="0 0 24 24"
                  stroke="currentColor">
                  <path d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" />
                </svg>
              </span>
            {/if}
          </ListboxOption>
        {/each}
      </ListboxList>
    {/if}
  </Listbox>
</div>