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

design-system-senai-angular

v0.0.28

Published

Senai Design System components for Angular

Downloads

87

Readme

design-system-senai-angular

Uma biblioteca Angular de componentes standalone que oferece um sistema de design consistente para projetos SENAI. Inclui botões, ícones, modais e mais.


📦 Instalação

Instale a biblioteca via npm:

npm install design-system-senai-angular

Dependências

  • Angular 19+
  • Node.js 18+

⚙️ Uso

1. Importando um componente standalone

Componentes standalone devem ser importados no local de uso. Exemplo com o componente Button:

import { Component } from '@angular/core';
import { ButtonComponent } from 'design-system-senai-angular';

@Component({
  standalone: true,
  selector: 'app-my-feature',
  imports: [ButtonComponent],
  template: ` <sds-button (click)="onClick()">Clique aqui</sds-button> `,
})
export class MyFeatureComponent {
  onClick() {
    console.log('Botão clicado');
  }
}

🎨 Estilos Globais e Assets

A biblioteca fornece um tema global e uma pasta de assets dentro de styles/.

Para aplicar o tema global, adicione no angular.json do app consumidor:

// angular.json
{
  "projects": {
    "seu-app": {
      "architect": {
        "build": {
          "options": {
            "styles": ["node_modules/design-system-senai-angular/styles/theme.scss", "src/styles.scss"],
          },
        },
      },
    },
  },
}

Ou importe diretamente no styles.scss global:

@import 'design-system-senai-angular/styles/theme.scss';

Isso disponibiliza variáveis, mixins e estilos globais dos componentes em toda a aplicação.


🤝 Contribuindo

  1. Crie uma branch.
  git checkout -b nome-da-branch
  1. Instale as dependências:
  npm install
  1. Commit apos alterações:
  git commit -a -m "Mensagem de commit"
  1. Execute testes:
  npm run test
  1. Abra um pull request na branch main.

Documentação dos Componentes

Para uma visão mais detalhada dos componentes, acesse a documentação:

https://storage.googleapis.com/prd-ux-angular/index.html?path=/