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

@fravelz/ui-kit-fravelz

v1.2.2

Published

Biblioteca de componentes React personalizados (atoms, molecules, organisms) para sitios de notas y proyectos del portfolio de Fravelz.

Downloads

29

Readme

@fravelz/ui-kit-fravelz

Biblioteca de componentes React personalizados (patrón atoms / molecules / organisms) para sitios de notas y proyectos públicos del portfolio de Fravelz. Publicada en npm como @fravelz/ui-kit-fravelz. Los estilos usan Tailwind CSS en el proyecto consumidor; requiere React 18+ y React DOM 18+.

Idiomas: Español · English

Fravelz UI Kit — vista previa de marca

Atoms

| Componente | Notas | | ---------------------- | ------------------------------------------------- | | Alert | Mensajes de estado con icono y cierre opcional | | AnimationDevelopment | Animación Lottie (peer opcional en el consumidor) | | Badge | Chip o etiqueta compacta | | Button | Botón con variantes y tamaños | | Divider | Separador horizontal o vertical | | DynamicLink | Enlace con estado visitado (React Router) | | GradientText | Texto con degradado cyan–purple | | Image | Imagen con dimensiones configurables | | Input | Campo de texto con label e icono | | Link | Enlace con scroll suave a anclas | | Line | Línea decorativa | | Note | Bloque de nota destacada | | Tag | Etiqueta o pill removible | | Text | Párrafo con variantes de color y tamaño | | Tooltip | Información contextual al hover |

Molecules

| Componente | Notas | | ------------------ | --------------------------------------- | | CallToAction | Enlace destacado tipo CTA | | Card | Contenedor con borde y hover opcional | | Code | Bloque de código con resaltado y copiar | | Container | Ancho máximo y padding responsive | | Divided | Layout en dos columnas | | Grid | Rejilla responsive | | List | Lista ordenada o desordenada | | ProgressBar | Barra de progreso | | SegmentedControl | Control segmentado (p. ej. idioma) | | Table | Tabla de datos | | TableHeader | Cabecera de tabla | | TableRow | Fila de tabla | | TableCell | Celda de tabla | | Title | Título con variantes |

Organisms

| Componente | Notas | | ------------------ | --------------------------------- | | CurriculumAside | Índice lateral sticky (layout) | | CurriculumFull | Índice en viewport pequeño | | Message | Modal con overlay | | Roadmap | Timeline de pasos | | Section | Sección de página con título | | SiteFooter | Shell de pie de página | | SiteFooterColumn | Columna del pie | | SiteHeader | Shell de cabecera | | Structure | Layout con curriculum + contenido |

Utilidades (SVG y cn)

| Export | Uso | | --------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------ | | cn | Combinar clases Tailwind con clsx + tailwind-merge | | IconInfo, IconSuccess, IconWarning, IconError, IconClose, IconCheck, IconCopy, IconArrowRight, alertIcons | Iconos inline para atoms y molecules |

Ejemplo

import { Button, Card, Section, Title } from "@fravelz/ui-kit-fravelz";

export default function Page() {
  return (
    <Section title="Ejemplo">
      <Card>
        <Title headingLevel="h2">Hola</Title>
        <Button variant="primary" size="md">
          Acción
        </Button>
      </Card>
    </Section>
  );
}

Instalación

npm install @fravelz/ui-kit-fravelz

El paquete incluye tipos TypeScript (dist/index.d.ts).


Desarrollo local

git clone https://github.com/FraVelz/ui-kit-fravelz.git
cd ui-kit-fravelz
pnpm install
pnpm run build
pnpm run dev

Documentación interactiva en el playground (/es, /en, /es/docs/:id). Para desplegar en Vercel: Build pnpm run build:playground, Output playground/dist. Ver vercel.json.


Paleta

  • Acentos: cyan (#06B6D4) y purple (#A855F7)
  • Temas: estilos base claros y prefijo dark: (consumidor con darkMode: 'class')

Publicar en npm

[!NOTE] para desarrollador.

pnpm run build
npm publish --access public

Información del proyecto

| | | | --------------- | -------------------------------------------------------------------------------- | | Versión | 1.2.2 | | Autor | Fravelz | | Licencia | Apache-2.0 | | Repositorio | github.com/FraVelz/ui-kit-fravelz | | npm | @fravelz/ui-kit-fravelz | | Playground | ui-kit-fravelz.vercel.app |

Al publicar una nueva versión, actualiza version aquí y en package.json, luego npm publish.