Giter Site home page Giter Site logo

vmask's Introduction

vMask

Input and text mask library for vue 3 (based on text-mask-core).

Installation

CDN

this package published as vMask module in umd.

<script src="https://unpkg.com/@termehui/vmask"></script>

NPM

npm i @termehui/vmask

Patterns

You can use regex array as mask (like text-mask-core). For easy usage you can use string patterns instead of regex array. Pattern characters are helper character for easily define pattern.

You can pass string, regex array or function as mask input. All following types are valid:

mask("12345", "###-##");
mask("12345", [/\d/, /\d/, /\d/, "-", /\d/, /\d/]);
mask("12345", (v:string) => { ... });

Predefined patterns is:

Character RegExp Description
"#" /[0-9]/ match number
"A" /[a-z]/i match any alpha character (uppercase and lowercase)
"N" /[a-z0-9]/i match any alpha character and number (uppercase and lowercase)
"X" /./ match any character
"!" - escape next character (use before pattern characters. e.g. !#)

registerPattern

Register new pattern character.

// Signature:
registerPattern(key: string, pattern: RegExp): void;

// Example:
registerPattern("$", /\d/);

removePattern

Remove registered pattern.

// Signature:
removePattern(key: string): void;
// Example:
registerPattern("$");

Functions

mask

Mask string by pattern. Mask function accept conformToMask methods config.

// Signature:
mask(input: string, mask: Mask, options: Object = null): string;

// Example:
mask("123456", "####-##"); // 1234-56

unMask

Get raw string from masked string.

// Signature:
unMask(input: string, mask: Mask): string;

// Example:
unMask("1234-56", "####-##"); // 123456

Directive

Caution: directive only work on input with v-model!

import { vMask } from "@termehui/vmask";
app.directive("mask", vMask);

Options

You can pass only mask or mask and options as vMask directive parameter. vMask directive accept createTextMaskInputElement options.

<input v-mask="'####-##'" />
<input v-mask="{ mask: '####-##', options: { guide: true} }" />

vmask's People

Contributors

mekramy avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.