1.0.2 • Published 5 years ago

coffeekraken-s-input-mask-component v1.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

Coffeekraken s-input-mask-component

Provide a simple efficient webcomponent wrapper around the amazing imaskjs library

View demo

Table of content

  1. Demo
  2. Install
  3. Get Started
  4. Javascript API
  5. Register new masks
  6. Default masks
  7. Sugar Web Components Documentation
  8. Browsers support
  9. Code linting
  10. Contribute
  11. Who are Coffeekraken?
  12. Licence

Install

npm install coffeekraken-s-input-mask-component --save

Get Started

First, import the component into your javascript file like so:

import SInputMaskComponent from 'coffeekraken-s-input-mask-component'

Then simply use it inside your html like so:

<input type="text" name="cool-input" required>
<s-input-mask for="cool-input" mask="(0) 000 000 000"></s-input-mask>

Register new masks

To register a new named mask, here's how to do it:

import SInputMaskComponent from 'coffeekraken-s-input-mask-component'
SInputMaskComponent.registerMask('my-cool-mask', {
  // some imaskjs options here...
  mask: '(0) 000 000 000',
  lazy: false
  // etc...
})

See imaskjs documentation

Then simply use it like so:

<input type="text" name="cool-input" required />
<s-input-mask for="cool-input" mask="my-cool-mask"></s-input-mask>

Default available masks

Their's some default masks available. Here's the list:

  • date:yyyy.mm.dd
  • date:yyyy-mm-dd
  • date:yyyy/mm/dd
  • date:dd.mm.yyyy
  • date:dd-mm-yyyy
  • date:dd/mm/yyyy
  • date:mm.dd.yyyy
  • date:mm-dd-yyyy
  • date:mm/dd/yyyy
  • credit-card:number
  • credit-card:code
  • credit-card:date

Browsers support

IE / EdgeFirefoxChromeSafari
IE11+last 2 versionslast 2 versionslast 2 versions

As browsers are automatically updated, we will keep as reference the last two versions of each but this component can work on older ones as well.

The webcomponent API (custom elements, shadowDOM, etc...) is not supported in some older browsers like IE10, etc... In order to make them work, you will need to integrate the corresponding polyfill.

Code linting

This package uses some code linting rules. Here's the list:

  1. StandardJS for javascript files
  2. Stylelint with stylelint-config-standard for scss files

Your commits will not been accepted if the code style is not respected!

Contribute

This is an open source project and will ever be! You are more that welcomed to contribute to his development and make it more awesome every day. To do so, you have several possibilities:

  1. Share the love ❤️
  2. Declare issues
  3. Fix issues
  4. Add features
  5. Build web component

Who are Coffeekraken

We try to be some cool guys that build some cool tools to make our (and yours hopefully) every day life better.

More on who we are

License

The code is available under the MIT license. This mean that you can use, modify, or do whatever you want with it. This mean also that it is shipped to you for free, so don't be a hater and if you find some issues, etc... feel free to contribute instead of sharing your frustrations on social networks like an asshole...