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

@vifui/core

v0.4.0-alpha.6

Published

🚀 Beautiful and modern Vue UI library built with Tailwind CSS 4.0.

Downloads

87

Readme

@vifui/core

🚀 Beautiful and modern Vue UI library built with Tailwind CSS 4.0, inspired by Vuesax.

npm version License: MIT

⚠️ Alpha Notice

This library is in active development and currently in alpha stage. APIs may change between releases.

Features

10+ High-Quality Components - Built with Vue 3 Composition API
🎨 Vuesax-Inspired Design - Beautiful, modern aesthetic
Tailwind CSS 4.0 - Utility-first styling with CSS variables
Accessible - Built on Reka UI primitives (Radix Vue)
🎯 TypeScript - Full type safety
🌙 Dark Mode - Built-in theme support
📦 Tree-shakeable - Import only what you need

Installation

# npm
npm install @vifui/core @vifui/styles

# pnpm
pnpm add @vifui/core @vifui/styles

# yarn
yarn add @vifui/core @vifui/styles

Peer Dependencies

Make sure you have these installed:

npm install vue@^3.4.0 tailwindcss@^4.0.0 @iconify/vue@^4.0.0

Quick Start

1. Import Styles

In your main.js or App.vue:

import '@vifui/core/styles'

2. Use Components

<script setup>
import { Button, Badge, Card } from '@vifui/core'
</script>

<template>
  <Card>
    <CardHeader>
      <h3>Welcome to VifUI</h3>
    </CardHeader>
    <CardBody>
      <p>Beautiful components for Vue 3</p>
      <Badge color="success">New</Badge>
    </CardBody>
    <CardFooter>
      <Button color="brand">Get Started</Button>
    </CardFooter>
  </Card>
</template>

Available Components

✅ Ready to Use

  • Button - Versatile button with variants, sizes, and colors
  • Badge - Status indicators and labels
  • Accordion - Collapsible content panels
  • Alert - Contextual feedback messages
  • Avatar - User profile images with fallbacks
  • Breadcrumb - Navigation hierarchy
  • Card - Content containers with media support
  • Checkbox - Selection controls with indeterminate state
  • Divider - Visual content separators
  • Spinner - Loading indicators

🚧 Coming Soon

  • Radio
  • Switch
  • Input
  • Select
  • Dialog
  • Dropdown
  • Tabs
  • Tooltip
  • And more...

Component Example

<script setup>
import { ref } from 'vue'
import {
  AlertRoot,
  AlertIcon,
  AlertContent,
  AlertHeader,
  AlertTitle,
  AlertDescription,
  Button
} from '@vifui/core'

const showAlert = ref(true)
</script>

<template>
  <AlertRoot
    v-model:visible="showAlert"
    variant="soft"
    color="success"
  >
    <AlertIcon icon="lucide:check-circle" />
    <AlertContent>
      <AlertHeader>
        <AlertTitle>Success!</AlertTitle>
        <AlertDescription>
          Your changes have been saved.
        </AlertDescription>
      </AlertHeader>
    </AlertContent>
  </AlertRoot>
</template>

Theming

VifUI uses Tailwind CSS 4.0 with CSS variables for theming:

/* Customize theme colors */
:root {
  --primary: oklch(0.61 0.2 263.6);
  --success: oklch(0.77 0.2 145.5);
  --warning: oklch(0.82 0.18 83.7);
  --danger: oklch(0.62 0.22 10);
}

Dark mode is automatically supported through Tailwind's dark: variants.

Documentation

Full documentation coming soon at vifui.com

For now, explore our Storybook examples in the repository.

TypeScript Support

All components are built with TypeScript and include full type definitions:

import type { ButtonProps, CardRootProps } from '@vifui/core'

const buttonProps: ButtonProps = {
  color: 'brand',
  size: 'lg',
  variant: 'solid'
}

Browser Support

  • Chrome (latest)
  • Firefox (latest)
  • Safari (latest)
  • Edge (latest)

Contributing

Contributions are welcome! This is an alpha project and we'd love your feedback.

  1. Fork the repository
  2. Create your feature branch
  3. Make your changes
  4. Submit a pull request

License

MIT © AbdulAzeez Olamide

Acknowledgments


Made with ❤️ by the VifUI team