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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@dashkite/vellum

v0.10.48

Published

Web Components used in DashKite applications

Readme

Vellum

Web Components used in DashKite applications

Hippocratic License HL3-CORE

Introduction

Presently, this is a somewhat random collection of Web Components based on the needs of our applications. They are also largely experimental and you should probably not try to use them in other applications.

Eventually, we may expand this into a more comprehensive collection.

Design Approach

The design of Vellum components differ from other Web Component frameworks (namely, Shoelace) in their emphasis on delegated design. As much as possible, Vellum relies on specific standard browser interfaces to provide structure and behavior, while delegating presentation details to the client.

Components

All component element tags have the prefix vellum-.

| Component | Description | Limitations | | ------------ | ------------------------------------------------------------ | ----------------------------------------------- | | field | Form fields with support for a label, an optional hint, and error message. Various input types are supported, as well as custom inputs. | | | autocomplete | An dynamic auto-complete search box. Options are provide via slots and can contain arbitrarily complex DOM. | | | splitter | Multipane splitter with draggable boundaries. Panes can contain arbitrary content. | Currently, only allows horizontal splits. | | messages | Displays messages and accepts a message queue. Various types of messages are support (information, warning, …) and formatted accordingly. | Currently, only supports a single global queue. | | markdown | Display markdown provided via script tag in light DOM. | | | tabs | Displays a set of tab slots and displays the corresponding content slot when it’s selected. | |

Other components under development:

  • text-editor: a WYSIWYG rich text editor
  • image-editor: an image editor with support for resizing, filters, and more
  • drawer: similar to the native details element, but with easier styling

API

Field

Attributes

  • name
  • value
  • type
  • subtype
  • required
  • disabled
  • placeholder (not yet supported)

Slots

  • label: the label to display for the given input.
  • hint: an optional hint explaining the purpose of the field.
  • error: an optional error message to display for validation.
  • input: a custom input if none of the built-in types are sufficient.
  • options: an optional datalist or datalist-like element.

Parts

TBD

Lexicon

TBD

Styling Range Options

Vellum will bind a datalist or datalist-like element in the options slot to to the range input. When a datalist is bound, Vellum will display the options below the range input as flexbox container. You can style the individual options. For example, to display only the first and last options, you style them like this:

option
  display none
  &:first-child, &:last-child
    display inline

Autocomplete

Slots

  • option

Splitter

TBD

Messages

TBD

Markdown

TBD

Tabs

TBD