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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@jotazo/react-components-library

v0.0.19

Published

React components library

Downloads

4

Readme

React Component Library

¡Bienvenido/a a mi librería de componentes de React en desarrollo! Esta librería está diseñada para facilitar la creación y personalización de componentes en tus proyectos de React.

Índice

  1. Estado del Proyecto
  2. Instalación
  3. Componentes
  4. Contribuciones

Estado del Proyecto

Actualmente, la librería se encuentra en fase de desarrollo activo. Estamos trabajando arduamente para agregar nuevas funcionalidades, mejorar la estabilidad y realizar ajustes según las necesidades de la comunidad.

Instalación

  1. Para comenzar a utilizar esta librería en tu proyecto de React, simplemente deberemos instalar la libreria con npm o yarn:

    npm install @jotazo/react-components-library
    yarn add @jotazo/react-components-library
  2. Importa el componente necesario en tu aplicación:

    import { ThemeToggler } from "@jotazo/react-components-library";

Componentes

Componente ThemeToggler

Descripción

Este componente te permite cambiar fácilmente entre un tema claro y oscuro en tu aplicación. La apariencia del componente varía según la variante que se le pase como prop.

Configuración de Tailwind CSS

Asegúrate de configurar tu proyecto con Tailwind CSS y de que la funcionalidad de modo oscuro (darkMode) esté habilitada. Puedes encontrar información detallada sobre cómo hacerlo en la documentación oficial de Tailwind CSS.

Uso del Componente

El componente de cambio de tema se adapta a diferentes estilos según la variante que se le pase como prop. Puedes usarlo de la siguiente manera:

import React from "react";
import { ThemeToggler } from "@jotazo/react-components-library";

function App() {
  return (
    <div>
      <h1>Mi Aplicación</h1>
      {/* Variante por Defecto */}
      <ThemeToggler />
      {/* O */}
      {/* Variante Animada */}
      <ThemeToggler variant="animated" />
      {/* ...otros componentes */}
    </div>
  );
}

export default App;

Variantes


Por Defecto

El componente se muestra como un switch simple que permite cambiar entre los modos claro y oscuro con un clic.

  • Claro:

    ThemeToggler-ClassicLight
  • Oscuro:

    ThemeToggler-ClassicDark

Animada

La variante animada incluye un icono y un texto que, al hacer clic sobre ellos, cambian su apariencia para indicar el cambio de tema de manera más visual y atractiva.

  • Claro:

    ThemeToggler-AnimatedLight
  • Oscuro:

    ThemeToggler-AnimatedDark

Icono

La variante de icono es una versión minificada de la variante Animada en la que se muestra exclusivamente el ícono. Al presionar sobre él, se produce un cambio en el tema.

  • Claro:

    ThemeToggler-IconLight
  • Oscuro:

    ThemeToggler-IconDark

Contribuciones

¡Agradecemos todas las contribuciones! Si encuentras algún problema, tienes ideas para nuevas características o mejoras, no dudes en abrir un problema o enviar una solicitud de extracción.

Gracias por usar ésta librería de componentes de React. ¡Esperamos que sea de gran utilidad para tu proyecto!