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

spades-ui

v3.6.2

Published

UI Vue Component Library driven by Tailwind CSS

Readme

Spades UI

A UI Library of Vue Components for building web applications

Table of Contents

  • Components
    • Renderless
      • Autocomplete
      • Collapse
      • DataTable
      • Input
      • Popover
    • Rendered
      • Alert
      • Avatar
      • Badge
      • Breadcrumbs
      • Button
      • Checkbox
      • DataTable
      • Dropdown
      • Form
      • Input
      • Option
      • Select
      • TagInput
      • Tooltip
      • Wysiwyg

Disclaimer

This document is a work in progress. Some components are not documented, and the documentation is in no way complete.

Components

Visual

Alert

Props
  • Color: the color scheme of the alert
    • Type: String
    • Required: No
    • Default: "Primary"
    • Possible Values:
      • Primary: A primary colored alert
      • Accent: An accent colored alert
      • Dark: A dark grey colors alert
      • Light: A light grey colored alert
      • Danger: A danger colored alert
      • Warning: A warning colored alert
      • Success: A success colored alert
  • Size: the size of the alert
    • Type: String
    • Required: No
    • Default: "md"
    • Possible Values:
      • Sm: a small alert
      • Md: a medium alert
      • Lg: a large alert
  • Theme: the style of the alert
    • Type: String
    • Required: No
    • Default: "solid"
    • Possible Values:
      • Solid: A solid styled alert
      • Light: A light styled alert
      • Outline: An outline styled alert
  • Close: whether the alert can be dismissed or not
    • Type: Boolean
    • Required: No
    • Default: true

Button

Props
  • Type: the type of button
    • Type: String
    • Required: No
    • Default: "Link"
    • Possible Values
      • Button: an html <button type="button">
      • Submit: an html <button type="submit">
      • Reset: an html <button type="reset">
      • Anchor: an html <a>
      • Link: a vue <nuxt-link>
  • To: the destination of the link (only applies to type="Link" & type="Anchor")
    • Type: String
    • Required: No
    • Default: "#"
  • Size: the size of the button
    • Type: String
    • Required: No
    • Default: "md"
    • Possible Values:
      • Sm: a small button
      • Md: a medium button
      • Lg: a large button
  • Color: the color scheme of the button
    • Type: String
    • Required: No
    • Default: "Primary"
    • Possible Values:
      • Primary: A primary colored button
      • Accent: An accent colored button
      • Dark: A dark grey colors button
      • Light: A light grey colored button
      • Danger: A danger colored button
      • Warning: A warning colored button
      • Success: A success colored button
  • Theme: the style of the button
    • Type: String
    • Required: No
    • Default: "solid"
    • Possible Values:
      • Solid: A solid styled button
      • Light: A light styled button
      • Outline: An outline styled button
      • Link: A link styled button
  • Pill: Whether the buttons corners should be fully rounded or not
    • Type: Boolean
    • Required: No
    • Default: false
  • Icon: An Icon to be displayed in the button
    • Type: String
    • Required: No
    • Default: ''
    • Possible Values: The name of any icon included in Spades
  • Disabled: Whether the button is disabled or not
    • Type: Boolean
    • Required: No
    • Default: false