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

@grupomultilaser/multi-ui

v2.2.0

Published

Multi UI - Linguagem de Interface CSS-first do Grupo Multilaser para todo o ecossistema

Readme

multiui — Contrato CSS Multi UI

Linguagem de Interface CSS-first. Framework-agnostic. OKLCH nativo.

3 camadas · 18 componentes · 255 tokens · 136 classes


Início rápido

CDN

<!-- Sistema completo -->
<link rel="stylesheet" href="https://multi-ui-cdn.web.app/latest/system.min.css" />

<!-- Apenas tokens -->
<link rel="stylesheet" href="https://multi-ui-cdn.web.app/latest/tokens.min.css" />

Com versão: https://multi-ui-cdn.web.app/v2.1.2/system.min.css

npm

npm install @grupomultilaser/multi-ui
@import '@grupomultilaser/multi-ui';           /* system.css */
@import '@grupomultilaser/multi-ui/tokens';    /* tokens.css */

Uso

Aplique classes diretamente no HTML:

<button class="btn btn-primary">Salvar</button>
<div class="card">
  <h2 class="card-title">Card</h2>
</div>

Use tokens no seu próprio CSS:

.painel {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}

Desenvolvimento local

pnpm install
pnpm run lint:css      # stylelint
pnpm run build          # gera tokens.css + dist/
pnpm run validate       # valida consistência
pnpm run generate-token-matrix  # atualiza docs/

Comandos

| Script | Descrição | |---|---| | lint:css | Lint de todos os CSS em src/ | | build | Build e minificação para dist/ | | validate | Verifica consistência entre CSS, extract e schema | | extract | Extrai metadados do CSS | | generate-token-matrix | Regenera docs/tokens-matrix.md |


Estrutura do projeto

multiui/
├── src/            # Código fonte do contrato CSS
│   ├── system.css  #   Entry point (importa tudo)
│   ├── tokens.css  #   Bundle de primitivas (gerado)
│   ├── tokens/     #   Módulos de tokens primitivos
│   │   ├── colors.css
│   │   ├── spacing.css
│   │   ├── typography.css
│   │   ├── radii.css
│   │   ├── shadows.css
│   │   ├── motion.css
│   │   └── themes/dark.css
│   ├── semantic.css     # Tokens semânticos + de componente
│   └── components/      # 18 arquivos CSS de componentes
├── scripts/        # Build, validação, release
├── dist/           # Artefatos de build (origem do CDN)
├── docs/           # Matriz de tokens gerada
├── DESIGN.md       # Documentação de decisões de design
├── firebase.json   # Config de hosting Firebase (CDN)
└── package.json

Repositórios

  • Contrato: multiui (este repositório)
  • Portal de documentação: multiui-site — docs Astro em https://multi-ui.web.app

Design

Veja DESIGN.md para princípios de design, arquitetura de tokens, linguagem visual e governança.


Licença

Propriedade exclusiva. Team Multitech.