npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

finput

v2.0.1

Published

A vanilla-JS financial amount input control

Downloads

52

Readme

finput
Travis build status semantic-release

A vanilla-JS financial amount input control. Supports the following features:

  • auto-formatting
  • prevents invalid input whether typed, dragged or pasted
  • 'k', 'm', 'b', etc. multiplier keys

Required Browser Features

The below table lists features that finput requires in order to function properly. If you wish to use finput with a browser that does not support a required feature then using the suggested polyfill may help. Note that there may be more appropriate polyfills than the ones listed.

| Required Feature | Suggested Polyfill | |-|-| | KeyboardEvent.key | keyboardevent-key-polyfill | | Symbol | babel-polyfill

Usage

See an example finput here

Install package

npm install finput

Initialise input

To initialise the finput, simply pass the element and any options into the finput constructor. An object is returned which allows you to interact with the finput API.

Options

scale

Type: Number
Default: 2

Maximum number of decimal digits the value can take

range

Type: string
Default: ALL

The possible range of values that the value can take

Possible Values:

  • 'ALL': Number can take any value
  • 'POSITIVE': Number can only be positive
fixed

Type: Boolean
Default: true
If true, after focus is lost value is formatted to scale number of decimal places

thousands

Type: string
Default: ,
The character used to separate thousands in the formatted value. E.g. 1,000

decimal

Type: string
Default: .
The character used for the decimal point

shortcuts

Type: Object { character: multiplier }
Default: { 'k': 1000, 'm': 1000000, 'b': 1000000000 }
An object mapping of shortcuts that the user can use to quickly enter common values. E.g. with the default shortcuts, typing k will multiply the number value by 1000

onInvalidKey

Type: Function(e)
Default: () => {}
A callback function that is fired each time a invalid key is pressed. the callback is called with the KeyboardEvent object that was raised on keydown.

onFocus

Type: Function(e)
Default: undefined
A callback function that is fired each time the input is focussed. the callback is called with the Event object.

the function used needs to return an object with a start and end value, a numerical representation of the postions to select.

{ start: 0, end: 1 }

setting both values to 0 or failing to return both values will disable selecting functionality

API

The following properties are exposed on the returned finput instance:

options

Retrieves the options on the input

rawValue

Retrieves the raw value of the input (numerical)

value

Retrieves the formatted value of the input (string)

The following functions are exposed on the returned finput instance:

setOptions

Sets the options on the input

  • options New options to set. Copied before being set.

Note that setOptions supplements the current options rather than replacing.

element.setOptions({ thousands: '.' });
element.setOptions({ decimal: ',' });

The above therefore results in the following options:

{
  thousands: '.',
  decimal: ','
} 
setValue

Sets the value, fully formatted, for the input

  • val New value to set
  • notNull When true, restricts setting the value if it is null.
setRawValue

Sets and formats the value for the input

  • val New value to set
removeListeners

Removes finputs listeners from the provided element, returning it to a standard native control

Developing

Install dependencies:

  • npm install

Adding dependencies:

  • Do not commit yarn.lock
  • Do commit package-lock.json

Run dev server:

  • npm start

Building Library

  • npm run build:dev - Builds a development friendly version of the application
  • npm run build:prod - Builds a minified version of the application
  • npm run compile - Compiles typescript dependency-free version of library

Running tests

Execute the tests locally:

  • npm test

This takes care of doing the following:

  • Updating webdriver server
  • Starting background webdriver server
  • Starting background web server
  • Starting tests
  • Shutting down webdriver server, webserver and tests

The tests can be run for CI using:

  • npm run test:ci

This is the same as npm test but it does not update or start webdriver. We assume that CI/Browserstack takes care of webdriver for us.

Releasing

semantic-release is used with Travis CI to perform releases on merged PRs to master branch.

Commit messages must follow AngularJS Commit Message Conventions for semantic-release to correctly choose the next version.

If the Travis CI build for a new release is successful, it is published to npm. ./lib/finput.js is used by npm installs, and ./dist/finput.min.js is automatically served by UNPKG CDN at https://unpkg.com/finput@latest/dist/finput.min.js to directly load finput in a browser environment.