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

input-masker

v1.0.1

Published

Plugin para aplicação de máscaras e formatação em campos de entrada.

Downloads

6

Readme

Plugin de Máscaras para Input

O Plugin de Máscaras para Input é uma biblioteca utilitária para a formatação e aplicação de máscaras em campos de entrada de formulários. Este plugin inclui métodos para a formatação de CPF, CNPJ, números de telefone, códigos postais e valores monetários. Além disso, fornece funções para o gerenciamento de cookies.

Desenvolvedor

  • Nome: Pablo Sousa
  • Versão: 1.0
  • Licença: GPL (Licença Pública Geral)

Funcionalidades

  • Formatação de CPF e CNPJ: Máscaras para os documentos brasileiros de CPF e CNPJ.
  • Máscaras para números de telefone e códigos postais: Aplicação de máscaras para formatar números de telefone e códigos postais.
  • Formatação de valores monetários: Formatação de valores monetários com separadores decimais e de milhar personalizáveis.
  • Gerenciamento de cookies: Funções para definir, obter, verificar e excluir cookies.

Instalação

Para instalar o plugin, utilize o seguinte comando npm:

npm install input-masker

Uso

Para utilizar este plugin, importe a classe InputMasker e chame os métodos estáticos conforme necessário. Certifique-se de passar o objeto de evento para o método apropriado quando formatar campos de entrada.

Importação

import { InputMasker } from 'input-masker';

Exemplos de Uso

Formatação de CPF

No Angular, você pode aplicar a máscara de CPF em um campo de entrada usando a diretiva ngModel para associar a máscara ao valor do campo.

<input type="text" [(ngModel)]="cpf" (ngModelChange)="applyCpfMask($event)" />

Componente TypeScript:

import { Component } from '@angular/core';
import { InputMasker } from 'input-masker';

@Component({
  selector: 'app-my-component',
  templateUrl: './my-component.component.html',
})
export class MyComponent {
  cpf: string;

  applyCpfMask(value: string): void {
    this.cpf = InputMasker.removeNonDigits(value);
    InputMasker.cpf({ target: { value: this.cpf } } as Event);
  }
}

Formatação de CNPJ

<input type="text" [(ngModel)]="cnpj" (ngModelChange)="applyCnpjMask($event)" />
import { Component } from '@angular/core';
import { InputMasker } from 'input-masker';

@Component({
  selector: 'app-my-component',
  templateUrl: './my-component.component.html',
})
export class MyComponent {
  cnpj: string;

  applyCnpjMask(value: string): void {
    this.cnpj = InputMasker.removeNonDigits(value);
    InputMasker.cnpj({ target: { value: this.cnpj } } as Event);
  }
}

Formatação de Valores Monetários

const formattedMoney = InputMasker.formatMoney(1234567.89);
console.log(formattedMoney); // Exemplo: R$ 1.234.567,89
<input type="text" [(ngModel)]="money" (ngModelChange)="applyMoneyMask($event)" />
import { Component } from '@angular/core';
import { InputMasker } from 'input-masker';

@Component({
  selector: 'app-my-component',
  templateUrl: './my-component.component.html',
})
export class MyComponent {
  money: string;

  applyMoneyMask(value: string): void {
    this.money = InputMasker.removeNonDigits(value);
    InputMasker.maskMoney({ target: { value: this.money } } as Event);
  }
}

Máscara de Telefone

<input type="text" [(ngModel)]="phone" (ngModelChange)="applyPhoneMask($event)" />
import { Component } from '@angular/core';
import { InputMasker } from 'input-masker';

@Component({
  selector: 'app-my-component',
  templateUrl: './my-component.component.html',
})
export class MyComponent {
  phone: string;

  applyPhoneMask(value: string): void {
    this.phone = InputMasker.removeNonDigits(value);
    InputMasker.maskPhone({ target: { value: this.phone } } as Event);
  }
}

Máscara de Código Postal

<input type="text" [(ngModel)]="postal" (ngModelChange)="applyPostalMask($event)" />
import { Component } from '@angular/core';
import { InputMasker } from 'input-masker';

@Component({
  selector: 'app-my-component',
  templateUrl: './my-component.component.html',
})
export class MyComponent {
  postal: string;

  applyPostalMask(value: string): void {
    this.postal = InputMasker.removeNonDigits(value);
    InputMasker.maskPostal({ target: { value: this.postal } } as Event);
  }
}

Funções de Gerenciamento de Cookies

InputMasker.setCookie('cookieName', 'cookieValue', 30);

Exemplo:

  • Nome do Cookie: userSession
  • Valor: abc123
  • Expiração: 30 dias

Obter Cookie

const cookieValue = InputMasker.getCookie('cookieName');
console.log(cookieValue);

Exemplo:

  • Nome do Cookie: userSession
  • Saída: abc123 (ou null se o cookie não existir)

Verificar Cookie

const cookieExists = InputMasker.checkCookie('cookieName');
console.log(cookieExists); // true ou false

Exemplo:

  • Nome do Cookie: userSession
  • Saída: true (se o cookie existir) ou false (se o cookie não existir)

Excluir Cookie

InputMasker.delCookie('cookieName');

Exemplo:

  • Nome do Cookie: userSession
  • Ação: O cookie é excluído.