All Projects → nosir → Cleave.js

nosir / Cleave.js

Licence: apache-2.0
Format input text content when you are typing...

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to Cleave.js

Vue Interactive Paycard
Credit card form with smooth and sweet micro-interactions
Stars: ✭ 5,451 (-68.12%)
Mutual labels:  credit-card, creditcard
ng-payment-card
💳 Responsive credit card component for Angular.
Stars: ✭ 27 (-99.84%)
Mutual labels:  credit-card, creditcard
Svelte Input Mask
Input masking component for Svelte with simple API and rich customization
Stars: ✭ 56 (-99.67%)
Mutual labels:  input, credit-card
input-mask
🎭 @ngneat/input-mask is an angular library that creates an input mask
Stars: ✭ 174 (-98.98%)
Mutual labels:  input, input-mask
CCView
💳 Ready made credit card creation library. 💳
Stars: ✭ 42 (-99.75%)
Mutual labels:  credit-card, creditcard
Live-cc-checker
This script will check live cc and Grab proxy and check proxy if its working or not
Stars: ✭ 37 (-99.78%)
Mutual labels:  credit-card, creditcard
gnt
🍸 GraphQL Normalized Types
Stars: ✭ 32 (-99.81%)
Mutual labels:  credit-card
Creditcard.js
A simple credit cards validation library in JavaScript
Stars: ✭ 259 (-98.49%)
Mutual labels:  credit-card
svelte-search
Accessible, customizable Svelte search component
Stars: ✭ 17 (-99.9%)
Mutual labels:  input
pyamex
Python library for accessing American Express account data
Stars: ✭ 15 (-99.91%)
Mutual labels:  credit-card
React Dropzone Uploader
React file dropzone and uploader
Stars: ✭ 276 (-98.39%)
Mutual labels:  input
Md Date Time Picker
An implementation of Material Design Picker components in vanilla CSS, JS, and HTML
Stars: ✭ 272 (-98.41%)
Mutual labels:  input
React Telephone Input
React component for entering and validating international telephone numbers
Stars: ✭ 254 (-98.51%)
Mutual labels:  input
ng-caret-aware
AngularJS directive for caret aware elements
Stars: ✭ 12 (-99.93%)
Mutual labels:  input
Short And Sweet
📟 Accessible character counter for input elements
Stars: ✭ 261 (-98.47%)
Mutual labels:  input
jquery-rsSliderLens
UI slider control that magnifies the current value
Stars: ✭ 20 (-99.88%)
Mutual labels:  input
Input Range Scss
Styling Cross-Browser Compatible Range Inputs with Sass
Stars: ✭ 272 (-98.41%)
Mutual labels:  input
vgs-collect-ios
VGS Collect iOS SDK
Stars: ✭ 17 (-99.9%)
Mutual labels:  credit-card
input-event
🎹 Read and parse input device(like mouse, keyboard, joystick and IR-Remote)'s event data.
Stars: ✭ 45 (-99.74%)
Mutual labels:  input
Emvemulator
This Android app collects Mag-Stripe data and CVC3 codes from PayPass cards and emulates that information.
Stars: ✭ 271 (-98.42%)
Mutual labels:  credit-card

Cleave.js

Travis Codacy Badge npm version npm downloads Documents

Cleave.js has a simple purpose: to help you format input text content automatically.

Features

  • Credit card number formatting
  • Phone number formatting (i18n js lib separated for each country to reduce size)
  • Date formatting
  • Numeral formatting
  • Custom delimiter, prefix and blocks pattern
  • CommonJS / AMD mode
  • ReactJS component
  • AngularJS directive (1.x)
  • ES Module

TL;DR the demo page

Why?

The idea is to provide an easy way to increase input field readability by formatting your typed data. By using this library, you won't need to write any mind-blowing regular expressions or mask patterns to format input text.

However, this isn't meant to replace any validation or mask library, you should still sanitize and validate your data in backend.

Installation

npm

npm install --save cleave.js

CDN

cleave.js is available on jsDelivr and on cdnjs.com

old school

