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

quasar-cosmos-design-system

v0.0.46

Published

- **Vue.js 3**: Framework progressivo de JavaScript para construção de interfaces de usuário - **Quasar Framework**: Biblioteca de componentes Vue com design responsivo e suporte multiplataforma - **TypeScript**: Superset de JavaScript que adiciona tipa

Readme

Cosmos Design System 🚀

Tecnologias utilizadas 🛠️

  • Vue.js 3: Framework progressivo de JavaScript para construção de interfaces de usuário
  • Quasar Framework: Biblioteca de componentes Vue com design responsivo e suporte multiplataforma
  • TypeScript: Superset de JavaScript que adiciona tipagem estática ao código
  • Sass: Pré-processador CSS para estilos mais dinâmicos e organizados
  • Vite: Ferramenta de build moderna e rápida para projetos front-end

Caso possua alguma dúvida, acesse o Figma para consultar os componentes do Design System 😊

Também é possível visualizar os componentes em nossa Documentação

Nosso objetivo é fornecer uma biblioteca de componentes consistente, acessível e altamente personalizável para projetos do Cosmos.

1- Instalação - Cosmos Design System 🎉

A seguir, está a maneira utilizada para instalar a biblioteca em um projeto Quasar.

1.1 Instalação via npm 📦

npm install quasar-cosmos-design-system

1.2 Crie o arquivo de boot 🚀

// src/boot/cosmos-design-system.ts
import { boot } from 'quasar/wrappers'
import CosmosDesignSystem from 'quasar-cosmos-design-system'
import 'quasar-cosmos-design-system/dist/quasar-cosmos-design-system.css'

export default boot(({ app }) => {
  app.use(CosmosDesignSystem)
})

1.3 Adicione o boot na configuração do Quasar ⚙️

// quasar.config.js
module.exports = configure(function (/* ctx */) {
  return {
    // ...
    boot: ['cosmos-design-system'],
    // ...
  }
})

1.4 Exemplo de Uso 💡

<template>
  <c-btn variant="primary">
    Botão Cosmos
  </c-btn>
  
  <c-breadcrumbs
    :items="[
      { text: 'Home', to: '/' },
      { text: 'Página atual', active: true }
    ]"
  />
</template>

2 - Guia de Desenvolvimento e Publicação 📚

2.1 - Fluxo de Desenvolvimento 💻

  1. Clonar o repositório 🤖
git clone [email protected]:adm-digital-cosmos/cosmos-design-system-lib.git
  1. Instale as dependências 🤖
cd cosmos-design-system-lib
npm install
  1. Rodar o ambiente de desenvolvimento 🚀
npm run dev
  1. Desenvolver o componente conforme as diretrizes do projeto. ✨
  2. Criar a documentação do componente (exemplos, props, eventos, uso). 📝
  3. Subir a Pull Request (PR) para revisão. 🔍
  4. Fazer o merge na branch master/main após aprovação. ✅

2.2 - Fluxo de Publicação 📦

  1. Gerar a versão da biblioteca 🛠️
npm run build:lib
  1. Logar no NPM (se necessário) 🔑
npm login
  1. Atualizar a versão do pacote (ajustar conforme o tipo de atualização: patch, minor, major) 🔢
npm version patch
  1. Publicar a nova versão 📤
npm publish
  1. Comunicar aos desenvolvedores sobre a nova versão e as mudanças realizadas. 📣