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

@labex-hambre-ui/react

v4.0.0

Published

<div align="center"> <h1> 🤖 @labex-hambre-ui/react </h1>

Downloads

26

Readme

Esta biblioteca fornece um conjunto de componentes React para a construção de interfaces de usuário, sendo compatível com as versões mais recentes do NextJS 13 e 14 🚀, seguindo as diretrizes dos três pilares.

:rocket: Abordagem dos três pilares

  • [X] Server Components 👉 Para não usar Javascript no lado do cliente.
  • [X] Client Components 👉 Enviando somente o javascript necessário para o navegador (cliente).
  • [X] Streaming SSR 👉 Ler/escrever dados de forma parcial + Server-Side Rendering

:rocket: Componentes


  • [X] Avatar
  • [X] Box
  • [X] Button
  • [X] Checkbox
  • [X] Heading
  • [X] Loading
  • [X] MessageIcon
  • [X] MultiStep
  • [X] Radio
  • [X] Select
  • [X] Switch
  • [X] Text
  • [X] TextArea
  • [X] TextInput
  • [X] Transition

:rocket: Compatibilidade

A biblioteca @labex-hambre-ui/react é compatível com as seguintes versões de dependências:

  • [X] NextJS 12
  • [X] NextJS 13
  • [X] NextJS 14
  • [X] @radix-ui

📥 Instalações e configurações

Para instalar o @labex-hambre-ui/react, utilize o seguinte comando npm:

npm i @labex-hambre-ui/react@latest

🛠️ Para ativar o Intellisense da biblioteca na criação de um styled component, entre em tsconfig.json e altere o moduleResolution para 'Node', dessa forma.

"moduleResolution": "Node",

🛠️ Todos os arquivos styles.js que você criar, seja para uma página ou componente, deve ter a configuração use client antes de tudo, pois os estilos devem ser renderizados no lado do cliente, como neste exemplo a seguir.

'use client'
import { Text, styled } from "@labex-hambre-ui/react";

export const LinkRedirect = styled('div', {
    display: 'flex',
    flexDirection: 'row',
    alignItems: 'center',
    gap: '$2',
    cursor: 'pointer',
    color: '$hambre600',
    fontSize: '$sm',
    textDecoration: 'none',

    '&:hover': {
        color: '$hambre300',
        transition: 'all ease .36s'
    },
})

:eyes: Visite o Storybook da Biblioteca

👉 Storybook

:closed_book: License

Released in 2023 :closed_book: License Made with ♥ by :man_student: Laciene Melo :wave: #lacymelo 🚀. This project is under the MIT license. Give a ⭐️ if this project helped you!