awesome-mask
Advanced tools
Comparing version 0.2.8 to 0.2.9
10
index.js
@@ -15,5 +15,13 @@ 'use strict'; | ||
var allowedKeys = [9, // 'tab' | ||
37, // 'left' | ||
38, // 'up' | ||
39, // 'right' | ||
40]; | ||
var inputHandler = function inputHandler(ev) { | ||
var mask = ev.target.dataset.mask; | ||
var isCharacter = (0, _isCharacterKeypress.isCharacterKeyPress)(ev) && ev.keyCode !== 9; | ||
var isCharacter = (0, _isCharacterKeypress.isCharacterKeyPress)(ev); | ||
var isAllowedKey = allowedKeys.indexOf(ev.keyCode) > -1; | ||
if (isAllowedKey) return; | ||
if (isCharacter && ev.target.value.length >= mask.length) { | ||
@@ -20,0 +28,0 @@ ev.preventDefault(); |
{ | ||
"name": "awesome-mask", | ||
"version": "0.2.8", | ||
"version": "0.2.9", | ||
"description": "An awesome mask directive for Vue.js using vanilla-masker from `https://github.com/BankFacil/vanilla-masker`", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4952
59