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

zuper-ui

v0.1.32

Published

Biblioteca de componentes premium optimizada para la creación rápida de aplicaciones con interfaces altamente estilizadas y dinámicas.

Readme

⚡️ Zuper UI

NPM Version License: MIT Styles

Zuper UI es una librería de componentes de React moderna, minimalista y de alto rendimiento, diseñada para construir interfaces premium con facilidad. Basada en TypeScript, Next.js ready y con un sistema de diseño atómico profundamente personalizable.


✨ Características

  • 🌑 Theme Aware: Soporte nativo para modo claro y oscuro con detección automática de contexto.
  • 🏗️ Diseño Atómico: Componentes modulares y reutilizables desglosados en pequeñas unidades.
  • 🎨 Tokens de Diseño: Sistema completo de variables CSS para colores, espaciados y tipografía.
  • 🪄 Micro-animaciones: Transiciones fluidas y feedback visual premium integrados.
  • 🛠️ Fully Typed: Escrita totalmente en TypeScript para una experiencia de desarrollo robusta.
  • 📦 Tree Shakeable: Solo importa lo que realmente usas.

🚀 Instalación

npm install zuper-ui
# o
yarn add zuper-ui

📖 Inicio Rápido

Para utilizar la librería, asegúrate de importar los estilos globales en el punto de entrada de tu aplicación (ej. layout.tsx o _app.tsx):

import 'zuper-ui/dist/style.css';

Luego, simplemente importa y usa tus componentes:

import { ZButton, ZCard, ZFormatedText } from 'zuper-ui';

function MyComponent() {
  return (
    <ZCard elevated paddingX="lg" paddingY="lg">
      <ZFormatedText type="heading-3">¡Hola Mundo!</ZFormatedText>
      <ZButton label="Empezar" color="primary" elevated />
    </ZCard>
  );
}

🧱 Componentes Incluidos

Zuper UI viene cargada con una suite de componentes listos para producción:

🧩 Core

  • ZButton: Botones versátiles con variantes, iconos y estados de carga.
  • ZCard: Contenedores premium con sombras dinámicas y control de temas.
  • ZIcon: Integración fluida con Lucide React.
  • ZChip: Etiquetas informativas y decorativas.

📝 Formularios & Entrada

  • ZInput: Entradas de texto inteligentes con validación y temas dinámicos.
  • ZSelect: Dropdowns personalizados con búsqueda (searchable) y soporte de nulos.
  • ZSearch: Barra de búsqueda optimizada.

📊 Datos & Navegación

  • ZTable: Tablas de datos estructuradas.
  • ZPagination: Control de navegación para grandes conjuntos de datos.
  • ZList & ZListItem: Listas de navegación ultra-estilizadas.
  • ZDropdownButton: Menús contextuales desplegables.

🎭 Feedback & Overlays

  • ZToast & ZSnackbar: Notificaciones efímeras y feedback rápido.
  • ZModal: Diálogos modales accesibles.
  • ZCircularProgress: Indicadores de carga fluidos.
  • LoaderOverlay: Pantallas de carga para bloqueo de interfaz.

🎨 Tipografía Inteligente

El componente ZFormatedText es el corazón tipográfico del sistema:

<ZFormatedText 
  type="currency" 
  text={25000} 
  currencyCode="USD" 
  locale="en-US" 
  textColor="success" 
  bold 
/>

Soporta jerarquía completa de headings (H1-H6), body text, captions, overlines y formateo internacional de monedas.


🛠️ Desarrollo & Contribución

Si deseas contribuir a Zuper UI:

  1. Clona el repositorio.
  2. Instala dependencias con npm install.
  3. Ejecuta npm run build para generar el paquete distribuible.

📄 Licencia

Este proyecto está bajo la licencia MIT.