New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ember-mask-input

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-mask-input

Ember input component that uses jquery-mask-plugin

2.0.0
Source
npm
Version published
Weekly downloads
568
23.21%
Maintainers
1
Weekly downloads
 
Created
Source

ember-mask-input

This README outlines the details of collaborating on this ember-mask-input addon.

Installation

cd your-project-directory
ember install ember-mask-input

Usage

Simple IBAN masked input:

{{ember-mask-input maskType='iban' value='TR625373458726249832302425' }}

Simple phone-no masked input:

{{ember-mask-input maskType='phone-no' value='2223334455' }}

Simple credit-card masked input:

{{ember-mask-input maskType='credit-card' value='2222333344445555' }}

Simple custom masked input:

{{ember-mask-input mask='0000.0000.0000.0000' value='9876987612341234' }}

Actioned masked input:

{{ember-mask-input maskType='iban' value=myIban onUpdate=(action 'valueUpdated') }}
<br/>
Updated value: {{updatedValue}}

classNames binding masked input:

{{ember-mask-input value='TR625373458726249832302426' maskType='iban' classNames='myclass' }}
<style>
.myclass {
    width: 400px;
    font-weight: bold;
    font-style: italic;
}
</style>

Keywords

ember-addon

FAQs

Package last updated on 30 Jan 2018

Did you know?

Socket

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.

Install

Related posts