Grab file from dist directory

Usage

Simply include

<script src="cleave.min.js"></script>
<script src="cleave-phone.{country}.js"></script>

cleave-phone.{country}.js addon is only required when phone shortcut mode is enabled. See more in documentation: phone lib addon section

Then have a text field

<input class="input-phone" type="text"/>

Now in your JavaScript

var cleave = new Cleave('.input-phone', {
    phone: true,
    phoneRegionCode: '{country}'
});

.input-element here is a unique DOM element. If you want to apply Cleave for multiple elements, you need to give different CSS selectors and apply to each of them, effectively, you might want to create individual instance by a loop, e.g. loop solution

More examples: the demo page

CommonJS

var Cleave = require('cleave.js');
require('cleave.js/dist/addons/cleave-phone.{country}');

var cleave = new Cleave(...)

AMD

require(['cleave.js/dist/cleave.min', 'cleave.js/dist/addons/cleave-phone.{country}'], function (Cleave) {
    var cleave = new Cleave(...)
});

ES Module

// Rollup, WebPack
import Cleave from 'cleave.js';
var cleave = new Cleave(...)

// Browser
import Cleave from 'node_modules/cleave.js/dist/cleave-esm.min.js';
var cleave = new Cleave(...)

TypeScript

Types are contributed by the community and are available via npm install --save-dev @types/cleave.js. Once installed, you can import Cleave like the following:

import Cleave = require('cleave.js');

Types for the React-component are also available and can be imported in the same way.

import Cleave = require('cleave.js/react');

ReactJS component usage

import React from 'react';
import ReactDOM from 'react-dom';

import Cleave from 'cleave.js/react';

Then in JSX:

class MyComponent extends React.Component {

    constructor(props, context) {
        super(props, context);
        this.onCreditCardChange = this.onCreditCardChange.bind(this);
        this.onCreditCardFocus = this.onCreditCardFocus.bind(this);
    }

    onCreditCardChange(event) {
        // formatted pretty value
        console.log(event.target.value);

        // raw value
        console.log(event.target.rawValue);
    }

    onCreditCardFocus(event) {
        // update some state
    }

    render() {
        return (
            <Cleave placeholder="Enter your credit card number"
                options={{creditCard: true}}
                onFocus={this.onCreditCardFocus}
                onChange={this.onCreditCardChange} />
        );
    }
}

As you can see, here you simply use <Cleave/> as a normal <input/> field

  • Attach HTML <input/> attributes
  • Pass in the custom options prop
  • Add ReactJS onChange event listener

Advanced usage:

Usage for Webpack, Browserify and more in documentation: ReactJS component usage

AngularJS directive usage

First include the directive module:

<script src="cleave.js/dist/cleave-angular.min.js"></script>
<script src="cleave.js/dist/addons/cleave-phone.{country}.js"></script>

And in your model:

angular.module('app', ['cleave.js'])

.controller('AppController', function($scope) {
    $scope.onCreditCardTypeChanged = function(type) {
        $scope.model.creditCardType = type;
    };

    $scope.model = {
        rawValue: ''
    };

    $scope.options = {
        creditCard: {
            creditCard: true,
            onCreditCardTypeChanged: $scope.onCreditCardTypeChanged
        }
    };
});

Then easily you can apply cleave directive to input field:

<div ng-controller="AppController">
    <input ng-model="model.rawValue" ng-whatever="..." type="text" placeholder="Enter credit card number"
        cleave="options.creditCard"/>
</div>

More usage in documentation: Angular directive usage

Use in VueJs

While this package does not have an official support for use in VueJs. This can be done in few simple steps. Please check here

jQuery fn usage

Please check here

Playground

Documentation

Run tasks

npm install

Build assets

gulp build

Run tests

gulp test

Lint

gulp eslint

Publish (build, tests & lint)

gulp publish

For contributors, please run gulp publish to ensure your PR passes tests and lint, also we have a not in the plan list you may concern.

Get in touch

References

Licence

Cleave.js is licensed under the Apache License Version 2.0

Analytics

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].