🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

aurelia-inputmask

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aurelia-inputmask

Aurelia plugin for https://github.com/RobinHerbots/Inputmask

2.0.1
latest
Source
npm
Version published
Weekly downloads
677
-11.39%
Maintainers
1
Weekly downloads
 
Created
Source

aurelia-inputmask

Aurelia plugin for Inputmask

Installation

npm inputmask aurelia-inputmask tslib --save

Configuration

// main.ts
export function configure(aurelia: Aurelia) {
    aurelia.use.plugin(PLATFORM.moduleName("aurelia-inputmask"), { showMaskOnHover: false /* any default options */ });
    // the rest of your configuration...
}

Usage

<input inputmask="999-999-999" value.bind="rawValue" />
<input inputmask="mask: 999-999-999; value.bind: inputmaskValue; options.bind: { greedy: false }; is-value-masked: true" value.bind="rawValue" />
<input inputmask="mask: datetime; options.bind: { inputFormat: 'dd/mm/yyyy' }; value.bind: inputmaskValue" value.bind="rawValue" />

You can either use options attribute or data-inputmask-<option> html attributes to configure the mask on an element.

Contribution

If you feel that something is missing please submit an issue or better yet a PR.

Keywords

aurelia

FAQs

Package last updated on 02 Mar 2021

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