added input masks

This commit is contained in:
root
2019-06-14 01:22:46 -04:00
parent 3d3bcff09e
commit 0eda7e9762
86 changed files with 20308 additions and 28 deletions

43
vendor/Inputmask/README_other.md vendored Normal file
View File

@@ -0,0 +1,43 @@
# other extensions
## Definitions
- A : alphabetical uppercasing
- & : alfanumeric uppercasing
- \# : hexadecimal
## Aliases
### URL
An URL mask for entering valid FTP, HTTP or HTTPS addresses.
```javascript
Inputmask("url").mask(selector);
```
### IP address
An IP address alias for entering valid IP addresses.
```javascript
Inputmask("ip").mask(selector);
```
### Email
An email mask for entering valid email addresses.
```javascript
Inputmask("email").mask(selector);
```
### MAC
An MAC mask for entering valid MAC addresses.
```javascript
Inputmask("mac").mask(selector);
```
### VIN (Vehicle identification number)
An VIN mask for entering valid VIN codes.
```javascript
Inputmask("vin").mask(selector);
```
You can find/modify/extend these aliases in the inputmask.extensions.js