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 🙏

© 2026 – Pkg Stats / Ryan Hefner

futility-ui

v0.7.2

Published

A set of ready-to-use UI components for Vue 3, styled according to the Flowbite design system, providing a fast start and a consistent visual style for your application.

Readme

Futility UI is a Vue 3 component library inspired by the Flowbite design language. It focuses on practical, ready-to-use UI building blocks with a consistent visual style and straightforward integration.

Live Demo

Why Futility UI

  • Vue 3 components with a consistent look and feel
  • Storybook documentation with interactive examples
  • Multiple style distribution options for different integration strategies
  • A pragmatic component set built from real project needs

Installation

Install the library:

pnpm add futility-ui

Styles

Choose how you want to include styles in your project.

Import the stylesheet from JavaScript:

import 'futility-ui/styles.tailwind.css'; // or styles.base.css

Or import it from your main CSS file:

@import 'futility-ui/styles.tailwind.css'; /* or styles.base.css */

Available stylesheets:

  • styles.base.css includes only Futility UI component styles
  • styles.tailwind.css includes component styles together with Tailwind CSS utilities

Usage

You can register the library globally:

import { createApp } from 'vue';
import FutilityUI from 'futility-ui';

createApp(App)
	.use(FutilityUI)
	.mount('#app')
;

Or import only the components you need:

import { FButton, FInput } from 'futility-ui';

For more details about stylesheet selection and integration options, see the Usage page in the documentation.

Roadmap

  • [x] Icons
  • [x] Loader
  • [x] Buttons
  • [x] Text button
  • [x] Switch
  • [x] Checkbox
  • [x] Input
  • [x] Widgets group (A component that visually merges widgets without spacing, such as an input field immediately followed by a button.)
  • [x] Radio button
  • [x] Input Autocomplete (with loading options)
    • [ ] Ability to group options when needed
  • [x] Select
    • [ ] Custom dropdown for desktop screen and native for mobile [???]
  • [x] Tooltip
  • [x] Form row (A component that renders a form row with a label, widget, help text, and error text.)
  • [x] Control label (A component that adds a label for widgets such as checkbox, radio button, etc.)
  • [x] Generic Form
    • [ ] utils for make meta from DRF metadata
  • [x] Dropdown
  • [x] Textarea
  • [x] Modal
  • [x] Tabs
  • [x] Number picker
  • [x] Header pannel <- you are here
  • [ ] MultiSelect
  • [ ] Tag Select
  • [ ] Tree Editor
  • [ ] FileSelect
  • [ ] FileSelectArea
  • [ ] Paginator
  • [ ] Popover
  • [ ] [FGenericForm] number range (from - to, inputs)
  • [ ] [FGenericForm] date range
  • etc.

Refactor

  • [x] Split styles into base styles and theme-specific styles
  • [ ] Add support for scaling icons inside buttons
  • [ ] Update button focus styles (especially for the dark theme)
  • [ ] Sizes for checkbox, radiobutton and switch

Extended

  • [x] Integrate Tailwind configuration and theming (seems implemented, but needs verification)
  • [ ] Tag panel
  • [ ] Multi-select autocomplete
  • [ ] Select with custom dropdown (search, loading, etc...)
  • [ ] Select Autocomplete (likely not needed if Input Autocomplete exists)
  • [ ] Custom DatePicker [???]
  • [ ] Custom TimePicker [???]
  • [ ] Custom MultiSelect with filters

Dev

  • [x] Storybook on GitHub Pages
  • [x] npm publishing
  • [ ] Web interface for customizing styles

Oh great, another UI library.

You might be wondering: why the heck do we need yet another UI library? The short answer is: just because.

This library isn`t necessarily better than others. It has a much smaller community, it evolves more slowly, and it doesn`t really have any unique killer feature. It exists simply because none of the existing options fully work for me. Either there aren`t enough components, or they`re incredibly complicated, or not truly native to Vue, or they`re paid, or… they just look ugly. So, I decided to build my own.

This library grew out of components I use at work. And my colleagues are probably asking themselves: why bother extracting the UI into a separate repo? Here are a few reasons:

  • I don`t like monorepos.

  • It`s easier to isolate components, code style, and dependencies.

  • Components are simpler to organize and structure.

  • Writing documentation is easier when you build components outside the context of the main project.

  • A separate repo makes it simpler to set up tests, build processes, and all that stuff. (Yeah, yeah - I know there are no tests yet, but eventually I`ll add some, at least out of curiosity.)

  • You can improve the UI independently from the main project.

  • It helps keep the main project`s codebase cleaner - less clutter unrelated to business logic.

  • Reusability? That`s a cliche argument, and it`s not really the main goal here (But who knows - maybe I`ll use this library in other projects too. I already have a few ideas).

  • An attempt to turn legacy code into a documented library that anyone can use.