Socket
Socket
Sign inDemoInstall

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


Version published
Weekly downloads
471
increased by47.19%
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

FAQs

Package last updated on 19 Apr 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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc