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

@federa/ui

v0.5.6

Published

Lightweight UI component library for Federa applications

Downloads

124

Readme

@federa/ui

A lightweight, themeable UI component library for Nuxt applications.

Features

  • 🎨 Themeable: Built-in light/dark mode with CSS variables
  • 🚀 Lightweight: Only ~20KB minified
  • 🔧 Auto-imports: Components are automatically imported
  • 🌳 Tree-shakeable: Only bundle what you use
  • 📝 TypeScript: Full TypeScript support
  • Fast: Minimal runtime overhead

Installation

npm install @federa/ui
# or
pnpm add @federa/ui
# or
yarn add @federa/ui

Setup

Add the module to your nuxt.config.ts:

export default defineNuxtConfig({
  modules: ['@federa/ui'],
  
  // Optional configuration
  federaUI: {
    prefix: 'F',         // Component prefix (default: 'F')
    css: true,          // Include default CSS (default: true)
    themes: ['light', 'dark']  // Available themes
  }
})

Usage

Once installed, all components are auto-imported with the configured prefix:

<template>
  <div>
    <FButton variant="primary" @click="handleClick">
      Click me
    </FButton>
    
    <FInput v-model="text" placeholder="Enter text..." />
    
    <FBadge variant="secondary">New</FBadge>
  </div>
</template>

<script setup>
const text = ref('')
const handleClick = () => {
  console.log('Button clicked!')
}
</script>

Available Components

  • FButton: Versatile button component with multiple variants
  • FInput: Text input with consistent styling
  • FBadge: Small badge for labels and statuses
  • FSelect: Dropdown select component
  • FCheckbox: Checkbox with label support
  • FSwitch: Toggle switch component
  • FTabs: Tab navigation component
  • FTextarea: Multi-line text input
  • FLabel: Form label component

Theming

The library uses CSS variables for theming. You can override any variable:

:root {
  --primary: 220 80% 50%;
  --secondary: 220 20% 80%;
  --background: 0 0% 100%;
  --foreground: 220 20% 10%;
  /* ... more variables */
}

Using the theme composable

<script setup>
import { useTheme } from '@federa/ui'

const { theme, setTheme, toggleTheme } = useTheme()

// Set theme to 'light', 'dark', or 'system'
setTheme('dark')

// Toggle between light and dark
toggleTheme()
</script>

Component Props

Button

interface ButtonProps {
  variant?: 'default' | 'destructive' | 'outline' | 'secondary' | 'ghost' | 'link'
  size?: 'default' | 'sm' | 'lg' | 'icon' | 'xs'
  disabled?: boolean
  type?: 'button' | 'submit' | 'reset'
}

Input

interface InputProps {
  modelValue?: string | number
  type?: string
  placeholder?: string
  disabled?: boolean
  readonly?: boolean
}

Badge

interface BadgeProps {
  variant?: 'default' | 'secondary' | 'destructive' | 'outline'
}

Development

# Install dependencies
pnpm install

# Start playground
pnpm dev

# Build module
pnpm build

# Run tests
pnpm test

License

AGPL-3.0