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

@vuesence/alt-ui

v0.4.2

Published

UI Kit for Vue 3 applications

Readme

Alt-UI

npm version license

A modern, accessible, and themeable UI component library built with Vue 3 and TypeScript. Designed for building professional applications with a focus on flexibility, performance, and developer experience.

Features

  • Modern Vue 3 Components: Built with Vue 3 and Composition API
  • 🎨 Themeable: Seamless light, dark, and high-contrast themes
  • Accessible: WCAG 2.1 compliant components with proper ARIA attributes
  • 🔍 Type-Safe: Full TypeScript support with detailed type definitions
  • 🧩 Composable: Modular components designed for composition
  • 📱 Responsive: Adapts to all screen sizes and device types
  • 🚀 Performance: Optimized for minimal bundle size and runtime performance

Installation

# npm
npm install alt-ui

# yarn
yarn add alt-ui

# pnpm
pnpm add alt-ui

Quick Start

<script setup>
import { BaseButton, BaseInput, themeProvider } from 'alt-ui';
import 'alt-ui/styles';

// Apply a theme
themeProvider.applyTheme('light'); // 'light', 'dark', 'contrast', or 'system'
</script>

<template>
  <div>
    <BaseInput label="Username" placeholder="Enter your username" />
    <BaseButton variant="primary">Submit</BaseButton>
  </div>
</template>

Available Components

Base Components

  • BaseButton: Versatile button component with various styles and states
  • BaseCarousel: Content carousel with customizable navigation
  • BaseCollapsableHint: Expandable hint text container
  • BaseDialog: Modal dialog with customizable content
  • BaseEditableTable: Interactive table with editable cells
  • BaseEditableText: Text field that can be toggled between view and edit modes
  • BaseHoverCard: Rich content card that appears on hover
  • BaseIcon: Flexible icon component supporting various icon libraries
  • BaseMenu: Dropdown menu with customizable items
  • BaseSegmentGroup: Segmented control for selecting from mutually exclusive options
  • BaseSpinner: Loading spinner with customizable size and color
  • BaseTable: Data table with sorting and customization options
  • BaseTabs: Tab container for organizing content
  • BaseTabsTrigger: Individual tab trigger component
  • BaseToaster: Toast notification system
  • BaseToggleGroup: Button group for toggling between options

Form Components

  • BaseCheckbox: Checkbox input with label and indeterminate state
  • BaseCombobox: Combobox input with autocomplete support
  • BaseInput: Text input with various states and validation
  • BaseRadioGroup: Radio button group with customizable items
  • BaseSelect: Select dropdown with customizable options
  • BaseSwitch: Toggle switch with label
  • FormField: Container for form elements with label and description

Theme Components

  • ThemeProvider: Theme management system
  • ThemeToggle: UI component for switching between themes

Theming

Alt-UI uses CSS variables for consistent styling and theming:

// Apply a theme programmatically
import { themeProvider } from 'alt-ui';
themeProvider.applyTheme('dark');

// Or use the ThemeToggle component for UI-based switching
import { ThemeToggle } from 'alt-ui';

TypeScript Support

Alt-UI is built with TypeScript and provides comprehensive type definitions:

import type { ButtonProps, TableColumn } from 'alt-ui';

// Type-safe component props
const buttonProps: ButtonProps = {
  variant: 'primary',
  size: 'md',
  disabled: false,
};

Documentation

For full documentation and examples, visit our documentation site:

Alt-UI Documentation

Development

# Install dependencies
pnpm install

# Start development server
pnpm dev

# Build the library
pnpm build

# Run documentation site locally
pnpm docs:dev

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

MIT