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

@raiadrogasil/pulso-design-tokens

v0.4.0

Published

Pacote de design tokens do Design System Pulso da RD Saúde, garantindo consistência visual e eficiência no desenvolvimento de interfaces. Este pacote facilita a implementação de padrões de design coerentes e reutilizáveis, otimizando o processo de criação

Downloads

14,612

Readme

@raiadrogasil/pulso-design-tokens

Pacote de design tokens do Design System Pulso da RD Saúde, garantindo consistência visual e eficiência no desenvolvimento de interfaces. Este pacote facilita a implementação de padrões de design coerentes e reutilizáveis, otimizando o processo de criação de interfaces de usuário modernas e acessíveis.

Instalação

Para instalar a biblioteca, você pode executar um dos seguintes comandos conforme a sua preferência de gerenciador de pacotes:

# Usando NPM
npm install @raiadrogasil/pulso-design-tokens

# Usando Yarn
yarn add @raiadrogasil/pulso-design-tokens

# Usando PNPM
pnpm add @raiadrogasil/pulso-design-tokens

Observação: A versão do seu Node.js precisa ser superior ou igual a 16.

Como utilizar?

  1. Comece importando a biblioteca @raiadrogasil/pulso-design-tokens no seu arquivo:
import { RDSAUDESISTEMAS_TOKENS } from "@raiadrogasil/pulso-design-tokens"
  1. No exemplo acima, foi importada a constante RDSAUDESISTEMAS_TOKENS, que é um objeto contendo todos os tokens da marca. Alternativamente, você pode importar as constantes DROGASIL_TOKENS e RAIA_TOKENS se precisar dos tokens específicos dessas marcas.
import { DROGASIL_TOKENS, RAIA_TOKENS } from "@raiadrogasil/pulso-design-tokens"
  1. A seguir, um exemplo de utilização em um componente React:
import { RDSAUDESISTEMAS_TOKENS } from "@raiadrogasil/pulso-design-tokens"

export function Home() {
    const { colorActionFillBrandPrimaryEnabled } = RDSAUDESISTEMAS_TOKENS

    return (
        <div
            style={{
                backgroundColor: colorActionFillBrandPrimaryEnabled
            }}
        >
            <h1>Home</h1>
        </div>
    )
}
  1. Se você deseja usar variáveis CSS, também é possível. Veja o exemplo abaixo de como utilizar:
import "@raiadrogasil/pulso-design-tokens/rdsaudesistemas.css"
import "@raiadrogasil/pulso-design-tokens/drogasil.css"
import "@raiadrogasil/pulso-design-tokens/raia.css"
  1. Para conhecer nossa lista de tokens, consulte a documentação oficial.

TypeScript

Para ajudar com a tipagem dos tokens, nossa biblioteca disponibiliza um tipo TPulsoTokens para melhorar a autocompletação do seu editor de código. Exemplo de uso:

import { type TPulsoTokens } from "@raiadrogasil/pulso-design-tokens"

Este tipo permite que você obtenha sugestões inteligentes e verificação de tipos ao utilizar os tokens em seu projeto.

Licença

Para utilizar este pacote, leia a licença completa acessando o link.​