
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
design-system-senai-angular
Advanced tools
Uma biblioteca Angular de **componentes standalone** que oferece um sistema de design consistente para projetos SENAI. Inclui botões, ícones, modais e mais.
Uma biblioteca Angular de componentes standalone que oferece um sistema de design consistente para projetos SENAI. Inclui botões, ícones, modais e mais.
Instale a biblioteca via npm:
npm install design-system-senai-angular
Angular 19+
Node.js 18+
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');
}
}
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.
git checkout -b nome-da-branch
npm install
git commit -a -m "Mensagem de commit"
npm run test
main
.Para uma visão mais detalhada dos componentes, acesse a documentação:
https://storage.googleapis.com/prd-ux-angular/index.html?path=/
FAQs
Uma biblioteca Angular de **componentes standalone** que oferece um sistema de design consistente para projetos SENAI. Inclui botões, ícones, modais e mais.
The npm package design-system-senai-angular receives a total of 795 weekly downloads. As such, design-system-senai-angular popularity was classified as not popular.
We found that design-system-senai-angular demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.