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

ngx-vetta

v1.0.1

Published

Bibloteca de componentes, diretivas e utilitários frequetemente usados nos projetos Angular desenvolvidos pela Vetta.

Downloads

2

Readme

Ngx Vetta

Ngx Vetta é uma bibloteca de componentes, diretivas e utilitários frequetemente usados nos projetos Angular desenvolvidos pela Vetta.

Como instalar

npm install --save ngx-vetta

Guia rápido

Importe a(s) funcionalidade(s) desejada(s) no seu módulo.

import { NgModule } from '@angular/core';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import {
  NgxVettaModule,
  VetValidationLabelModule,
  VetOnlyNumberModule,
  VetDecimalNumberModule,
  VetMaxLengthModule,
} from 'ngx-vetta';

@NgModule({
  (...)
  imports: [
    FormsModule, ReactiveFormsModule,
    NgxVettaModule,
    VetValidationLabelModule,
    VetOnlyNumberModule,
    VetDecimalNumberModule,
    VetMaxLengthModule,
    VetUppercaseModule,
  ],
  (...)
})

Diretivas de atributos

Diretiva vetValidationLabel

A diretiva vetValidationLabel exibe uma mensagem de erro quando o estado controle é inválido. A mensagem depende do tipo de validação que foi aplicado na definição do controle.

import { Component } from '@angular/core';
import { FormControl, FormGroup, Validators } from '@angular/forms';

export class MyComponent {
  form: FormGroup;

  constructor() {}

  ngOnInit(): void {
    this.form = new FormGroup({
      myControl: new FormControl('', [Validators.required])
    });
  }
}
<input type="text" formControlName="myControl" vetValidationLabel />

noWhiteSpace (boolean)

Você pode especificar se a diretiva deve validar casos onde o valor do campo não possa ser uma string vazia passando a atributo noWhiteSpace como true.

<input type="text" formControlName="myControl" vetValidationLabel [noWhiteSpace]="true" />

Diretiva vetDecimalNumber

A diretiva vetDecimalNumber permite a entrada de apenas valores númericos decimais (positivos e negativos).

<input type="text" formControlName="myControl" vetDecimalNumber />

decimalNumberOptions (object)

A diretiva aceita a passagem de um objeto de configuração do tipo DecimalNumberOptions.

Opções de configuração

| Opção | Tipo | Descrição | | ------------------ | --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | | maxIntegers | number | Define o quantidade máxima de números permitidos para a parte inteira. O padrão é ilimitado, caso não exista limitador de caracteres aplicado ao campo. | | maxDecimals | number | Define o quantidade máxima de números permitidos para a parte decimal. O padrão é duas casas. | | decimalSeparator | string | Define o separador decimal, podendo ser ponto (.) ou vírgula (,). O padrão é ponto. | | allowNegative | boolean | Se true, permite a inserção de números negativos. O padrão é false. | | enableMask | boolean | Se true, aplica máscara automaticamente no momento de perda de foco do campo (blur event). O padrão é false. |

Exemplo de uso

import { Component } from '@angular/core';
import { FormControl, FormGroup, Validators } from '@angular/forms';
import { DecimalNumberOptions } from 'ngx-vetta';

export class MyComponent {
  form: FormGroup;

  options: DecimalNumberOptions = {
    maxIntegers: 2,
    maxDecimals: 2,
    decimalSeparator: ',',
    allowNegative: true,
    enableMask: true
  };

  constructor() {}

  ngOnInit(): void {
    this.form = new FormGroup({
      myControl: new FormControl('', [Validators.required])
    });
  }
}
<input
  type="text"
  formControlName="myControl"
  vetDecimalNumber
  decimalNumberOptions]="options" />

Diretiva vetOnlyNumber

A diretiva vetOnlyNumber permite a entrada de apenas valores númericos inteiros (positivos e negativos).

<input type="text" formControlName="myControl" vetOnlyNumber />

allowNegative (boolean)

Para permitir o uso de números negativos, defina o atributo allowNegative como true.

<input type="text" formControlName="myControl" vetOnlyNumber [allowNegative]="true" />

Diretiva vetMaxLength

A diretiva vetMaxLength define a quantidade máxima de caracteres permitidos para o controle especificado.

<input type="text" formControlName="myControl" vetMaxLength="10" />

Diretiva vetUppercase

A diretiva vetUppercase converte qualquer letra do alfabeto, acentuados ou não, para sua representação em maiúsculas.

<input type="text" formControlName="myControl" vetUppercase />